SoulBlade Posted September 14, 2007 Posted September 14, 2007 (edited) 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 September 14, 2007 by SoulBlade
SoulBlade Posted September 14, 2007 Author Posted September 14, 2007 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!
weaponx Posted September 14, 2007 Posted September 14, 2007 $val = RunWait(@ComSpec & " /c ipconfig.exe |find ""Ethernet"" ", @WindowsDir, @SW_HIDE) MsgBox (0,"", $val)
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