vote up 1 vote down star

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

flag

2 Answers

vote up 2 vote down

Just set ZipFile = The location of the zip file, and ExtractTo = to the location the zip file should be extraced to.


'The location of the zip file.
ZipFile="C:\Test.Zip"
'The folder the contents should be extracted to.
ExtractTo="C:\Test\"

'If the extraction location does not exist create it.
Set fso = CreateObject("Scripting.FileSystemObject")
If NOT fso.FolderExists(ExtractTo) Then
   fso.CreateFolder(ExtractTo)
End If

'Extract the contants of the zip file.
set objShell = CreateObject("Shell.Application")
set FilesInZip=objShell.NameSpace(ZipFile).items
objShell.NameSpace(ExtractTo).CopyHere(FilesInZip)
Set fso = Nothing
Set objShell = Nothing
link|flag
vote up 1 vote down

Have a look at the 3rd entry on Rob van der Woude's site.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.