Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
function GetOS: String;
var
VersionInfo: TOSVersionInfo;
PlatformId: string;
begin
VersionInfo.dwOSVersionInfoSize := SizeOf(VersionInfo);
GetVersionEx(VersionInfo);
// Detect platform
case VersionInfo.dwPlatformId of
// Test for the Windows 95 product family
VER_PLATFORM_WIN32_WINDOWS:
PlatformId := '95-based Operating System';
// Test for the Windows NT product family
VER_PLATFORM_WIN32_NT:
PlatformId := 'NT-based Operating System'
end;
Result := 'Microsoft Windows ' + PlatformId;
end;