从浏览器启动时C#:Directory.getCurrentDirectory()

时间:2012-07-03 08:42:14

标签: c# process uac administrator

我目前正在为我的应用程序开发一个Autoupdater。 (与安装程序,更新程序和删除工具结合使用)

我想自动设置所有Stuff:

  • Startmenu Entry
  • C:\ Program Files \
  • 中的文件夹
  • 在应用数据中配置文件夹(取决于漫游/本地)
  • “程序和功能”中的软件删除 - 输入
  • 桌面快捷方式。

这非常有效。要写入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

1 个答案:

答案 0 :(得分:5)

替换

Directory.GetCurrentDirectory() + @"\AppLauncher.exe"

System.Reflection.Assembly.GetEntryAssembly().Location

(如果你

但是,最好不要重新发明自行车,而是使用已经实现了所有集成功能并已解决所有错误的可用安装程序解决方案。

例如:ClickOnceWiX