Convert .sh to .bat please

Can someone translate this code to .bat for me? I have no clue.

#!/bin/sh
WAS_HOME="/opt/websphere/appserver/profiles/AppSrv01"
WAS_APP_SERVER="server1"
WAS_PROFILE_NAME="AppSrv01"
echo "Stopping App Server"
"${WAS_HOME}/bin/stopServer.sh" -profileName $WAS_PROFILE_NAME $WAS_APP_SERVER
echo "Stop command issued...... waiting"
sleep 30
echo "Starting app server"
"${WAS_HOME}/bin/startServer.sh" -profileName $WAS_PROFILE_NAME $WAS_APP_SERVER
echo "App Server Started"

First, what have you tried so far?

Second, there's not even a bit of programming logic in this script, only a series of commands. How hard could it be to translate those to Windows?