Link to home
Start Free TrialLog in
Avatar of mac_g
mac_gFlag for Saudi Arabia

asked on

how to close command windows after running below batch script

dear experts,

when I ran the below scripts, command window keep opining.

-------------
path = C:\Program Files\Adobe\Reader 9.0\Reader

AcroRd32.exe

exit

-------------

please advice how to close the window automatically.

 




Avatar of jollyrogertwo
jollyrogertwo

use:

start "" "AcroRd32.exe"

instead of only AcroRd32.exe
Avatar of mac_g

ASKER

Thanks for your quick update.

it is working as expected.

but the PDF instance window appearing on the desktop.

is there any where by we can close / minimize(to sit on taskbar)  too?
ASKER CERTIFIED SOLUTION
Avatar of Steve Knight
Steve Knight
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of mac_g

ASKER

Thanks for your support -