Hi,
I want to unzip a .zip file using VBScript, only it's always a new computer with no external applications on it. Now i know Windows XP and 2003 have an internal .zip folder option, so i guess i can use it via VBScript in order to extract the file.
How do i do it?
I tried: Set objShell = CreateObject("Shell.Application")
Set SrcFldr = objShell.NameSpace(fileName) Set DestFldr = objShell.NameSpace(appDir) DestFldr.CopyHere(SrcFldr)
Which didn't work. Any idea?
Thanks, Aviv
