How to do it...

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