Delphi Xe, Win7x64
How to detect incomplete Windows edition N or K (Win XpSp3-Win7x64)? Without IE, Wmp.
Example:
Function isWinKNedition:bool;
begin
result:=?????
end;
...
procedure TForm1.FormCreate(Sender: TObject);
begin
if isWinKNedition then begin showmessage('This program can work only on full versions OS Windows');Halt;end;
end;