added printer removals

This commit is contained in:
Michael H.G. Schmidt 2023-02-02 10:01:43 +01:00
parent 6cf1a06b3c
commit 4a54a815aa
3 changed files with 32 additions and 0 deletions

View File

@ -38,5 +38,11 @@ if EXIST ..\scripts\set-filetypes.cmd (
call ..\scripts\set-filetypes.cmd
)
rem remove the FAX printer ...
call remove-printer.cmd "PDF24 Fax"
rem ... and remove the Microsoft fax printer ...
call remove-printer.cmd "Microsoft Print to PDF"
pause

View File

@ -238,6 +238,11 @@ echo removing read-only flag on tools folder ...
attrib /S /D -R %TOOLS%\*
echo.
echo removing unwanted printers ...
call remove-printer.cmd "Microsoft XPS Document Writer"
call remove-printer.cmd "Fax"
echo.
rem enable updates again (doing it as late as possible) ...
if %windows_updates% == 1 (
call enable-updates.cmd

21
tools/remove-printer.cmd Normal file
View File

@ -0,0 +1,21 @@
@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