REM This program shows how to get the Machines unique ID, as shown REM by the system screen in the machine information dialog PROC Main: Local Muid$(16), High&, Low& MachineUniqueID:(High&, Low&) Muid$ = Hex$(High&) + Hex$(Low&) Print Muid$ Get ENDP