I was trying to install a particular version of CLR on my Windows 8 VM via MS security updates, and they used some terms like GDR and LDR there without proper explanation. Let's see an example.
(From http://support.microsoft.com/kb/2833958 )
File informationGDR Service BranchCollapse this tableExpand this table
LDR Service Branch Collapse this tableExpand this table
|
The file version I was looking for was in GDR Service Branch, but I was still not sure if I would get the expected version installed correctly on the machine. Before trying, I needed to understand what they meant.
So, what are they?
First of all, the terms stand for:
- GDR means "General Distribution Release".
- LDR means "Limited Distribution Release".
- QFE means "Quick Fix Engineering" which is deprecated by LDR now.
GDR versions are intensively tested but do not contain many fixes as LDR versions. LDR versions are not fully tested just like our hot fixes. All distributed versions are, of course, basically GDR. Then, how the system gets into LDR mode? Let me quote another comment from the references.
A package delivered by Windows Update contains both GDR and LDR versions of the files it updates, so that it is able to replace the files on the system regardless of which branch they are currently on. A package acquired outside of Windows Update contains only LDR versions of the files it updates, and this will "move" the files onto the LDR branch where they will remain until the next Service Pack. |
This means, if we just use Windows Updates all the time, the system never gets chance to switch. However, once an LDR-only hot fixes is applied, the system will be regarded as LDR.
How do we know the current status?
The information can be retrieved on PowerShell.
PS> Get-item c:\Windows\System32\ntoskrnl.exe | select *
"FileVersion" field shows the branch name. On this screenshot, it's GDR. So if I install the fix package on the KB article I mentioned first, the system will get the GDR version of file which I want.
The following table from a Windows KB can be also used for determination.
Version | Product | Milestone | Service branch |
6.0.6000.16xxx | Windows Vista | RTM | GDR |
6.0.6000.20xxx | Windows Vista | RTM | LDR |
6.0.6001.18xxx | Windows Vista SP1 and Windows Server 2008 SP1 | SP1 | GDR |
6.0.6001.22xxx | Windows Vista SP1 and Windows Server 2008 SP1 | SP1 | LDR |
6.0.6002.18xxx | Windows Vista SP2 and Windows Server 2008 SP2 | SP2 | GDR |
6.0.6002.22xxx | Windows Vista SP2 and Windows Server 2008 SP2 | SP2 | LDR |
References
- http://blogs.msdn.com/b/windowsvistanow/archive/2008/03/11/what-is-the-difference-between-general-distribution-and-limited-distribution-releases.aspx
- http://blogs.technet.com/b/mrsnrub/archive/2009/05/14/gdr-qfe-ldr-wth.aspx
- https://blogs.technet.com/b/mrsnrub/archive/2010/07/14/gdr-amp-ldr-the-next-generation.aspx
- http://support.microsoft.com/kb/971486
Evernote helps you remember everything and get organized effortlessly. Download Evernote. |
No comments:
Post a Comment