您好我正在使用厨师inspec的注册表密钥资源。 对于父文件夹代码工作正常,但对于儿童文件夹它没有。 代码如下:
describe registry_key('HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SQL Server') do
it { should exist } #working
end
describe registry_key('HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SQL Server\SQLNCLI11\CurrentVersion') do
it { should exist } #not working
end
describe registry_key('HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SQL Server\SqlCmdLnUtils\CurrentVersion') do
it { should exist } # not working
end