mirror of
https://github.com/inspec/inspec
synced 2024-11-23 21:23:29 +00:00
8 lines
166 B
Ruby
8 lines
166 B
Ruby
# encoding: utf-8
|
|
|
|
return unless os.windows?
|
|
|
|
describe security_policy do
|
|
its('EnableAdminAccount') { should eq 1 }
|
|
its('EnableGuestAccount') { should eq 0 }
|
|
end
|