Doppio Posted July 12, 2007 Posted July 12, 2007 Hi everyone, I copied a script that gets the mac address from a wireless card, and I need to remove the columns from the Output. Can someone help? $wbemFlagReturnImmediately = 0x10 $wbemFlagForwardOnly = 0x20 $colItems = "" $strComputer = "localhost" $Output="" $Output = $Output & "Computer: " & $strComputer & @CRLF $Output = $Output & "==========================================" & @CRLF $objWMIService = ObjGet("winmgmts:\\" & $strComputer & "\root\CIMV2") $colItems = $objWMIService.ExecQuery("SELECT * FROM Win32_NetworkAdapterConfiguration", "WQL", _ $wbemFlagReturnImmediately + $wbemFlagForwardOnly) If IsObj($colItems) then For $objItem In $colItems $Output = $Output & "MACAddress: " & $objItem.MACAddress & @CRLF ; if Msgbox(1,"WMI Output",$Output) = 2 then ExitLoop ConsoleWrite($Output) ConsoleWrite(@CR&@CR) ;$Output="" Next Else Msgbox(0,"WMI Output","No WMI Objects Found for class: " & "Win32_NetworkAdapterConfiguration" ) Endif Output: MACAddress: 00:11:E5:19:56:5A Needed Output MACAddress: 0011E519565A Thanks.
tAKTelapis Posted July 12, 2007 Posted July 12, 2007 Try $Mac = String("00:11:E5:19:56:5A") $Mac = StringReplace($Mac, ":", "") msgbox(0, "", $Mac)
Doppio Posted July 12, 2007 Author Posted July 12, 2007 Great!, but can you show me how to apply to the code? Thanks.
Moderators SmOke_N Posted July 12, 2007 Moderators Posted July 12, 2007 Great!, but can you show me how to apply to the code? Thanks.StringReplace($objItem.MACAddress, ':', '') Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer.
Doppio Posted July 12, 2007 Author Posted July 12, 2007 StringReplace($objItem.MACAddress, ':', '') Thanks guys!!
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