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()
}
}
}