Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Win NT or Win 98 ???

Status
Not open for further replies.

Robertus

Programmer
Feb 16, 2001
81
RO
How do I find wich operating system is on my machine? (programatically)

Thanks for reading this!
 
Please try the following code:

OSVERSIONINFO verInfo;
verInfo.dwOSVersionInfoSize = sizeof( OSVERSIONINFO );
GetVersionEx( &verInfo );
if ( verInfo.dwPlatformId == VER_PLATFORM_WIN32_WINDOWS )
{
AfxMessageBox( "Windows 95/98/Me" );
}
else
{
if ( verInfo.dwPlatformId == VER_PLATFORM_WIN32_NT )
{
AfxMessageBox( "Windows NT or 2000" );
}
}

For more information see
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top