Get the Operating System Full Name Platform and Version ' 'This will throw 3x messageboxes with the FullName of the Installed Windows, along with the OS 'Platform, and OS Version that your program is running on. ' MsgBox(My.Computer.Info.OSFullName) MsgBox(My.Computer.Info.OSPlatform.ToString) MsgBox(My.Computer.Info.OSVersion.ToString)
|