I am trying to write a .bat for the first time.
I am trying to install .msi using script, currently we are installing manually by double clicking on it.
Path from: d:/installed sw/$folder/.msi
Path to: D:/program files/app/
$folder
means, it is different every time, as we are getting new msi to install which are provided in folder created by current date.
Here is the script I am trying:
@echo off
Title HOST: Installing Updates on %computername%
echo %computername%
set server=\SERVERNAME or PATHmsifolder
:select
cls
echo Select one of the Following MSI Install Folders for installation task.
echo.
dir %server% /A:D /B
SET /P MSI=Please enter the MSI Folder to install:
SET source=%server%\%MSI%
echo Selected Installation %MSI%
echo.
echo.
:verify
ECHO Is This Correct?
echo.
echo.
ECHO 0: ABORT INSTALL
ECHO 1: YES
ECHO 2: NO,RE-SELECT
SET /p choice=Select YES, NO or ABORT? [0,1,2]:
if /i [%choice%]==[0] endlocal&goto end
if [%choice%]==[] goto BCurrentlocal
if [%choice%]==[1] goto yes
if [%choice%]==[2] goto no
endlocal
:no
goto select
:yes
set FILENAME=%MSI%
call %source%\%FILENAME%.msi
echo beginning %MSI% installation
pause
echo Exiting Install Script....
PING -n 4 127.0.0.1 >nul
exit
In line with set server
I am adding the path to.
SET /P MSI
is for path from.
However, it is not working.
Can anyone guide me what mistake I am doing?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…