Search found 5 matches

by palegathon
02 Dec 2016 16:32
Forum: DOS Batch Forum
Topic: Batch File to Run .exe and set priority
Replies: 9
Views: 26208

Re: Batch File to Run .exe and set priority

Thank you all so much for your help, you guys are great! may prw.exe has its own libraries in the home folder?, try @echo ON start /realtime "" cmd /c "pushd "C:\Program Files (x86)\Mckesson\Practice Partner\" & "prw.exe" & popd" That is overkill. Just...
by palegathon
02 Dec 2016 16:29
Forum: DOS Batch Forum
Topic: Batch File to Run .exe and set priority
Replies: 9
Views: 26208

Re: Batch File to Run .exe and set priority

may prw.exe has its own libraries in the home folder?, try @echo ON start /realtime "" cmd /c "pushd "C:\Program Files (x86)\Mckesson\Practice Partner\" & "prw.exe" & popd" That is overkill. Just use the /D option with the START command. Should be abl...
by palegathon
02 Dec 2016 14:36
Forum: DOS Batch Forum
Topic: Batch File to Run .exe and set priority
Replies: 9
Views: 26208

Re: Batch File to Run .exe and set priority

Thank you so much for all this additional information it will help me in defining additional things to it after I get it working. So The overall goal is I just want to open an .exe application with a batch file simply. I can manually open the folder C:\Program Files (x86)\Mckesson\Practice Partner\p...
by palegathon
02 Dec 2016 13:33
Forum: DOS Batch Forum
Topic: Batch File to Run .exe and set priority
Replies: 9
Views: 26208

Re: Batch File to Run .exe and set priority

@echo ON start /B "" cmd /c "C:\Program Files (x86)\Mckesson\Practice Partner\prw.exe" wmic process where name="prw.exe" CALL setpriority "realtime" Still same result. So to help on the confusion with the Z: drive, Its always mapped at startup. The application...
by palegathon
02 Dec 2016 00:21
Forum: DOS Batch Forum
Topic: Batch File to Run .exe and set priority
Replies: 9
Views: 26208

Batch File to Run .exe and set priority

Objective: Open the prw.exe process then apply "High priority or "realtime" to the application.exe Windows 7 Professional 64 bit Program Utilizes Drive Z: for a network path to run, it must patch an update first before the program will execute. Batch File: "C:\Program Files (x86)...