Hello, I am trying to set a variable in a script that starts with 0, however it rips the zero(s) off when I try to use the variable. See my example script
---------------------------------------------
$var=00333
IF @INWIN="1" GOTO "WINNT" ELSE GOTO "END"

:WINNT
?"Setting System Variables..."
SETM "TEMP=c:\TEMP"
SETM "TMP=c:\TEMP"
SETM "SERVERNAME=NT$var"
SETM "DOMAINNAME=NTDOM$var"
SETM "NOTESNAME=NT$var"
:END
---------------------------------------------
This will result in the following:
Servername = NT333
Domainname = NTDOM333
Notesname = NT333

For some reason, it removes the zero(s). Any assistance would be great!

Thanks,
Blake