blob: 6f55d8bd32ecd64a846eab655eb9ac80b41375c4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
On Error Resume Next
Set fso = CreateObject("Scripting.FileSystemObject")
Set shell = CreateObject("Wscript.Shell")
Sub UnZIP(zipfilename, destinationfolder)
With CreateObject("Shell.Application")
.NameSpace(destinationfolder).Copyhere .NameSpace(zipfilename).Items
End With
End Sub
zipfile = WScript.Arguments(0)
If Err.Number <> 0 Then
WSCript.Quit 1
End If
outdir = WScript.Arguments(1)
If Err.Number <> 0 Then
WSCript.Quit 1
End If
WScript.Echo zipfile
WScript.Echo outdir
If fso.FolderExists(fso.GetAbsolutePathName(outdir)) Then
fso.DeleteFolder fso.GetAbsolutePathName(outdir)
End If
fso.CreateFolder fso.GetAbsolutePathName(outdir)
If Err.Number <> 0 Then
WSCript.Quit 1
End If
UnZIP fso.GetAbsolutePathName(zipfile), fso.GetAbsolutePathName(outdir)
If Err.Number <> 0 Then
WSCript.Quit 1
End If
|