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
4 answers

Unzip files in C# (using winzip command line)

I'm trying to create program to unzip files. I need to use winzip command line. I try to send in argument command to cmd, but it didn't work, because cmd didn't know my command. When I pasted manually command, it works. var process = new…
pakos
  • 1
  • 2
  • 3
0
votes
0 answers

Is it possible to have Winzip notify a program when it completes?

I am writing code to zip a large number of files in a single directory into smaller batches of files. The program does everything fine, but if it is zipping thousands and you tell it that you want batches of 10 or 100, it starts a ridiculous number…
KM529
  • 372
  • 4
  • 17
0
votes
1 answer

Batch file to rename extracted file if same name already exists

I work for a financial institution that pulls reports from out an outside source. I have an extremely basic batch file that checks folders for any zip file, extracts them to a different location, and moves the zip file to an "old" folder after…
dennis7474
  • 21
  • 3
0
votes
1 answer

How to create silent install using Winrar for Setup program 'Run after installation'

I can create normal silent executable by selecting 'Hide all' option in Silent mode through SFX options. But when I add file in SFX options -> Setup program ->'Run after extraction' e.g. devnode.exe devnode.exe does not run silently. Is there way…
user2661518
  • 2,677
  • 9
  • 42
  • 79
0
votes
1 answer

zx01 file saved as zip when downloaded

I have SharePoint document library that contains a .zx01. The problem occurs when I try to download that file -- instead of getting a .zx01 file, I am receiving a .zip file. Is this normal WinZip behaviour?
Nathan
  • 1,220
  • 3
  • 15
  • 26
0
votes
1 answer

Need to create a batch file to extract a zip folder using winzip executable commandline and copy to multiple places

The batch file is indented to move the zip file from my local pc to server which is possible now and the problem is like winzip is not installed on the server so is it possible to move the winzip executable along with batch file and use its…
Libin
  • 86
  • 8
0
votes
1 answer

azure storage upload zip file, then download it again and it gets corrupted

I created a zip file using WinZip. I can open this using both WinZip and Windows Explorer. I then upload this file to Azure Storage, and download it again. I can open the downloaded file in Windows Explorer, but WinZip says it is corrupted. I am…
jagdipa
  • 420
  • 1
  • 5
  • 18
0
votes
1 answer

Unable to unzip zip file created with java

I have a list of files from different locations. I create a zip file using the following the code which works without error. But when I try to unzip the file in Windows using Extract All it fails seeing unable to find any bytes, yet if I double…
Paul Taylor
  • 13,411
  • 42
  • 184
  • 351
0
votes
1 answer

Winzip not executing with gap in file path

I've used the code from Extract all .gz file in folder using VBA Shell command, to extract .gz files.The problem is that if there is a gap in the filepath, code doesn't work, if there is no gap, it works, as illustrated below: Notice in first…
user2952447
  • 139
  • 3
  • 16
0
votes
1 answer

Unzip a file from network

I'am trying to unzip a file from netowrk in C# with this syntax: string dezarhiverPath = ConfigurationSettings.AppSettings["PathWinZip"] + "\\WINZIP32.EXE"; ProcessStartInfo pro = new ProcessStartInfo(); pro.WindowStyle =…
user1577242
  • 413
  • 2
  • 13
  • 29
0
votes
2 answers

unzip file in C# via Winzip and its cmd extension

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…
Medic3000
  • 786
  • 4
  • 20
  • 44
0
votes
2 answers

access a zipped file without unzipping?

My program produces a log of info every hour that the system is running, that contains various data like access times, data transfers and any faults/warnings experienced. unfortunately these log files can be anywhere from 10,000KB to 25,000KB in…
Medic3000
  • 786
  • 4
  • 20
  • 44
0
votes
1 answer

Zip Multiple Subdirectories With Path To Individual Zips

I need help editing the following script which Zips the contents of a directory. My end goal is creating a script that will look at C:\Test (which will have multiple directories inside) and make a new zip file with the contents of each directory in…
0
votes
1 answer

Force a zip to open unzip to specific location

I'm making a very basic data entry and database system application using excel (for bulk data entry) and Access (to house the data). I play to distribute it as a zip file. In order for it to work I need the file structure to remain unchanged and…
Oliver Burdekin
  • 1,098
  • 2
  • 17
  • 36
0
votes
1 answer

How to winzip a folder exclude parent folders?

I am using this command to winzip a folder, but "bldforge_AOMS_DEV\WebSphere_AVOB" is included in the zip. winzip32.exe -min -a -r -p C:\Build\AOM.zip m:\bldforge_AOMS_DEV\WebSphere_AVOB* How can I create the zip without…
Alex
  • 180
  • 2
  • 3
  • 10