;安装系统补丁
Local $search = FileFindFirstFile(@HomeDrive & "\install\hotfix\KB*.exe")
While 1
Local $file = FileFindNextFile($search)
If @error Then ExitLoop
RunWait(@HomeDrive & "\install\hotfix\$file /norestart /q /n /o")
WEnd
FileClose($search); 关闭搜索句柄
主要是搜索下hotfix的系统补丁并且自动安装,MsgBox(4096,"搜索结果", $file )可以正确显示出要安装的文件,但是RunWait(@HomeDrive & "\install\hotfix\$file /norestart /q /n /o")却没办法安装文件,请帮我看下代码
[ 本帖最后由 ronin 于 2008-5-31 15:15 编辑 ] |