I'm trying deploy a local port printer which points to c:\scanbookdata\epl.txt using Group Policy.
Below is screen shot of what I'm trying to do :
I'm lost as how to go about this. Any help would be greatly appreciated.
I'm trying deploy a local port printer which points to c:\scanbookdata\epl.txt using Group Policy.
Below is screen shot of what I'm trying to do :
I'm lost as how to go about this. Any help would be greatly appreciated.
You can create a batch file to create the printer port and use a login script GPO on the computer settings to handle this. The below is VERY rudimentary (meaning it works fine, but would run at every login).
@echo off
reg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Ports" /v "C:\scanbookdata\epl.txt" /t reg_sz
net stop spooler
net start spooler
If you want to create an actual printer that prints to it we would need to know what kind of printer/driver and OS really.
I would look at using something like the prnmngr.vbs script http://technet.microsoft.com/en-us/library/cc725868.aspx if necessary or a GPP to deploy the printer http://technet.microsoft.com/en-us/library/cc754824.aspx