Windows学习总结(22)——Windows基线检查加固脚本
Posted 科技D人生
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Windows学习总结(22)——Windows基线检查加固脚本相关的知识,希望对你有一定的参考价值。
Windows的批处理脚本(一键加固:根据自身要求修改)
echo 现在开始Windows安全加固,确认请按任意键
pause
echo [version] >account.inf REM帐户口令授权配置模块
echo signature="$CHICAGO$" >>account.inf
echo [System Access] >>account.inf
echo MinimumPasswordLength=6 >>account.inf REM 修改帐户密码最小长度为6
echo PasswordComplexity=1 >>account.inf REM 开启帐户密码复杂性要求
echo MaximumPasswordAge=90 >>account.inf REM 修改帐户密码最长留存期为90天
echo PasswordHistorySize=5 >>account.inf REM 修改强制密码历史为5次
echo EnableGuestAccount=0 >>account.inf REM 禁用Guest帐户
echo LockoutBadCount=6 >>account.inf REM 设定帐户锁定阀值为6次
secedit /configure /db account.sdb /cfg account.inf /log account.log
del account.*
echo [version] >rightscfg.inf
REM 授权配置
echo signature="$CHICAGO$" >>rightscfg.inf
echo [Privilege Rights] >>rightscfg.inf
echo seremoteshutdownprivilege=Administrators >&
以上是关于Windows学习总结(22)——Windows基线检查加固脚本的主要内容,如果未能解决你的问题,请参考以下文章
[人工智能-深度学习-73]:环境 - 在windows下创建git环境
[人工智能-深度学习-42]:开发环境 - Windows如何查看GPU的使用情况
[人工智能-深度学习-75]:环境 - Windows配置GithubGitee共存的Git环境