Questions tagged [winzip]

WinZip is a shareware file archiver and compressor for Windows, OS X, iOS and Android developed by WinZip Computing. By default, WinZip creates archives in Zip file format but also has various levels of support for other archive formats.

103 questions
0
votes
0 answers

Ignore CRC errors

Software: Winzip Pro V19.0 64 bit I'm using a process to combined split zip files into one. but there is a corrupt file in one of the split zip files. How do I ignore that corrupt file. "C:\Program Files\WinZip\wzzip" -yfs "C:\temp\Photos.zip" The…
Tdubs
  • 29
  • 7
0
votes
2 answers

Zip Archive Library decompression with AES-256

I am using Zip Archive library for compressing and decompressing files, i needed to enable AES encryption so by Uncommenting #def ZIP_AES in the _features.h file included with the library and recompiling I got CZipException for decompression…
Ahmad Kayyali
  • 8,233
  • 13
  • 49
  • 83
0
votes
1 answer

Winzip Self Extracting exe would end abruptly without showing "All Done" in cmd

I have got a batch script that ends with the following: TITLE ALL DONE. You can close this window ECHO. ECHO ALL DONE. You can close this window ECHO. Pause EXIT it works fine when i run just the bat file (see below) All Done! You can close this…
irish
  • 197
  • 1
  • 2
  • 18
0
votes
1 answer

windows batch unzip to search result location folder

I have a small section of a windows batch script that for every zip file it finds, it unzips it to a specific location, then deletes it. This works fine, however I was looking to amend it so when it finds a zip file, it should extract it to a new…
adjuzy
  • 511
  • 2
  • 6
  • 22
0
votes
1 answer

WinZip Courier automatically zipping email attachments

I am trying to create a pre-configured MSI file for WinZip Courier 6 (latest version) within a CMD script (eventually deploying on SCCM). The main MSI property to turn off automatic zipping is "AlwaysZipAttachments" which it set to "0". Now…
Doug
  • 1
  • 1
0
votes
1 answer

unzipping zipx by controlling winzip with python

I need to unzip numerous zipx files into directory while checking on the run if unzipped files comply with a condition. The condition is "if there is file with the same name overright it only if unzipped file is larger". I wanted to control winzip…
user1995926
  • 39
  • 1
  • 4
0
votes
1 answer

Zip and password protect file using batch file - what am I missing in this code please

@echo off pushd "S:\SourcePath" "c:\program files\winzip\wzzip.exe" -a "S:\Destination\Sample.zip" *.txt popd I think I am missing an additional line in this code to encrypt with a password. I have added the option of -s before I…
User_Mode
  • 11
  • 1
  • 2
0
votes
2 answers

Winzip command line error and message handling

I'm trying to automatically zip a group of files and move them to a different location. This is the command i'm using for the script: -a -r -en .zip Problem is that at any given moment one of the files is still…
AranZaiger
  • 61
  • 1
  • 10
0
votes
2 answers

Winzip in Powershell

I am using Powershell v2 to run wzunzip.exe to unzip two zip files and move them into a temporary directory. This is what I have so far ... $unzip = & 'C:\Program Files\pathTo\wzunzip.exe' $unzip_src = Join-Path $pathTo…
Hemi81
  • 578
  • 2
  • 15
  • 34
0
votes
1 answer

ZIP 2.0 cracking using pkcrack

I have been trying to get into an old ZIP archive where I still have some files from it, but I have some problems understanding how this all works. I believe I have the correct plaintext but it is somehow not working. Have a look at the following…
Latedi
  • 303
  • 1
  • 4
  • 11
0
votes
1 answer

Winzip command line in c programming

I wanted to unzip the file using winzip command line using c programming and i have written the following code but after executing it is showing that the system command couldn't identify internal or external command #include #include…
PrajwalBhat
  • 51
  • 2
  • 3
  • 10
0
votes
0 answers

Use WinZip command line to zip files including specifc to level folder

I have a directory structure that looks like this: Main/Include Include/header.h Include/header2.h Main/Windows Windows/code /code/code.css Windows/bin /bin/bar.txt Main/Mac Mac/code …
Evan Miller
  • 369
  • 4
  • 13
0
votes
1 answer

WinZip, VB.Net Command Line max size of zip file

I need help on WinZip commandlines. I currently have a commandline which works fine but crushes if the folder is more than 4GB. I have very large Tiffs files which are more than 100MB. I would like to split the file when it gets to 2GB. here is my…
taff kavhu
  • 11
  • 2
0
votes
1 answer

Importing list of files to compress/zip

Does anybody know of any way (on Windows) to create an archive (zip, rar,..) and adding files to it by importing a list of files to be added (say from a CSV or text file or simply pasted) that need to be archived. Say I have a simple list of 1,000…
Martin
  • 795
  • 1
  • 12
  • 31
0
votes
2 answers

how to extract hidden zip file from inside an image

Today I saw a way to concatenate a zip file along with an image. But is there anyway to separate the two files again? To concatenate the files I types the following in command prompt: copy /b imagefilename + zipfilename [filename with…
Aman Mathur
  • 709
  • 2
  • 15
  • 27