After updating from 19 -> 20, the COM automation interface seems to be gone for me ?
Try Right Click -> Run as Administrator
Hendrik, perhaps the installer should always prompt to install as admin?
static bool IsAdmin(){ WindowsIdentity id = WindowsIdentity.GetCurrent(); WindowsPrincipal principal = new WindowsPrincipal(id); return principal.IsInRole(WindowsBuiltInRole.Administrator);}[STAThread]static void Main(){........ if ((System.Environment.OSVersion.Version.Major >= 6) && (!IsAdmin())) // Windows Vista or higher { log.Info("Restarting with Elevated Permission."); ProcessStartInfo processInfo = new ProcessStartInfo(); if (System.Environment.OSVersion.Version.Major >= 6) // Windows Vista or higher { processInfo.Verb = "runas"; } else { // No need to prompt to run as admin } processInfo.UseShellExecute = true; processInfo.WorkingDirectory = Path.GetDirectoryName(Assembly.GetAssembly(typeof(Program)).Location); processInfo.FileName = Assembly.GetAssembly(typeof(Program)).Location; processInfo.Arguments = commandline; try { Process.Start(processInfo); } catch { log.Info("Failed to Start " + processInfo.FileName + " With Elevated permission."); } return; } else { log.Info("Elevated Permission Detected."); // do elevated stuff }......}