Have you tried zip ? It creates the vanilla zip-files that can be opened by winZip and other Windows applications.
Its full path is /usr/bin/zip
Gzip is another program which compresses better, but does not create .zip compatible files, but .gz files. Most modern versions of winzip/powerarchiver/etc on Windows-platform can read .gz files as well. While zip creates both an archive and does compression, gzip only compresses. So to combine multiple files, you need to use tar first, or combine it (tar czvf yalla.tgz *.files_to_include)
-Y1
|