1

如何使用我的 c# 程序中的特定参数启动 sysprep.exe?

 public void cmdPrint(string[] strcommmand)
    {
        Process cmd = new Process();

        cmd.StartInfo.FileName = "cmd.exe";
        cmd.StartInfo.RedirectStandardInput = true;
        cmd.StartInfo.RedirectStandardOutput = true;
        cmd.StartInfo.CreateNoWindow = true;
        cmd.StartInfo.UseShellExecute = false;
        cmd.Start();
        cmd.StandardInput.WriteLine("cd c:\\");

        foreach (string str in strcommmand)
        {
            cmd.StandardInput.WriteLine(str);

        }
        cmd.StandardInput.Flush();
        cmd.StandardInput.Close();
        writeLine(cmd.StandardOutput.ReadToEnd());

    }

我从我的 Windows 窗体应用程序中调用它,

string[] cmd = { "cd C:\\Windows\\System32\\Sysprep", "sysprep.exe /audit /reboot"}; consoleBox1.cmdPrint(cmd);

但它似乎没有启动 sysprep.exe。我将这两个命令粘贴到 .bat 中并启动它,

System.Diagnostics.Process.Start(Application.StartupPath + "\\awesome.bat");

但它也不起作用(打开一个黑色窗口并立即关闭)

从资源管理器运行 bat 文件有效,所以我想我在我的 c# 应用程序中缺少一些权限。

在我的 app.manifest 中,

<requestedExecutionLevel level="highestAvailable" uiAccess="false" />

是否可以启动 sysprep ?我的应用程序可以在 Windows 7、8、8.1 和 10 的普通桌面和审核模式下运行。

编辑:

我尝试了代码而没有完成并关闭 cmd,但程序没有响应

var procInfo = new 
ProcessStartInfo("C:\\Windows\\System32\\Sysprep\\sysprep.exe");
                procInfo.Arguments = "/audit /reboot";
                var proc = new Process();
                proc.StartInfo = procInfo;
                proc.Start(); //Actually executes the process
                proc.WaitForExit();

给出错误:

系统找不到指定的文件/nSystem.ComponentModel.Win32Exception (0x80004005): 系统找不到在 System.Diagnostics.Process.StartWithShellExecuteEx(ProcessStartInfo startInfo) at System.Diagnostics.Process.Start() at Windows_SSD_Optimizer_Method_1.Method1 指定的文件.btn_all_Click(Object sender, EventArgs e) in :line 182/n/n系统找不到指定的文件/nSystem.ComponentModel.Win32Exception (0x80004005): 系统找不到System.Diagnostics.Process.StartWithShellExecuteEx(ProcessStartInfo startInfo) at System.Diagnostics.Process.Start() at Windows_SSD_Optimizer_Method_1.Method1.btn_all_Click(Object sender, EventArgs e) in :line 182/n/n

http://i.stack.imgur.com/0Em8O.png

4

2 回答 2

0

找到旧于 8 的 Windows 版本的解决方案:

您需要将程序编译为 x64 二进制文件。如果您将其编译为 x86 二进制文件,系统会将您重定向到SysWOW64而不是System32.

如果您需要与 x64 和 x86 兼容,您还可以禁用文件夹重定向:

 // Disables folder redirection
 [DllImport("kernel32.dll", SetLastError = true)]
 static extern bool Wow64DisableWow64FsRedirection(ref IntPtr ptr);

 // Enables folder redirection
 [DllImport("kernel32.dll", SetLastError = true)]
 static extern bool Wow64RevertWow64FsRedirection(IntPtr ptr);
于 2015-05-19T05:46:56.597 回答
0

在 Windows 8 x64 中,您应该了解 File System Redirection

当 32 位应用程序想要访问 64 位操作系统上的 System32 文件夹时,Windows 8 将默认任何 syswow64 路径,因为 32 位程序确实会寻找 32 位文件。

请尝试以下路径:

@"c:\windows\sysnative\sysprep\sysprep.exe"

var procInfo = new ProcessStartInfo(@"c:\windows\sysnative\sysprep\sysprep.exe");
procInfo.Arguments = "/audit /reboot";
var proc = new Process();
proc.StartInfo = procInfo;
proc.Start(); //Actually executes the process
proc.WaitForExit();
于 2015-05-19T06:01:56.957 回答