It seems like you're trying to create a batch script to temporarily close Explorer while running an older version of Photoshop and then reopen it once the program is closed. Your batch script appears to be mostly correct, but there are a couple of corrections needed: 1. Your
start
command for launching Photoshop should have the correct path to the executable, which in this case is
Photoshp.exe
and not
Photoshp 5.5\Photoshp.exe
. 2. The folder path
Software
should be in lowercase in your script. Here is the corrected version of your batch script:
Code:
@echo off TASKKILL /F /IM explorer.exe start /w C:\Software\Photoshop 5.5\Photoshp.exe start explorer.exe
This script will close Explorer, launch Photoshop 5.5, and...