Link to home
Start Free TrialLog in
Avatar of JBHaire2004
JBHaire2004Flag for United States of America

asked on

Use group policy (or SMS/SCCM) to push local virtual printer settings..

I am trying to determine if and how I can push local virtual printer settings via group policy (or SMS/SCCM).  

To elaborate, we have just upgraded our imaging solution to the latest release.  This required an uninstall and re-install of the local client side application.  Part of the client side app is a proprietary virtual printer (like Adobe Acrobat or Tiff Image Printer).  The printer is defaulting to black and white images where we need the images generated to be in color.  Currently we have to manually go to each work staion, navigate to "Printers and Faxes", find the printer, then modify the printer properties.

We would like to force the virtual printer preferences on all of our user's workstations to default to color printing through a remote mechanism such as group policy (or SMS/SCCM).  We have tried to read up on how to go about it but the only articles we have found address using group policy to push network printers not locally attached printer.  Has anyone ever attempted to push similar local printer settings?
Avatar of Adam Leinss
Adam Leinss
Flag of United States of America image

This would most likely be registry settings that you would push out via SCCM.
You can try starting Procmon (http://technet.microsoft.com/en-us/sysinternals/bb896645.aspx), then select the settings and then stop the trace.  You can then try exporting these settings out to a REG file from REGEDIT's export command and then you could fire the settings with:
regedit /s printersettings.vbs
or you can VBSCRIPT like this (this example sets the background wallpaper in the user's profile):
Set WshShell = CreateObject( "WScript.Shell" )
WshShell.RegWrite "HKCU\Control Panel\Desktop\Wallpaper", "C:\windows\Standard Wallpaper.BMP", "REG_SZ"

Set WshShell = nothing

 
If you want, you can post the Procmon log here.
Avatar of JBHaire2004

ASKER

Thanks aleinss.  I was really hoping initially that there was a way to control local printer settings with group policy but thought it unlikely and begun looking to SCCM as my best bet.  I'll take a look at the ProcMon dump and see what I can find.
ASKER CERTIFIED SOLUTION
Avatar of Adam Leinss
Adam Leinss
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial