From 425fc02fec3b822e1ca13511f374ea0a91dead6a Mon Sep 17 00:00:00 2001 From: binarymaster Date: Fri, 17 Jul 2015 02:39:09 +0300 Subject: [PATCH] New batch scripts --- res/install.bat | 14 ++++++++++++++ res/uninstall.bat | 10 ++++++++++ 2 files changed, 24 insertions(+) create mode 100644 res/install.bat create mode 100644 res/uninstall.bat diff --git a/res/install.bat b/res/install.bat new file mode 100644 index 0000000..9731cfd --- /dev/null +++ b/res/install.bat @@ -0,0 +1,14 @@ +@echo off +if not exist "%~dp0RDPWInst.exe" goto :error +"%~dp0RDPWInst" -i +echo ______________________________________________________________ +echo. +echo You can check RDP functionality with RDPCheck program. +echo Also you can configure advanced settings with RDPConf program. +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 diff --git a/res/uninstall.bat b/res/uninstall.bat new file mode 100644 index 0000000..1c72289 --- /dev/null +++ b/res/uninstall.bat @@ -0,0 +1,10 @@ +@echo off +if not exist "%~dp0RDPWInst.exe" goto :error +"%~dp0RDPWInst" -u +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