我正在尝试删除 Silverlight Out Of Browser 应用程序,以编程方式将参数传递给 sllauncher,并遵循此帖子:http ://timheuer.com/blog/archive/2010/03/25/using-sllauncher-for-silent-install -silverlight-application.aspx 但是在给定来源时它不会卸载应用程序。
问问题
1301 次
1 回答
4
事实证明,当您有一个自动更新的浏览器外应用程序时,Silverlight 会在每个应用程序 Uri 上加上一个时间戳,该时间戳可以在 C:\Users\Trevor\AppData\Local\Microsoft\Silverlight 的应用程序文件夹中找到\OutOfBrowser(AppFolderName) 元数据文件。因此,为了方便删除我们的应用程序以准备我们的新应用程序,我实现了以下内容:
UninstallExisting(GetInstalledAppUri()); // This is how it's called
//This is the two method's implementation
// TODO: Change to your app name.
const string appName = "YourAppNameHere";
static string silverlightOutOfBrowserFolder =
Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData)
+ @"\Microsoft\Silverlight\OutOfBrowser";
private static string GetInstalledAppUri()
{
string xapFolderPath = Path.Combine(silverlightOutOfBrowserFolder, GetXapFolder());
string[] lines = File.ReadAllLines(Path.Combine(xapFolderPath, "metadata"), Encoding.Unicode);
string finalAppUriLine = lines.First(i => i.Contains("FinalAppUri="));
return "\"" + finalAppUriLine.Replace("FinalAppUri=", "") + "\"";
}
private static string GetXapFolder()
{
string AppXapFolder = "";
foreach (var dir in Directory.GetDirectories(silverlightOutOfBrowserFolder))
{
if (dir.Contains(appName))
{
AppXapFolder = dir;
}
}
return AppXapFolder ;
}
private static string silverlightExe
{
get
{
return Path.Combine(
Environment.GetFolderPath(Environment.SpecialFolder.ProgramFiles),
@"Microsoft Silverlight\sllauncher.exe");
}
}
private static void UninstallExisting(string xapUriToRemove)
{
string installArgs = "/uninstall" + " /origin:" + xapUriToRemove;
ProcessStartInfo pstart = new ProcessStartInfo(silverlightExe, installArgs);
Process p = new Process();
pstart.UseShellExecute = false;
p.StartInfo = pstart;
p.Start();
p.WaitForExit();
}
我希望这可以帮助其他人节省我花费数小时来弄清楚元数据文件和 sllauncher.exe 的所有特性的时间
于 2013-08-07T14:41:13.113 回答