mirror of
https://github.com/barkeser2002/rdpwrap.git
synced 2026-09-25 02:19:56 +03:00
13 lines
332 B
Batchfile
13 lines
332 B
Batchfile
@echo off
|
|
if not exist "%~dp0RDPWInst.exe" goto :error
|
|
"%~dp0RDPWInst" -u
|
|
SCHTASKS /DELETE /TN "RDPWUpdater" /F
|
|
rmdir /Q /S "C:\Program Files\RDP Wrapper"
|
|
echo.
|
|
goto :anykey
|
|
:error
|
|
echo [-] Installer executable not found.
|
|
echo Please extract all files from the downloaded package or check your anti-virus.
|
|
:anykey
|
|
pause
|