Following method will return NT AUTHORITY\Authenticated Users group as a string
public static string GetNTAuthenticatedUsers()
{
return new SecurityIdentifier(WellKnownSidType.AuthenticatedUserSid, null).Translate(typeof(NTAccount)).Value;
}
public static string GetNTAuthenticatedUsers()
{
return new SecurityIdentifier(WellKnownSidType.AuthenticatedUserSid, null).Translate(typeof(NTAccount)).Value;
}
[HKCU\Software\Microsoft\Installer\Assemblies\Global]
Lessons learnt : Don't try MSI installers on an environment where you do a very frequent patch releases (of course in Dev Environment too). Stick to the basic Gacutil tool[HKLM\SOFTWARE\Classes\Installer\Assemblies\Global]
After a long struggle managed to deploy SharePoint 2010 in a Vmware dev environment