I use UnxTools (http://sourceforge.net/projects/unxutils/files/unxutils/current/) for windows
In the zip file, you can simply unpack /usr/local/wbin folder to any location on your disc (I use C:/Tools/Unx and make it part of the PATH.
There is gzip tool. Simply use "gzip myscript.js" to get it gzipped. You can easily include the tools into command line process to automate the gzipping and size comparison.
UPDATE: Here is the small checkgzip.cmd file I use with UnxTools to see the difference:
@echo off
dir *.js | grep -Ei [0-9][0-9]/
gzip *.js
dir *.gz | grep -Ei [0-9][0-9]/
gunzip *.gz
Typical output then looks like this with file lengths in bytes to the right from the files:
C:\Tmp\>checkgzip
11/02/2012 09:32 PM 1,026 test.js
11/02/2012 09:32 PM 335 test.js.gz
Files are back intact after the run.