Initial commit: PrintCleaner tool with GUI, Admin check, and custom icon
This commit is contained in:
20
Launch_PrintCleaner.bat
Normal file
20
Launch_PrintCleaner.bat
Normal file
@@ -0,0 +1,20 @@
|
||||
@echo off
|
||||
:: Check for permissions
|
||||
>nul 2>&1 "%SYSTEMROOT%\system32\cacls.exe" "%SYSTEMROOT%\system32\config\system"
|
||||
if '%errorlevel%' NEQ '0' (
|
||||
echo Requesting administrative privileges...
|
||||
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 "%~dp0"
|
||||
|
||||
:: Launch the PowerShell script
|
||||
powershell.exe -NoProfile -ExecutionPolicy Bypass -File ".\PrintCleaner.ps1"
|
||||
Reference in New Issue
Block a user