Windows 10: Windows 10 VersionHelper.h

Discus and support Windows 10 VersionHelper.h in Windows 10 Support to solve the problem; I need to store the version of Windows running on the client computer in a variable. I'm having problems with VersionHelper.h, machines that are using... Discussion in 'Windows 10 Support' started by sivaprasad222, Oct 31, 2018.

  1. Windows 10 VersionHelper.h


    I need to store the version of Windows running on the client computer in a variable. I'm having problems with VersionHelper.h, machines that are using Windows 10 appears as Windows 8, how do I fix this?

    I'm using Visual Studio 2015, Target Platform Version: 10.0.10586.0
    Code: if (IsWindows7SP1OrGreater()) { strcpy_s(this->OS_Detect, "Windows 7 SP1"); } if (IsWindows8OrGreater()) { strcpy_s(this->OS_Detect, "Windows 8"); } if (IsWindows8Point1OrGreater()) { strcpy_s(this->OS_Detect, "Windows 8.1"); } if (IsWindows10OrGreater()) { strcpy_s(this->OS_Detect, "Windows 10"); }[/quote] return of machines with windows 10 = "Windows 8"
    I need more clarity, any help here is appreciated..

    Thanks
    Siva Prasad
    src:stackoverflow

    :)
     
    sivaprasad222, Oct 31, 2018
    #1
  2. Ahhzz Win User

    Windows 10 Tweaks

    Pressing “Windows+Pause Break” (it’s up there next to scroll lock) opens the “System” Window.

    Windows 10: In the new version of Windows, Explorer has a section called Quick Access. This includes your frequent folders and recent files. Explorer defaults to opening this page when you open a new window. If you’d rather open the usual This PC, with links to your drives and library folders, follow these steps:

    • Open a new Explorer window.
    • Click View in the ribbon.
    • Click Options.
    • Under General, next to “Open File Explorer to:” choose “This PC.”
    • Click OK


    credit to Lifehacker.
     
    Ahhzz, Oct 31, 2018
    #2
  3. Monk.e83 Win User
    Unlocked Realtek HD Audio Drivers Windows 7 & 8 (With Dolby Digital Live and DTS Interactive)

    DTS supported natively by Windows 8/8.1 and it should work on windows 10 too just DDL require to unlock your driver .
     
    Monk.e83, Oct 31, 2018
    #3
  4. Delta6326 Win User

    Windows 10 VersionHelper.h

    Delta6326, Oct 31, 2018
    #4
Thema:

Windows 10 VersionHelper.h

Loading...
  1. Windows 10 VersionHelper.h - Similar Threads - VersionHelper

  2. using VersionHelpers and IsWindowsVersionOrGreater functions in Win10

    in Windows 10 BSOD Crashes and Debugging
    using VersionHelpers and IsWindowsVersionOrGreater functions in Win10: Hi, I saw that for 8.1 and 10.0 these functions in the API are deprecated. is there any newer API that does return the correct result? or updating the manifest is the solution for this? because if so, it does not work when debugging in visual studio (but in the compiled...