essential-apps / Internet /WARP /Stop_WARP.bat
codekingpro's picture
Upload folder using huggingface_hub
3b7843f verified
Raw
History Blame Contribute Delete
694 Bytes
@echo off
:: Request Admin Rights
>nul 2>&1 "%SYSTEMROOT%\system32\cacls.exe" "%SYSTEMROOT%\system32\config\system"
if '%errorlevel%' NEQ '0' ( goto UACPrompt ) else ( goto gotAdmin )
:UACPrompt
echo Set UAC = CreateObject^("Shell.Application"^) > "%temp%\getadmin.vbs"
echo UAC.ShellExecute "%~s0", "", "", "runas", 1 >> "%temp%\getadmin.vbs"
"%temp%\getadmin.vbs"
exit /B
:gotAdmin
if exist "%temp%\getadmin.vbs" ( del "%temp%\getadmin.vbs" )
pushd "%CD%"
CD /D "%~dp0"
echo Stopping WARP... ??
net stop CloudflareWARP >nul 2>&1
sc stop CloudflareWARP >nul 2>&1
taskkill /F /IM "Cloudflare WARP.exe" /T >nul 2>&1
taskkill /F /IM "warp-svc.exe" /T >nul 2>&1
exit