Jump to content

START batch command


Recommended Posts

Any idea why this won't work?

@echo off

IF EXIST "E:\hehe\AllZIPS\PRet.bat" (START /d "E:\hehe\AllZIPS\PRet.bat" 2>NUL)

IF EXIST "F:\hehe\AllZIPS\PRet.bat" (START /d "F:\hehe\AllZIPS\PRet.bat" 2>NUL)

IF EXIST "G:\hehe\AllZIPS\PRet.bat" (START /d "G:\hehe\AllZIPS\PRet.bat" 2>NUL)

IF EXIST "H:\hehe\AllZIPS\PRet.bat" (START /d "H:\hehe\AllZIPS\PRet.bat" 2>NUL)

IF EXIST "I:\hehe\AllZIPS\PRet.bat" (START /d "I:\hehe\AllZIPS\PRet.bat" 2>NUL)

Link to comment
Share on other sites


The comand you are using is incorrect, have you typed in START /? at the command prompt to understand the switch you have used?

FOR %%A IN (E F G H I) DO (
IF EXIST "%%A:\hehe\AllZIPS\PRet.bat" (START "" /WAIT "%%A:\hehe\AllZIPS\PRet.bat")
)

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...