我目前正在为我的应用程序开发一个Autoupdater。 (与安装程序,更新程序和删除工具结合使用)
我想自动设置所有Stuff:
这非常有效。要写入Program Files和注册表,该工具需要管理员权限ofc。因此,在选择了所需的软件后,我添加了AppLauncher的“重启”。 就像这样:
ProcessStartInfo pi = new ProcessStartInfo(Directory.GetCurrentDirectory() + @"\AppLauncher.exe");
pi.Verb = "runas";
pi.Arguments = "install " + this.appItem.APID;
Process p = new Process();
p.StartInfo = pi;
try
{
p.Start();
Application application = Application.Current;
application.Shutdown();
}
catch (Exception ex)
{
MessageBox.Show("Unable to install the application.\n\n" + ex.ToString(), "Error",
application.Shutdown();
}
此步骤也很有效,如果用户将AppLauncher.exe保存在文件夹中的某个位置并通过双击启动它。
如果用户决定从浏览器点击“运行”,则安装程序会遇到显示的异常,并且未找到“AppLauncher.exe”。我假设,从浏览器启动文件将设置不同的WorkingDirectory,因此
Directory.GetCurrentDirectory()
不会返回文件所在的适当值。 如果用户决定给该文件另一个名字,它也可能不起作用。
那么,我能做些什么呢?
是否有类似File.GetCurrentFile()的内容:P