Some checks failed
Build, Push, Publish / Build & Release (push) Failing after 2s
21 lines
720 B
Batchfile
21 lines
720 B
Batchfile
@echo off
|
|
|
|
:: Prompt to Run as administrator
|
|
Set "Variable=0" & if exist "%temp%\getadmin.vbs" del "%temp%\getadmin.vbs"
|
|
fsutil dirty query %systemdrive% >nul 2>&1 && goto :(Privileges_got)
|
|
If "%1"=="%Variable%" (echo. &echo. Please right-click on the file and select &echo. "Run as administrator". &echo. Press any key to exit. &pause>nul 2>&1& exit)
|
|
cmd /u /c echo Set UAC = CreateObject^("Shell.Application"^) : UAC.ShellExecute "%~0", "%Variable%", "", "runas", 1 > "%temp%\getadmin.vbs"&cscript //nologo "%temp%\getadmin.vbs" & exit
|
|
:(Privileges_got)
|
|
|
|
net stop spooler
|
|
DEL /F /S /Q %systemroot%\System32\spool\PRINTERS\*
|
|
net start spooler
|
|
|
|
:endSuccess
|
|
echo Printer Spool tasks completed
|
|
echo.
|
|
|
|
:end
|
|
pause
|
|
exit
|