I'm trying to run a software's batch utility tool via C# and the command line but am not able to get it to work. I am able to build a string which is correct and works when I just copy and paste it into the command prompt, but when my code tries to do that step automatically nothing happens; the script just runs to the end and nothing happens.
For reference, this is what I'm trying to do: https://knowledge.autodesk.com/support/navisworks-products/learn-explore/caas/CloudHelp/cloudhelp/2020/ENU/Navisworks/files/GUID-14B017E2-B4A2-432F-8C2D-1F1856EECB8E-htm.html
I've tried a number of times changing the different properties of StartInfo, but nothing has worked so far. Could there be an issue with the different directories that are at play?
- "filesTextFile" is a .txt file on the C: drive which lists paths for files located on a shared network drive (\\{network}\)
- cmd.exe is in the C: drive
- "NWBatchUtilityLoc" variable is the file path for an .exe on the C: drive
- .cs script is running from the D: drive.
This is an excerpt of my code that shows how the string is being built and how I am using System.Diagnostics.Process
.
var utilityCmd = $@"""{NWBatchUtilityLoc}"" /i ""{filesTextFile}"" /osd /log ""{logDir}"" /lang en-US";
var p = new Process
{
StartInfo =
{
FileName = @"C:\Windows\System32\cmd.exe",
Arguments = "/C " + utilityCmd,
}
};
p.Start();