How to Programatically determine if the Windows Phone 8 GDR3 Update is installed in Phone?

Do you want to know if the Windows Phone Device has the GDR3 Update installed? You can use the Environment.OSVersion.Version property to get the version number and check the version with the 8.0.10492 to find if the phone’s version matches the GDR3 or higher version.

Below is a simple function which returns true if the Windows Phone 8 GDR3 Update is installed in Phone.

How to programatically determine if the Windows Phone 8 GDR3 Update is installed in Phone?

How to Programatically determine if the Windows Phone 8 GDR3 Update is installed in Phone?

// function to return if the phone has GRD3 or above version

private bool ISWindowsPhoneGDR3Installed()

{

Version GDR3VersionNumber = new Version(8, 0, 10492);

var InstalledVersion = Environment.OSVersion.Version;

return InstalledVersion >= GDR3VersionNumber;

}

Leave A Reply

Your email address will not be published. Required fields are marked *

You May Also Like

In this post, you’ll learn about the Win32 Error “0x000019E5 – ERROR_COULD_NOT_RESIZE_LOG” that you get when debugging system erors in...
In this post, you’ll learn about the error “CO_E_DBERROR 0x8004E02B” that is returned when working with COM based APIs or...
In this post, you’ll learn about the Win32 Error “0x000019D0 – ERROR_LOG_BLOCK_VERSION” that you get when debugging system erors in...