Running dos program with Redirct
Hello.
I have the program that runs under DOS prompt and redirect the output to a folder on the C drive.
I need help running it in Kace. It must open CMD and run this Command and redirect to folder.
0 Comments
[ + ] Show comments
Answers (2)
Please log in to answer
Posted by:
rad33k
6 years ago
Hi,
I do not have any experience with KACE but I think it needs to be configured in a similar way as other tools:
Directory:$(KACE_SYS_DIR)
File: CMD.EXE
Parameters: /C ""$(KACE_DEPENDENCY_DIR)\DumpEDID.EXE" > C:\kbox\edid.txt"
On the other hand you may consider creation of a BAT in the same folder as DumpEDID.EXE, eg.:
"%~dp0DumpEDID.EXE" > "C:\kbox\edid.txt"
I do not have any experience with KACE but I think it needs to be configured in a similar way as other tools:
Directory:$(KACE_SYS_DIR)
File: CMD.EXE
Parameters: /C ""$(KACE_DEPENDENCY_DIR)\DumpEDID.EXE" > C:\kbox\edid.txt"
On the other hand you may consider creation of a BAT in the same folder as DumpEDID.EXE, eg.:
"%~dp0DumpEDID.EXE" > "C:\kbox\edid.txt"