@echo off
setlocal EnableDelayedExpansion

@rem check if PalmPDK installed
if not defined PalmPDK goto :NoSDK

"%PalmPDK%\bin\putty.exe" -ssh -pw "" root@localhost -P 10022
goto :EOF

:NoSDK
@rem show error message
echo PalmPDK variable not set
exit /b 1
