How to identify Win7 Home Premium, Win7 Professional, Win7 Enterprise, or Win7?
Determine the version and version of Windows
Check this box Detect OS version and see if it helps. This is for XP, but it should help you a bit.
Check it out too http://andrewensley.com/2009/06/c-detect-windows-os-part-1/ and this one for Vista .
He noted the issue using win32 api.
GetVersionEx () et al. Is what you need. See This Code Example for a more detailed example.
"Edition" HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion Windows, , ? .
EditionID = EditionID = ID = EditionID = Premium
Delphi Windows XP ,
var Reg : TRegistry begin Reg := TRegistry.Create(); Reg.RootKey := HKEY_LOCAL_MACHINE; Reg.OpenKey('Software\Microsoft\Windows NT\CurrentVersion', false); Caption := Reg.ReadString('ProductName'); Reg.Free; end
WMI: host localhost, namespace root\cimv2 ( ) SELECT Caption FROM Win32_OperatingSystem
localhost
root\cimv2
SELECT Caption FROM Win32_OperatingSystem
, ;)
, , , . ( ), , , Microsoft Windows.
Windows Vista - 6.0, Windows 7 - 6.1, 7. .
, . , Windows Vista/7 home basic . .., .
MSDN , , . , , Windows. dll, Windows ..
Windows 7 DLL system32 Vista. , DLL, , Windows 7 , xp/vista.
GetVersionEx , , , , SKU. , , - . OSVERSIONINFOEX docs
Microsoft . GetProcAddress API, .
, , powershell :
(gwmi -class Win32_OperatingSystem).name
Which returns a string, for example:
Microsoft Windows 7 Enterprise |C:\Windows|\Device\Harddisk0\Partition2
if you want version numbers etc. use a detailed form like
gwmi -class Win32_OperatingSystem | FL *
and choose what you need
Source: https://habr.com/ru/post/1723314/More articles:JQuery Ajax $ .getScript () method - jqueryМожно безопасно запустить несколько эмуляторов Android на одном компьютере и обмениваться данными с помощью сокетов? - androidSafari version number? - safariSerial Ajax Request Processing - JQUERY - javascriptTrying to install Ruby on Rails on OSX and I get Gem :: RemoteSourceException - ruby-on-railsWhy is http response in chunked transfer-encoding only for some clients - asp.net-mvcSpring in a GWT project? - javaWhats Algorithm or code to get the ordinal position of an element in a list sorted by value in C ++ - c ++var var and type. Why does var not work here? - c #Flex + PHP: Flash Builder 4 vs Eclipse - eclipseAll Articles