I have searched the forum but can not find a way to check local OS NAME.
Is there a way to check for os name inside hmg.3.4.4.
Now I am just creating a file in local computers when windows 7 is used WIN7F.TXT
in code.
Code: Select all
MAIN
PUBLIC WIN7F := .F.
IF FILE("C:\WIN7.TXT")
WIN7F := .T.
ENDIF
/// I would like
IF SYSTEM INFO OSNAME <> WINDOWS 10
WIN7F := .T..
ENDIF