VBS Script: How to find out actual path of running script
When you need to find out what path is the running script located at you can use following script:
Dim strFullPath, strPath
strFullPath = WScript.ScriptFullName
strPath = Left(strFullPath, InStrRev(strFullPath,”\”))
Enjoy,
Recent Comments