The Config.vbs files listed in the "Symptoms" section of this article contain a reference to a specific computer name, CSIPOS2B. This reference should be the actual target WebDav computer. (Localhost does not work). These files are used to set up the configurations for the samples. To use the local server where the script is being executed, replace the following code in each of the Config.vbs files:
doc.reference = "http://CSIPOS2B/BizTalkServerRepository/DocSpecs/Microsoft/CommonPO.xml"
with:
Dim WshNetwork
Set WshNetwork = WScript.CreateObject("WScript.Network")
doc.reference = "http://" & WshNetwork.ComputerName & "/BizTalkServerRepository/DocSpecs/Microsoft/CommonPO.xml"
To set the WebDav reference to specific server name, replace
CSIPOS2B with the correct server name.
The files in the second list contain a misspelling. To resolve this problem, use a text editor to perform a search and replace to change "Micorsoft" to "Microsoft" in each of these files.