I have about 25 machines (XP Pro) that I need to update to use Lotus Notes as the default email program. Rather than hitting each desktop, I'd like to have the users run a batch file that merges a .reg file. I've identified the registry keys/sub-keys that need to be updated, but for some reason one of them just will not update to the value data I'm entering.
I'm using value data that is populated into the registry when I change the default program to Lotus Notes manually through the Windows interface...here's the contents of my .reg file:
Everything works except for the last line item. The Command sub-key will not update to the value data I entered. If I change the value data to something else ("test", for instance), it does update. So what is the problem with c:\program files\notes\notes.exe %1? I've tried variants of this path, such as with quotes around the exe file/with the %1, even with a path to the notes.ini, but it just will not change.
So the default value for the email program changes to Lotus Notes in the Windows interface, but when a user clicks a mailto: link, it's still opening MS O.E. or walks them through a wizard...any suggestions?
I'm using value data that is populated into the registry when I change the default program to Lotus Notes manually through the Windows interface...here's the contents of my .reg file:
Code:
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Clients\Mail]
@="Lotus Notes"
[HKEY_CLASSES_ROOT\mailto]
@=""
[HKEY_CLASSES_ROOT\mailto]
"URL Protocol"=""
[HKEY_CLASSES_ROOT\mailto]
"EditFlags"=-
[-HKEY_CLASSES_ROOT\mailto\DefaultIcon]
[HKEY_CLASSES_ROOT\mailto\Shell\Open\Command]
@=c:\program files\notes\notes.exe %1
Everything works except for the last line item. The Command sub-key will not update to the value data I entered. If I change the value data to something else ("test", for instance), it does update. So what is the problem with c:\program files\notes\notes.exe %1? I've tried variants of this path, such as with quotes around the exe file/with the %1, even with a path to the notes.ini, but it just will not change.
So the default value for the email program changes to Lotus Notes in the Windows interface, but when a user clicks a mailto: link, it's still opening MS O.E. or walks them through a wizard...any suggestions?