Fix GetLibs.vbs registration of the tar and gzip components.

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@72 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Michael Jerris 2005-11-22 01:33:38 +00:00
parent 48679c1190
commit efd43d1131
1 changed files with 2 additions and 9 deletions

View File

@ -117,17 +117,10 @@ Sub GetTarGZObjects(DestFolder)
Wget "http://www.sofaswitch.org/mikej/XGZip.dll", DestFolder
End If
Set oExec = WshShell.Exec("regsvr32 /s " & DestFolder & "XTar.dll")
WshShell.Run "regsvr32 /s " & DestFolder & "XTar.dll", 6, True
Do While oExec.Status = 0
WScript.Sleep 100
Loop
WshShell.Run "regsvr32 /s " & DestFolder & "XGZip.dll", 6, True
Set oExec = WshShell.Exec("regsvr32 /s " & DestFolder & "XGZip.dll")
Do While oExec.Status = 0
WScript.Sleep 100
Loop
End Sub
Sub UnTarGZ(TGZfile, DestFolder)