- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我需要从 CMD 运行一些东西。在 C# 窗口中。
ProcessStartInfo info = new ProcessStartInfo("cmd.exe");
//info.Arguments = "/K control /name Microsoft.DevicesAndPrinters";
info.Arguments = @"/K cd ../../../../FilesMigration/Solution/FilesMigration/bin/Debug ";
Process.Start(info);
它确实会启动 cmd 并转到指定位置,但现在我需要使用其参数运行“fileMigration.exe”。
我试过这样的:
info.Arguments = "/K filesmigration \"Data Source=(local)/SQLExpress;Initial Catalog=FilesMigration;Integrated Security=true; Connection Timeout=30\""
+ " \"C:/Programing/api/PE_API_Tester/FilesMigration/SCD File System/For Ella/K_Root\""
+ " \"C:/Programing/api/PE_API_Tester/FilesMigration/SCD File System/For Ella/U_Root_Analysis_Clusters\""
+ " \"C:/Programing/api/PE_API_Tester/FilesMigration/SCD File System/For Ella/U_Root_Analysis_Flows\""
+ " \"C:/Programing/api/PE_API_Tester/FilesMigration/SCD File System/For Ella/U_Root_AtpSoftware_MatrixAtp\""
+ " \"notepad\""
+ " \"CO1\""
+ " \"V1\"";
Process.Start(info);
不过好像是在老地方找。我也试过“Console.write”,但它什么也没做。
知道如何正确书写吗?
最佳答案
尝试设置 WorkingDirectory属性而不是自己传递命令
ProcessStartInfo info = new ProcessStartInfo("cmd.exe");
info.WorkingDirectory = @"../../../../FilesMigration/Solution/FilesMigration/bin/Debug ";
info.Arguments = "/K filesmigration ......";
Process.Start(info);
请检查提供此属性在 UseShellExecute 时的不同行为的链接。是假的
关于c# - CMD C# Window应用程序ProcessStartInfo,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25264045/
ProcessStartInfo.EnvironmentVariables : A string dictionary that provides environment variables that
这是为什么 ProcessStartInfo myProcess = new ProcessStartInfo(path); myProcess.UserName = username; myProc
当我通过在 CMD 中键入以下内容手动向 Windows 添加服务时: “C:\Program Files (x86)\Windows Resource Kits\Tools\instsrv.exe”
根据 MSDN : 如果您没有使用 开始 启动进程的方法,开始信息 属性不反射(reflect)用于启动进程的参数。例如,如果您使用 获取进程 要获取计算机上运行的一系列进程,开始信息 每个人的属性(
当我尝试获取可执行文件的命令行参数时,我尝试检查 ProcessStartInfo Get-Process 返回的结构,但无论如何参数字段都是空的: PS C:\> ps notepad Handle
在我的 C# 应用程序中,我使用以下 ProcessStartInfo 调用 Process.Start(myPSI): ProcessStartInfo startInfoSigner = new
我创建了一个方法,它将以管理员身份执行 .exe 文件。 我想对两个不同的 .exe 文件使用相同的方法,但是 .exe 文件看起来彼此不同。因此,它们需要不同数量的参数。 方法如下: public
我正在将 C++ 代码移植到 C#,我在 C++ 代码中遇到了这个问题, SHELLEXECUTEINFO shell; memset(&shell, 0, sizeof(shell)); //the
我正在使用特殊的用户、域和密码启动一个进程。虽然我告诉 C# 隐藏它显示的控制台窗口。 这是我的代码: Process process = new Process(); process.StartIn
我正在使用 ProcessStartInfo 为文件打补丁,这样的文本文件(通过 cmd.exe): app.exe temp.txt patch.ips 我写了这段代码: ProcessStartI
这个问题在这里已经有了答案: Piping process output to new process (2 个答案) 关闭 5 年前。 在下面的 C# 代码中,我遇到了错误, ProcessSta
ProcessStartInfo.UseShellExecute 将如何影响我正在运行的进程? 我是否需要 UAC 的特殊权限才能使用 UseShellExecute? 它会在不同的用户上运行吗? 它
我整个上午都在处理这个问题,所以我来这里寻求帮助。阅读许多关于此的 SO 问题并尝试了所有解决方案但没有解决我的问题。 我刚开始使用 Process.Start(batchfile.bat); 它在某
我正在编写一个保持事件状态的服务来查看进程是否已启动并正在运行。我有几个同名的进程在不同的工作目录中运行。 因此,我想使用 WorkingDirectory属性作为唯一标识符。但是,当我查询所有这些属
我正在使用以下代码启动另一个带有参数的进程,这里我传递一个字符串路径作为参数,路径返回为 c:\documents and settings\\local settings: : string pat
但是它不起作用——这意味着 java 代码没有被执行。虽然批处理文件在 Windows 资源管理器中单击或在命令行中运行时运行良好.. 由于当批处理文件是单个 DOS 命令时这工作正常,我认为这在某种
如果你想启动另一个进程并等待(超时)完成你可以使用 the following (from MSDN) . //Set a time-out value. int timeOut=5000; //Ge
我想从 c# 代码运行一些 cmd 命令。我按照一些博客和教程得到了答案,但我有点困惑,即我应该如何传递多个参数? 我使用以下代码: System.Diagnostics.Process proces
我正在尝试从名为 teste.sh 的文件中运行以下命令 kpm restore k web 当我打开终端 cd 到正确的文件夹并执行“sh teste.sh”时,它们运行得很好,但是当我尝试在 mo
我想使用 shell 可执行文件以尊重要启动的应用程序的用户首选项,但我还需要知道该特定应用程序何时关闭。 Process editProcess = new Process(); ProcessSt
我是一名优秀的程序员,十分优秀!