I created a batch script file for uninstall and install application.
See the batch script below:
Code: Select all
@ECHO OFF
Rem TITLE Uninstalling BRAVA READER. . .
ECHO Uninstalling BRAVA READER! previous version(s)...
wmic /node:"Worktation2" product where name="Brava! Reader 7.2" call uninstall
@echo off
ECHO Now...Installing a new version of BRAVA READER! ... Please wait!...
wmic /node:"\\MAT-Silver-l2m\FILES$ E:\internet\Brava Reader 7.2\BravaReader.exe" product where name="BravaReader.exe" call install
ECHO BRAVA READER! version 7.2 has been installed in your machine.
goto END
:END
pause
exit
the script line for the uninstall the application is working well, but the line to install the new version of the Brava Reader is not working...
The process of installation of Brava Reader is located another machine where the application is stored.
What I am missing in the line of call install.
Your help is much appreciated. Thanks.