Skip to main content

Worklet: Install Printers

  • September 11, 2020
  • 2 replies
  • 368 views

Here’s a worklet that we use to install printers via Automox:

Eval Code:

$testFile = "$env:windir\InstalledPrinters.txt"
$testFileValue = (Test-Path $testFile)

if ($testFileValue -eq $true ) {
   Exit 0
} else { Exit 1 }

Remediation Code:

$testServer = "printserver"
$testServerValue = (Test-connection -Computername $testServer -BufferSize 16 -Count 1 -Quiet)

if ($testServerValue -eq $false ) {
   Exit 0
   Write-Host "printserver not reachable!"
   }
   else {
			Add-Printer -ConnectionName "\\printserver\east-gray"
			Add-Printer -ConnectionName "\\printserver\west-color"
			New-Item -ItemType file "$env:windir\InstalledPrinters.txt"
         }

2 replies

  • 0 replies
  • September 11, 2020

I’m getting flashbacks from managing printers at a previous company. Never again…

Your Worklet is so concise and simple. Love it


Nic-Automox
  • Former Automox Employee
  • 832 replies
  • September 11, 2020

Thanks @EIT - I moved this into its own topic so it won’t get lost, and check your private messages for your link to redeem your mug.


Reply


Cookie policy

We use cookies to enhance and personalize your experience. If you accept you agree to our full cookie policy. Learn more about our cookies.

 
Cookie settings