Hi,

The following code is used to determine a W2K laptop:

$PCMCIA=READVALUE("HKLM\SYSTEM\CurrentControlSet\Services\Pcmcia","Start")
? "If Value PCMCIA Is 0 Than This Is A Laptop, Else A Desktop, Value Is $PCMCIA"

The following is used for W9x

$PCMCIA=EXISTKEY("HKLM\System\CurrentControlSet\Services\Class\PCMCIA\0000")
IF $PCMCIA=0
? "This Is A Laptop"
ENDIF

I hope this is useful.

regards,

Marck