ronin 发表于 2008-5-31 14:03:13

安装搜索系统补丁问题

;安装系统补丁
    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 编辑 ]

ronin 发表于 2008-5-31 15:14:52

RunWait(@HomeDrive & "installhotfix" & $File & " /norestart /q /n /o")

解决问题,刚学autoit一天
页: [1]
查看完整版本: 安装搜索系统补丁问题