autoitxp Posted April 10, 2008 Posted April 10, 2008 (edited) Hi In this i only want to get line that start with \\ other lines text should replace with ""#include <Constants.au3> local $line $foo = Run(@ComSpec & " /c net view ", @SystemDir, @SW_HIDE,2) While 1 $line &= StdoutRead($foo) If @error Then ExitLoop Wend ConsoleWrite($line) Edited April 10, 2008 by autoitxp
Monamo Posted April 10, 2008 Posted April 10, 2008 Hi In this i only want to get line that start with \\ other lines text should replace with "" #include <Constants.au3> local $line $foo = Run(@ComSpec & " /c net view ", @SystemDir, @SW_HIDE,2) While 1 $line &= StdoutRead($foo) If @error Then ExitLoop Wend ConsoleWrite($line) Give this a shot: #include <Constants.au3> Local $line $foo = Run(@ComSpec & " /c net view ", @SystemDir, @SW_HIDE, 2) While 1 $sActiveLine = StdoutRead($foo) If @error Then ExitLoop If StringLeft($sActiveLine, 2) = "\\" Then $line &= StringStripWS($sActiveLine,2) &@CRLF EndIf WEnd ConsoleWrite($line) - MoChr(77)& Chr(97)& Chr(100)& Chr(101)& Chr(32)& Chr(121)& Chr(97)& Chr(32)& Chr(108)& Chr(111)& Chr(111)& Chr(107)-------I've told you 100,000 times not to exaggerate!-------Don't make me hit you with my cigarette hand...-------My scripts:Random Episode Selector, Keyboard MouseMover, CopyPath v2.1, SmartRename for XP,Window Tracer[sup]New![/sup]
spudw2k Posted April 10, 2008 Posted April 10, 2008 Very Nice. I was gonna recommend using an array, but that 's much quicker. Spoiler Things I've Made: Always On Top Tool ◊ AU History ◊ Deck of Cards ◊ HideIt ◊ ICU ◊ Icon Freezer ◊ Ipod Ejector ◊ Junos Configuration Explorer ◊ Link Downloader ◊ MD5 Folder Enumerator ◊ PassGen ◊ Ping Tool ◊ Quick NIC ◊ Read OCR ◊ RemoteIT ◊ SchTasksGui ◊ SpyCam ◊ System Scan Report Tool ◊ System UpTime ◊ Transparency Machine ◊ VMWare ESX Builder Misc Code Snippets: ADODB Example ◊ CheckHover ◊ Detect SafeMode ◊ DynEnumArray ◊ GetNetStatData ◊ HashArray ◊ IsBetweenDates ◊ Local Admins ◊ Make Choice ◊ Recursive File List ◊ Remove Sizebox Style ◊ Retrieve PNPDeviceID ◊ Retrieve SysListView32 Contents ◊ Set IE Homepage ◊ Tickle Expired Password ◊ Transpose Array Projects: Drive Space Usage GUI ◊ LEDkIT ◊ Plasma_kIt ◊ Scan Engine Builder ◊ SpeeDBurner ◊ SubnetCalc Cool Stuff: AutoItObject UDF ◊ Extract Icon From Proc ◊ GuiCtrlFontRotate ◊ Hex Edit Funcs ◊ Run binary ◊ Service_UDF
autoitxp Posted April 10, 2008 Author Posted April 10, 2008 Ya really nice I have code to do same thing in 50 lines you have done it in 20 lines really Awesome!
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