Background
I have an application, that for deployment I zip the installation files before shipping it.
The zipping is mainly for:
- Publishing the files in a single folder.
- Giving the folder a unique name for differentiating it from other versions (e.g. appName_ver1 and appName_ver2).
My question
Is there a way, in windows 7, to do a zip in command line? (I'm planning to perform deployment using a script).
Additional information
- I don't mind using external tools (e.g. 7zip) on the deploying machine.
- I cannot count on any software being installed on the installing machine, so windows 7 should be able to open the zipped folder using a double click in windows explorer.
- The files are rather small, so I an not worried about how good the compression is.
- After a quick search in Google, what I came was this, which is not realy my case.