How to get the current path using VBScript
To get the current path using VBScript you can use the snippet below. Samples VBScript Sample msgbox GetCurrentFolder() Function GetCurrentFolder() Dim FSO Set fso = CreateObject("Scripting.FileSystemObject") GetCurrentFolder= FSO.GetAbsolutePathName(".") End Function If you have...















