added printer removals
This commit is contained in:
parent
6cf1a06b3c
commit
4a54a815aa
@ -38,5 +38,11 @@ if EXIST ..\scripts\set-filetypes.cmd (
|
|||||||
call ..\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
|
pause
|
||||||
|
|
||||||
|
@ -238,6 +238,11 @@ echo removing read-only flag on tools folder ...
|
|||||||
attrib /S /D -R %TOOLS%\*
|
attrib /S /D -R %TOOLS%\*
|
||||||
echo.
|
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) ...
|
rem enable updates again (doing it as late as possible) ...
|
||||||
if %windows_updates% == 1 (
|
if %windows_updates% == 1 (
|
||||||
call enable-updates.cmd
|
call enable-updates.cmd
|
||||||
|
21
tools/remove-printer.cmd
Normal file
21
tools/remove-printer.cmd
Normal 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
|
Loading…
Reference in New Issue
Block a user