Jump to content

on error exit


Recommended Posts

Hello all,

I am writing a script to change all of the local admin passwords on all our workstations. It's just a quick 3 liner:

RunAsSet("admin", @LogonDomain, "password")

RunWait(@ComSpec & " /c " & 'net users localAdmin changed ', "",@SW_MINIMIZE)

RunAsSet()

If the RunAsSet admin password is incorrect, I get a msgbox stating the error, and the admin name, password, etc...

My question is: If I get an error on my script, how can I make it just exit without the msgbox popping up?

Thank you,

Mike

Link to comment
Share on other sites

  • Developers

Add this at the top of your script:

Opt("RunErrorsFatal", 0)       ;1=fatal, 0=silent set @error

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.
  :)

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
 Share

  • Recently Browsing   0 members

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