How to Start a program at low priority?

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?
 
M

Marcin Domaslawski

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top