gte Posted November 5, 2009 Posted November 5, 2009 The dll file is attached, that is necessary to test this with. It takes about 6 times as long with this dll/script, as it does using the OEM XP compression dll. I can't use that one though, because it won't work on server 2000 and this dll seems to be OS independent? Any help/improvements would be appreciated. I'm trying to get the windows one to work also, but I'm not sure that's going to pan out, so it'd be nice to have a comparable alternative. expandcollapse popupFileInstall("C:\file includes\xzip\xzip.dll", "c:\winnt\system32\xzip.dll", 1) _unziposindependent() func _unziposindependent() ; Local $objZip ;$objZip = ObjCreate("XStandard.Zip") ;If IsObj($objZip) Then ; $objZip.UnPack("d:\dma\fecs\downloadbak\test\ACSKL1.R090914.AAAA29.DS010Z.ZIP", "C:\Temp\testxmls", "*.xml") ;Else ;MsgBox(0,0, "Can't find object") ;EndIf Local $sZipFile="d:\dma\fecs\downloadbak\test\" Local $sFolderStructure= "C:\Temp\testxmls" Local $oShell = ObjCreate("Shell.Application") Local $oOriginFolder = $oShell.NameSpace($sZipFile) If Not IsObj($oOriginFolder) Then MsgBox(0, "Set Error", 3) Return SetError(3, 0, 0) ; unavailable location EndIf MsgBox(0, "oOriginFolder", $oOriginFolder.items.count) local $hList = $oOriginFolder.Items local $item local $found = 0 local $sFilename local $itemCount=$oOriginFolder.items.count if ($itemCount >0) Then Local $objZip = ObjCreate("XStandard.Zip") For $item in $hList $sFilename=$item.name $objZip.UnPack($sZipFile & $sFilename, $sFolderStructure, "*.xml") Next EndIf EndFuncxzip.dll HP OpenView ServiceCenter keep alive scriptRemote Desktop Login Script
GEOSoft Posted November 5, 2009 Posted November 5, 2009 Take a look at using the command line version of 7zip (7za.exe) and you will save yourself a lot of trouble. George Question about decompiling code? Read the decompiling FAQ and don't bother posting the question in the forums.Be sure to read and follow the forum rules. -AKA the AutoIt Reading and Comprehension Skills test.*** The PCRE (Regular Expression) ToolKit for AutoIT - (Updated Oct 20, 2011 ver:3.0.1.13) - Please update your current version before filing any bug reports. The installer now includes both 32 and 64 bit versions. No change in version number. Visit my Blog .. currently not active but it will soon be resplendent with news and views. Also please remove any links you may have to my website. it is soon to be closed and replaced with something else. "Old age and treachery will always overcome youth and skill!"
gte Posted November 5, 2009 Author Posted November 5, 2009 Through the 7zip.au3 or through 7zips site?Take a look at using the command line version of 7zip (7za.exe) and you will save yourself a lot of trouble. HP OpenView ServiceCenter keep alive scriptRemote Desktop Login Script
GEOSoft Posted November 5, 2009 Posted November 5, 2009 (edited) 7zip site. All you need is the command line version. EDIT: http://downloads.sourceforge.net/sevenzip/7za465.zip Edited November 5, 2009 by GEOSoft George Question about decompiling code? Read the decompiling FAQ and don't bother posting the question in the forums.Be sure to read and follow the forum rules. -AKA the AutoIt Reading and Comprehension Skills test.*** The PCRE (Regular Expression) ToolKit for AutoIT - (Updated Oct 20, 2011 ver:3.0.1.13) - Please update your current version before filing any bug reports. The installer now includes both 32 and 64 bit versions. No change in version number. Visit my Blog .. currently not active but it will soon be resplendent with news and views. Also please remove any links you may have to my website. it is soon to be closed and replaced with something else. "Old age and treachery will always overcome youth and skill!"
gte Posted November 5, 2009 Author Posted November 5, 2009 Thanks!I wasted 5 days on trying to get the windows version to work ugh!You probably saved me another 5 days with this, it works great!7zip site. All you need is the command line version.EDIT:http://downloads.sourceforge.net/sevenzip/7za465.zip HP OpenView ServiceCenter keep alive scriptRemote Desktop Login Script
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now