DTOS
(Lurker)
2004-05-17 04:43 PM
Kixtart version 3.63 vs 2001 *DELETED*

Post deleted by DTOS

Les
(KiX Master)
2004-05-17 04:52 PM
Re: Kixtart version 3.63 vs 2001

Please post to the Startes forum. This forum is limited to discussing scripts and there is no script in your post.

ShawnAdministrator
(KiX Supporter)
2004-05-17 04:58 PM
Re: Kixtart version 3.63 vs 2001

We had to detect XP from a bat file just recently and are using something like this (I just converted it to 3.x compatible syntax), if anyone knows of a better way to do in 3.x or DOS, would love to hear ...


SHELL '%COMSPEC% /C VER | FIND "Windows XP" >NUL 2>NUL'

IF @ERROR = 0
?"XP"
ELSE
?"NOT XP"
ENDIF