很多在我这里下载我的2003补丁集的用户来问,编写批处理文件自动更新Windows Update补丁程序,在此就写这个解释吧。。
使用Windows操作系统的用户来说,定时升级WindowsUpdate安全更新补丁是保证系统正常运行,避免病毒蠕虫木马等恶意软件攻击的必要手段。
我们除了使用”控制面板”的自动更新功能以来,也可以手工运行从可信任网站上下的Windows Update更新包,如果一个一个执行肯定很麻烦的啦,所以我就用了以下的方法,在这里,,我写出来给大家看看:
新建一个文本文件,保存为setup.cmd,
文件内容为:
echo 共51个补丁 正在安装第 1 个 windowsServer2003-KB898715-x86-chs.exe
.hotfixwindowsServer2003-KB898715-x86-chs.exe /quiet /passive /nobackup /norestart
echo 共51个补丁 正在安装第 2 个 windowsServer2003-KB896428-x86-chs.exe
.hotfixwindowsServer2003-KB896428-x86-chs.exe /quiet /passive /nobackup /norestart
echo 共51个补丁 正在安装第 3 个 windowsServer2003-KB929969-x86-chs.exe
.hotfixwindowsServer2003-KB929969-x86-chs.exe /quiet /passive /nobackup /norestart
echo 共51个补丁 正在安装第 4 个 windowsServer2003-KB896358-x86-chs.exe
.hotfixwindowsServer2003-KB896358-x86-chs.exe /quiet /passive /nobackup /norestart
echo 共51个补丁 正在安装第 5 个 windowsServer2003-KB901214-x86-chs.exe
.hotfixwindowsServer2003-KB901214-x86-chs.exe /quiet /passive /nobackup /norestart
echo 共51个补丁 正在安装第 6 个 windowsServer2003-KB893756-x86-chs.exe
.hotfixwindowsServer2003-KB893756-x86-chs.exe /quiet /passive /nobackup /norestart
其中hotfix为存放Windows Update安全更新补丁的目录,
*.exe为Windows Update安全更新补丁包,
echo 共51个补丁 正在安装第 * 个 windowsServer2003-KB893756-x86-chs.exe 提示下一个安装的文件是哪一个,第几个..
/quiet 参数表示自动(非交互式安装),
/passive 表示被动方式,
/nobackup 表示安全更新时不做备份,/
/norestart 表示升级后不重启操作系统。
编写完成后,运行setup.cmd文件就可以了
(注意喔!hotfix文件夹下有对应Windows Update安全更新补丁包exe文件)
相关文章: 关于WINDOWS 2008 补丁包的批处理文件制作说明。
- 转载请注明来源:关于如何编写批处理文件自动更新Windows Update补丁程序
- 本文永久链接地址:https://3v.org.cn/?p=103
Warning: Use of undefined constant PRC - assumed 'PRC' (this will throw an Error in a future version of PHP) in /www/wwwroot/3v.org.cn/wp-content/themes/Play-LM/comments.php on line 20