How to Start a program at low priority?

  • Thread starter Thread starter starrynight
  • Start date Start date
S

starrynight

So far I've tried creating a single line batch file RUNWEATHER.BAT
with this line:

%comspec% /c start /LOW "C:\Program Files\The Weather Channel FW\Desktop
Weather\DesktopWeather.exe"

but that didn't work. Then I tried this line:

START /LOW "C:\Program Files\The Weather Channel FW\Desktop Weather
\DesktopWeather.exe"

but that didn't work either. Any other ideas?
 
Hi,

Try to use short path and throw away quotation marks:
START /LOW C:\PROGRA~1\THEWEA~1\DESKTO~1\DESKTO~1.EXE

Marcin Domaslawski
 
Back
Top