I have created folders using my VBscript. when i give a folder path, the script is creating only the last folder, if the last but one folder does not exists, it will fail...
Late to the show, but the Shell.Application object works for me in XP, as follows ...
with CreateObject("Shell.Application") set oFolder = .NameSpace("C:\") if (not oFolder is nothing) then oFolder.NewFolder("a\b\c\d") end with