Quantcast
Channel: PowerShell.com – PowerShell Scripts, Tips, Forums, and Resources
Viewing all articles
Browse latest Browse all 8583

Bi-Directional Communication option of the Xerox Printers

$
0
0

How can i disable the di-directional communication option of the Multifunctional Xerox Printers.

I wrote this Powershell script, but it doesn't work for Xerox Printers

#_

$PrintServers = @("PRT01", "RT02")

Foreach ($PrintServer in $PrintServers)
{
      $Printers = Get-WMIObject -Class Win32_Printer -Computername $PrintServer
      Foreach ($Printer in $Printers)
       {

          IF ($Printer.EnableBIDI)

             {

              Write-Host "Disable Bidirectional Support Option for the Printer: " $Printer.Name -F Yellow

             [bool]$Printer.EnableBIDI = $False

            $Printer.Put()

             }

       }

}

 


Viewing all articles
Browse latest Browse all 8583

Trending Articles