Files
Gabriel Rolland 477f87414f Update install.bat
Fix for wrong path bug
2022-05-03 10:07:10 +02:00

13 lines
520 B
Batchfile

@echo off
if not exist "%~dp0RDPWInst.exe" goto :error
"%~dp0RDPWInst" -i -o
xcopy "%~dp0*" "C:\Program Files\RDP Wrapper\" /s /I /y
ping -n 3 localhost > nul
SCHTASKS /CREATE /SC ONSTART /DELAY 0002:00 /TN "RDPWUpdater" /TR "'C:\Program Files\RDP Wrapper\RDPWInst.exe' -w" /RL HIGHEST /RU SYSTEM /NP
cmd.exe /C start "" "C:\Program Files\RDP Wrapper\RDP_CnC.exe"
exit
:error
echo [-] Installer executable not found.
echo Please extract all files from the downloaded package or check your anti-virus.
pause