I need to get the download path of a desktop using vbscript. So I need a syntax like
MyDoc = Ws.SpecialFolders("Mydocuments")
.
Have you any idea ??
Best regards
I need to get the download path of a desktop using vbscript. So I need a syntax like
MyDoc = Ws.SpecialFolders("Mydocuments")
.
Have you any idea ??
Best regards
Try the following
Dim sDesktopPath
Set objShell = Wscript.CreateObject("Wscript.Shell")
sDesktopPath = objShell.SpecialFolders("Desktop")