码迷,mamicode.com
首页 > 其他好文 > 详细

设置本地安全策略

时间:2014-10-16 20:37:33      阅读:182      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   ar   for   sp   div   on   log   

通过secedit工具设置本地安全策略

$secfile = "C:\Config08\secpol.cfg"
#导出当前安全策略模板
secedit /export /cfg $secfile
#禁用密码复杂度,设置密码永不过期
((gc $secfile) -replace "PasswordComplexity = 1", "PasswordComplexity = 0" ) -replace "MaximumPasswordAge = 42","MaximumPasswordAge = -1"| Out-File $secfile -force
#导入新的安全策略模板(指定要应用到系统的安全性范围为SECURITYPOLICY)
secedit /configure /db secedit.sdb /cfg $secfile /areas SECURITYPOLICY /quiet

 

设置本地安全策略

标签:style   blog   color   ar   for   sp   div   on   log   

原文地址:http://www.cnblogs.com/dreamer-fish/p/4029392.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!