Despite its non-intuitive installation, Cygwin is actually the best.
In the Cygwin setup, you can install the X server using these instructions.
It's a good idea to install the apt-cyg package manager as well. For that you'll want to make sure that you have selected to install wget in the Cygwin setup, then do this:
wget http://apt-cyg.googlecode.com/svn/trunk/apt-cyg
chmod +x apt-cyg
mv apt-cyg /usr/local/bin/
Then to install OpenSSH:
apt-cyg install openssh
Now issue this command to start the X server:
XWin :0 -clipboard -resize=randr
And, in a new Cygwin terminal, use this command to do your SSH (with remote desktop X session forwarding, if you want it):
DISPLAY=:0.0 ssh -fCY <username>@<server> <desktop-startup-command>
The desktop-startup-command might be gnome-session, or xfce4-session, etc...