I was connecting to outlook with a PIM and a phone manager to synchronize files. Recently I have been unable to do this, getting the 8007007E message "The specified module could not be found"
I have been probing with the following script:
Set synchronize = CreateObject("Outlook.Application")
Set objNameSpace = objOutlook.GetNameSpace("MAPI")
objNameSpace.PickFolder
This script brings back the erroe message.
If I add LocalHost to the first line, like this:
Set objOutlook = CreateObject("Outlook.Application","localhost")
Set objNameSpace = objOutlook.GetNameSpace("MAPI")
objNameSpace.PickFolder
This script connects and opens the folder dialogue.
I have one PC not connecting and another that does, so I thought I might be able to compare registry entries and find the cause of the non connection.
Could anyone point me in the right direction, like which keys may have the answer?
I have been probing with the following script:
Set synchronize = CreateObject("Outlook.Application")
Set objNameSpace = objOutlook.GetNameSpace("MAPI")
objNameSpace.PickFolder
This script brings back the erroe message.
If I add LocalHost to the first line, like this:
Set objOutlook = CreateObject("Outlook.Application","localhost")
Set objNameSpace = objOutlook.GetNameSpace("MAPI")
objNameSpace.PickFolder
This script connects and opens the folder dialogue.
I have one PC not connecting and another that does, so I thought I might be able to compare registry entries and find the cause of the non connection.
Could anyone point me in the right direction, like which keys may have the answer?