I\'m trying to use the following script (It\'s being called by a Batch file, by the way) to unzip files in Windows XP:
strZipFile =\"C:\\test.zip\"
This should get you the zip file's full path:
strZipFile ="test.zip" dim fso, fullPathToZip set fso = CreateObject("Scripting.FileSystemObject") fullPathToZip = fso.GetAbsolutePathName(strZipFile)