bobheart Posted June 17, 2004 Posted June 17, 2004 How can I kill the cmd after it has run the dos box ? And when I add the hide code i get a error I must be missing a " or spmething ? Run(@ComSpec & " /k runfile c:\program files"",@SW_HIDE)
Developers Jos Posted June 17, 2004 Developers Posted June 17, 2004 How can I kill the cmd after it has run the dos box ? And when I add the hide code i get a error I must be missing a " or spmething ? Run(@ComSpec & " /k runfile c:\program files"",@SW_HIDE)/k make the cmd remain open after the command runfile completes. /c closes cmd after the command runfile completes. so /k in combination with @SW_HIde is not reeally logical, you can use the /k parameter when you want to see the result of the command you execute. SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past.
bobheart Posted June 17, 2004 Author Posted June 17, 2004 Thank you , I was wonding why I couldn't kill it . lol
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now