Friday, November 27, 2015

How to get Windows 10 version number

Method 1: Using GUI, type the following from the command prompt or Run dialog
c:\> winver
Method 2: Using systeminfo, from the command prompt do:
c:\> systeminfo | findstr /C:"OS Version:"
Method 3: wmic, from the command prompt do:
c:\> wmic os get version

No comments:

Qt console hello world

Qt console hello world This guide shows how a Qt console hello world looks like. ▣ Open  Qt Creator  and click on  Create Project... ...