Here is the simple batch file which I used for installing softwares remotely
@ECHO OFF
net use u: \\server\install$\package.msi
REM 0=none, 1=one of the groups
rem if ERRORLEVEL 1 goto apac%errorlevel%
rem If NOT ERRORLEVEL 1 goto END
rem :apac
IF EXIST “C:\Program Files\Package\package.msi ” GOTO END
“\\server\install$\package.msi /S /v /qn”
:END
net use u: /DELETE
Comments
Post a Comment