The script:
The user query mentions ms (likely referring to MSI or Microsoft Installer) and hot . In the context of software deployment, these have specific implications:
To achieve true "AR" (Auto-Recovery) across 100+ machines:
If your installer is named SD150726.exe , the command line would look like this:
REM Install Microsoft hotfix first echo Installing KB1234567... wusa.exe Windows6.1-KB1234567-x64.msu /quiet /norestart if %errorlevel% neq 0 echo Hotfix may already be installed.
Local $sCmd = '"' & $sInstallerPath & '" /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' Local $iPid = Run($sCmd, @ScriptDir, @SW_HIDE) If $iPid = 0 Then MsgBox($MB_ICONERROR, "Error", "Failed to start installer.") Exit 1 EndIf
The script:
The user query mentions ms (likely referring to MSI or Microsoft Installer) and hot . In the context of software deployment, these have specific implications:
To achieve true "AR" (Auto-Recovery) across 100+ machines:
If your installer is named SD150726.exe , the command line would look like this:
REM Install Microsoft hotfix first echo Installing KB1234567... wusa.exe Windows6.1-KB1234567-x64.msu /quiet /norestart if %errorlevel% neq 0 echo Hotfix may already be installed.
Local $sCmd = '"' & $sInstallerPath & '" /VERYSILENT /SUPPRESSMSGBOXES /NORESTART' Local $iPid = Run($sCmd, @ScriptDir, @SW_HIDE) If $iPid = 0 Then MsgBox($MB_ICONERROR, "Error", "Failed to start installer.") Exit 1 EndIf