- Set the SGBRCP1 printer for Branch Office Direct Printing:
$Printer = SGBRCP1
$PServer = 'PSRV'
Set-Printer -Name $Printer -ComputerName $PServer `
-RenderingMode BranchOffice
- Get the printing mode:
$Key = 'HKLM:\SYSTEM\CurrentControlSet\Control\ +
Print\Printers\SGBRCP1\Printer\DriverData'
$BROPrint = (Get-ItemProperty
$Key).EnableBranchOfficePrinting
- Now display the value of the RenderingMode:
Get-Printer $Printer -Full |
Format-Table Name, RenderingMode
- Now reset to default:
Set-Printer -Name $printer 1 `
-ComputerName $PServer `
-RenderingMode SSR
- Redisplay the RenderingMode property for the remote printer:
Get-Printer $Printer -Full |
Format-Table -Property Name, RenderingMode