INTERACT FORUM
More => Old Versions => JRiver Media Center 20 for Windows => Topic started by: mhwlng on August 24, 2014, 06:26:33 am
-
After updating from 19 -> 20, the COM automation interface seems to be gone for me ?
-
After updating from 19 -> 20, the COM automation interface seems to be gone for me ?
It should be in MC20 exactly the same as it's in MC19. The code is shared between the versions and nothing has changed in this area.
-
It's not working for me anymore.
I tried on two PC's.
I installed MC20 then uninstalled MC19
-
Just run the program once with that, it should fix whatever needs fixing, and hopefully run properly the next time around without this.
-
Try Right Click -> Run as Administrator
I just tried that, and restarted MC several times. that doesn't fix my COM interface problem....
-
After updating from 19 -> 20, the COM automation interface seems to be gone for me ?
I re-ran the installer with 'run as administrator' (without uninstalling V20) and now the COM object is there....
So that fixed my problem.
-
It needs to register the COM server, and depending on the OS that may need admin rights.
Hendrik, perhaps the installer should always prompt to install as admin?
-
Do you have UAC disabled via some trickery?
It should always prompt to be elevated, when installed, and whenever run and not already registered. That's why when you switch back and forth between major versions, you get the UAC prompt each time.
-
Hendrik, perhaps the installer should always prompt to install as admin?
It does, how else would you install in Program Files anyway.
We can't really support people that turn UAC off, mostly because its just a bad idea.
-
I do have UAC turned off.
When I need to perform a configuration task that requires admin privileges, I do this (c#):
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
}
...
...
}
This works fine with both UAC off and on (then it prompts for a password)