Dim myPath
Set myPath = "C:\stuff\Pet - Dog\other\stuff"
WScript.Echo myPath
Dim myPath
Set myPath = "C:\stuff\Pet - Dog\other\stuff"
WScript.Echo myPath
Remove Set:
Dim myPath
myPath = "C:\stuff\Pet - Dog\other\stuff"
WScript.Echo myPath
3 people are following this question.