w10install/tools/remove-printer.cmd
2023-02-02 10:01:43 +01:00

22 lines
418 B
Batchfile

@echo off
IF %1.==. GOTO USAGE
set PRINTERNAME=%1%
rem remove the printer ...
powershell -Command ^
"$checkPrinterExists = Get-Printer -Name '%PRINTERNAME%' -ErrorAction SilentlyContinue ; ^
if ($checkPrinterExists) { ^
Remove-Printer -Name '%PRINTERNAME%' -Verbose ^
} else { ^
Write-Host 'Printer %PRINTERNAME% already removed' ^
}"
GOTO END
:USAGE
echo "usage: %0 <PRINTERNAME>"
:END