Hi again!
Glad you found a solution that worked out for you, and thanks for the link, I will have a read through that document.
Best Regards
Kimzi
--------------------------------------------
Please remember to select "Accept as Solution" for posts that helped you solve the issue.
Kimzi,
I did not have any luck with your method, but we were able to get it to work by another method. Following the steps in this pdf, we were able to disable the Bi-Directional Job Notification via a xml file, config file and registry update. We are now able to add the registry update as part of the batch file that installs all the LPRs and not have to worry about manually turning off the Job Notification on all of them.
http://www.office.xerox.com/latest/SFTHT-01U.pdf
Thanks for all your help and time you spent on this.
Brian.
Hi again!
Sorry for the late answer, I have not had the time.
try going to :
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\SNMPTRAP]
It could be a "start" file in both SNMP and SNMPTRAP, change both to:
"Start"=dword:00000004
This will disable both, and then you can export this to a regfile.
you could also add this directly to the bat file I think, by writing something like this:
REG add "HKLM\SYSTEM\CurrentControlSet\services\SNMPTRAP" /v Start /t REG_DWORD /d 4 /f
Here are the ones you can choose from:
Automatic - 2
Manual - 3
Disabled - 4
Automatic (Delayed Start) - 2
Hope it helps!
Best Regards
Kimzi
--------------------------------------------
Please remember to select "Accept as Solution" for posts that helped you solve the issue.
Hi again, Brian!
That is correct, you will need to turn it off on every computer.
Or if you do know something about the registry editor, you could probably export a reg file from the computer with the correct settings and then import the registry to the other computers.
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SNMP\Parameters]
Export the settings to a reg file, and then write a script to install this while stopping the snmp-service, and when done enabling it again..
something like this:
a file named snmp.bat with these lines:
net stop "SNMP Service"
regedit /s regfilenametoexecute.reg
net start "SNMP Service"
If you do have a server and the users do use remote logins, you could also change this in the group policy.
Hope it helps!
Best Regards
Kimzi
--------------------------------------------
Please remember to select "Accept as Solution" for posts that helped you solve the issue.
Hey you!
You could change the settings on the server and then push it out to the clients if needed? Or ask them to re-add the printer when you've done the change.
Best Regards
Kimzi
--------------------------------------------
Please remember to select "Accept as Solution" for posts that helped you solve the issue.
Hey you!
You will have to turn it off in the driver.
Best Regards
Kimzi
Is there any way to turn off the Job Tracker at the physical printer level instead of at the LPR level? We have a Xerox Color 1000 Press. This would save me from having to turn it off for 83 LPRs on each computer and server.