commands
MaratGill
Posts: 16
Hi,
How I can know from NetLinx programm current version firmware, controler type and etc? Maybe present list with un-documened commands?
P.S. Sorry for my bad english.
How I can know from NetLinx programm current version firmware, controler type and etc? Maybe present list with un-documened commands?
P.S. Sorry for my bad english.
0
Comments
Of course I'm assuming you can connect to your system with NS2. You could also telnet in and do show system.
OSVERSIONINFO osvi;
memset(&osvi, 0, sizeof(OSVERSIONINFO));
osvi.dwOSVersionInfoSize = sizeof(OSVERSIONINFO);
GetVersionEx(&osvi);
if(osvi.dwMajorVersion <= 5)
{
// win xp or below version windows
} else
{
// Vista or above
}
in NetLinx I can receive info about system, onboard memory, etc
P.S Sorry for me bad english
For details see either the NetLinx Keyword Help in NetLinx Studio, or in the Language manual http://www.amx.com/techdocs/NetLinx.InstructionManual.pdf