Hi all,
I am going to use this batch file to deploy one software to users through logon script:
@echo off
if exist %appdata%\myflag.txt goto :EOF
\\server\share\setup.exe
if errorlevel 0 echo.>%appdata%\myflag.txt
----------------
since we have users with 64 bit OS and the installation path for OS 64 is\\server\share1\setup.exe, how can I specify the installation path for OS 64bit to use \\server\share1\setup.exe?
Thank you very much.