我想创建为我自动启动管理器。 它应显示为一个XML文件,然后用自定义的延迟开始我的计划。 例如:
<startup id="0">
<name>Realtek Audio Manager</name>
<process arguments="-s">C:\Program Files\Realtek\Audio\HDA\RtkNGUI64.exe</process>
<delay>5</delay>
</startup>
这将运行指定的进程( C:\Program Files\...\RtkNGUI64.exe -s
5秒后)。
现在,三个项目将无法启动,给我的System.ComponentModel.Win32Exception
:“DAS系统卡恩死angegebene Datei nicht芬登。” (“系统无法找到指定的文件。”)
但XML被正确解析,我要开始的文件是在我的XML文件中指定的位置。
该问题仅涉及这三个文件:
英特尔HotkeysCmd - C:\ WINDOWS \ SYSTEM32 \ hkcmd.exe
英特尔GFX托盘 - C:\ WINDOWS \ SYSTEM32 \ igfxtray.exe
英特尔持久性 - C:\ WINDOWS \ SYSTEM32 \ igfxpers.exe
我认为这个问题来自文件的位置:它们都位于C:\ Windows \ System32下,和所有其他,工作程序位于外(C:\ Program Files文件,C:\ Program Files文件(86) ,d:\ Program Files文件, %AppData%
我必须给我的程序某种访问权限在C启动程序:\ Windows \ System32下? 我会怎么做呢?
如果不是,这可能是我得到这些程序错误的原因?
编辑 - 我的代码:
delegate(object o)
{
var s = (Startup) o;
var p = new System.Diagnostics.Process
{
StartInfo =
new System.Diagnostics.ProcessStartInfo(s.Process, s.Arguments)
};
try
{
s.Process = @"C:\Windows\System32\igfxtray.exe"; // For debugging purposes
System.Diagnostics.Process.Start(s.Process);
icon.ShowBalloonTip(2000, "StartupManager",
"\"" + s.Name + "\" has been started.",
System.Windows.Forms.ToolTipIcon.Info);
}
catch (System.ComponentModel.Win32Exception)
{
icon.ShowBalloonTip(2000, "StartupManager",
"\"" + s.Name + "\" could not be found.",
System.Windows.Forms.ToolTipIcon.Error);
}
}