winzip

Creating a self-extracting zip archive on a linux box

二次信任 提交于 2020-01-10 19:26:10
问题 Due to a number of constraints that I won't get into, I have to create a self-extracting ZIP archive on a linux box. The resulting archive should be executable on Windows only. Is this at all possible? If so, what tools would do the job? Background: when the user downloads a setup package from my linux box, I need that setup package to be pre-populated with a certain key. I only know that key at runtime; my idea was to write a simple .xml file with that key, then zip up the .msi installer

How to decompress an AES-256 encrypted Zip file?

被刻印的时光 ゝ 提交于 2019-12-30 00:41:22
问题 I am looking for a compression library to use in iPhone application supports decompressing AES 256-bit archives built in Winzip compression utility. Thanks. 回答1: zlib is part of the iPhone sdk and is a well established and free option. If you're using Xcode you can add it to your project by: Right clicking on the Frameworks folder in your project (you can do it elsewhere but that's likely where you want to put it) Select add file Select existing frameworks Select libz.1.2.3.dylib 回答2: Thank

unzip file in C# via Winzip and its cmd extension

两盒软妹~` 提交于 2019-12-25 18:36:34
问题 so I have a small chunk of code that detects files in a folder and systematically zips them after they become a certain age. I'm now working on a piece of code to unzip files of a certain date-range at user request for use in the software. My issue is that the command-line string to zip files works great, but the unzip does not... below is the excerpt of code showing how I unzip, please let me know what I should do differently to ensure unzipping. thanks! private void UnZipFile() { if

I need a C# library for zipx [closed]

假装没事ソ 提交于 2019-12-25 04:35:53
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 4 years ago . I need to extend my application to unzip .zipx files. This appears to be the latest and greatest zip compression from WinZip. Does anyone know of a library that will do this? Thanks 回答1: One thing I would suggest is looking here. it seems they are open to developers. http://www.winzip.com/comp_info.htm 回答2:

How to ZIP specific files from a folder using Winzip command line?

落爺英雄遲暮 提交于 2019-12-13 12:22:48
问题 With this command, I'm able to ZIP all files from the folders: wzzip.exe -a -p -r C:\DestinationPath\DataFiles_20130903.zip C:\SourcePath\*.* But, my folder has .dat,.bat,.txt,.xls files.I want to ZIP only .dat and .bat file.How to do this? Thanks. 回答1: use this command (for the particular scenario in the question): wzzip.exe -a -p -r C:\DestinationPath\DataFiles_20130903.zip C:\SourcePath\*.dat C:\SourcePath\*.bat for more command line options for winZip refer to the following links: winZip

Trying to execute self extracting zip file silently in command line

末鹿安然 提交于 2019-12-10 19:01:52
问题 I have these self extracting zip files that I'm trying to extract on 2008/7 machines remotely. But they are coming in a way of .exe and it require user to double click and choose the extractions location. On WinZip support site they saying to use the /auto flag so the command will look like that: C:\deploy\.exe /auto C:\path\\ It starts the process in the task manager but it stuck there foever. When I'm opening the file in text editor it says: !This program cannot be run in DOS mode. So maybe

How to extract WinZip Self-Extracting exe in silent mode

為{幸葍}努か 提交于 2019-12-10 15:59:49
问题 I have create a exe file using WinZip Self-Extractor. It extracts the file in UI mode, that is while dobule click the setup a new window opened that shows unzipping setupname.exe. I need to extract the same exe in silent mode which should not show unzipping UI info. Is it possible to extract the exe using WinZip Self-Extractor in both UI mode and Silent mode ? Please share the steps if available to do this. 回答1: For WinZip you can use the /auto flag followed by the directory you would like to

ZipFile is throwing error but ZipInputStream is able to decompress the archive

偶尔善良 提交于 2019-12-07 01:19:44
问题 I am experiencing a strange behavior with java.util.zip.* I have a zip file and upon decompressing follwing tihngs happen ZipFile zipfile = new ZipFile(file, ZipFile.OPEN_READ); This is exaxt error message java.util.zip.ZipException: error in opening zip file at java.util.zip.ZipFile.open(Native Method) at java.util.zip.ZipFile.<init>(ZipFile.java:127) at java.util.zip.ZipFile.<init>(ZipFile.java:143) at com.basware.ExtractZip.unpack(ExtractZip.java:27) at com.basware.ExtractZip.main

How to do Vista/UAC aware self-extract installer

ぐ巨炮叔叔 提交于 2019-12-06 12:51:22
问题 I distribute my software with a WinZip self-extract archive (SFX). I am aware of this and that. But those doesn't seem to work for SFX scenarios. While installing, the SFX unpacks and starts a contained program (written by me), that does the installation. This includes the creation of a registry entry for the programs list under the windows control panel. Further, the program has a manifest. So it should be "Vista-aware". The SFX-executable also includes a manifest. The problem is that the

ZipFile is throwing error but ZipInputStream is able to decompress the archive

﹥>﹥吖頭↗ 提交于 2019-12-05 04:59:42
I am experiencing a strange behavior with java.util.zip.* I have a zip file and upon decompressing follwing tihngs happen ZipFile zipfile = new ZipFile(file, ZipFile.OPEN_READ); This is exaxt error message java.util.zip.ZipException: error in opening zip file at java.util.zip.ZipFile.open(Native Method) at java.util.zip.ZipFile.<init>(ZipFile.java:127) at java.util.zip.ZipFile.<init>(ZipFile.java:143) at com.basware.ExtractZip.unpack(ExtractZip.java:27) at com.basware.ExtractZip.main(ExtractZip.java:17) But if I use the following code it is able to open the archive without any errors try {