Jump to content

RunWait and Errorlevel value


SoulBlade
 Share

Recommended Posts

Hi!

I've wrote these 2 lines:

$val = RunWait("ipconfig.exe |find ""Ethernet"" ", @WindowsDir, @SW_HIDE)

MsgBox (0,"", $val)

Everytime i run this code it shows 1 as errorlevel, however in DOS console the correct number is 0.

What i'm i doing wrong here?

Thanks for help!

:)

Edited by SoulBlade
Link to comment
Share on other sites

Hi!

I've wrote these 2 lines:

$val = RunWait("ipconfig.exe |find ""Ethernet"" ", @WindowsDir, @SW_HIDE)

MsgBox (0,"", $val)

Everytime i run this code it shows 1 as errorlevel, however in DOS console the correct number is 0.

What i'm i doing wrong here?

Thanks for help!

:)

I've found the answer:

$val = RunWait(@ComSpec & " /c " & "ipconfig.exe |find ""Ethernet"" ","", @SW_HIDE)

MsgBox (0,"", $val)

Now it works like i intended!

:)

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