Hello
jeffjohn:
Use the below as contents of a BAT file that runs VBS file.
Don't forget that firewalls (like ZoneAlarm) may require you to interactively approve execution of "telnet" or similar commands. This may create a stumbling block until you set up your firewall to automatically allow all operations needed for the remote shutdown.
Hope this works for you.

Georg
@echo off
rem -------------------------------------------------------------------
rem
rem NAS_SHUT.BAT
rem
rem Apparently some applications can not start VBS directly; they
rem can only execute ".bat" (or ".exe").
rem -------------------------------------------------------------------
rem -------------------------------------------------------------------
rem Also, some applications have trouble with long folder names.
rem Try to locate the VBS in a folder using short names. If
rem supplying the full folder name as a second argument to the
rem "csript" command does not work, try the steps in section A first.
rem -------------------------------------------------------------------
rem -------------------------------------------------------------------
rem SECTION A: Change to the drive and folder that contains the VBS.
rem -------------------------------------------------------------------
rem
n:
cd \byo\shutdown\final7
rem
rem -------------------------------------------------------------------
rem SECTION B: Substitute proper path to "csript.exe" if necessary.
rem -------------------------------------------------------------------
echo.
echo Running remote shutdown for NASLite
echo.
c:\windows\system32\cscript.exe nas_shut.vbs
echo.
echo Shutdown is DONE !
echo.
pause