Cygwin/X can be used for connecing to Unix/Linux servers and displaying windows.
You can try cygwin if Xwin32 is slow when using SeisSpace.
Another alternative is MobaXterm.
If logging in doesn't work the first time, try again.
E.g. if you're going to connect to promax:
If that doesn't work, or if you want to connect to another server:
You may create your own login script by editing this:
@echo off rem ask for user name echo. echo. echo DO NOT CLOSE THIS WINDOW echo. @echo: set /p user=User Name: @echo on rem start Xwin server and xterm login window rem http://www.trueblade.com/knowledge/automatically-starting-a-cygwin-x-server C:\cygwin64\bin\run.exe -p /usr/bin XWin -multiwindow -clipboard -silent-dup-error C:\cygwin64\bin\sleep.exe 1 C:\cygwin64\bin\run.exe --wait --quote /usr/bin/xterm.exe -display :0 -e /usr/bin/ssh -Y %user%@promax.igp.ntnu.no C:\cygwin64\bin\sleep.exe 1 rem kill Xwin and delete lock files taskkill /f /im xwin.exe rmdir /S /Q c:\cygwin64\tmp\.X11-unix\ del c:\cygwin64\tmp\.X* exit