Re: Current Path by D
D
Thu May 17 17:43:23 CDT 2007
Hi Joachim,
Dim go_fso
Dim gs_script_spec, gs_script_path, gs_script_name
Set go_fso = CreateObject( "Scripting.FileSystemObject" )
gs_script_spec = Wscript.ScriptFullName
gs_script_path = go_fso.GetParentFolderName( gs_script_spec )
gs_script_name = go_fso.GetBaseName( gs_script_spec )
Regards,
Dave.
"Joachim Hofmann" <speicher@freenet.de> wrote in message
news:%23PA0u3tlHHA.4684@TK2MSFTNGP03.phx.gbl...
> Hello,
>
> how can I get the current path of the running vbs-Script?
>
> Thank You
> Joachim