Search found 4 matches
- 07 Sep 2009 10:14
- Forum: DOS Batch Forum
- Topic: Recover a string result from executable and set a variable
- Replies: 4
- Views: 6771
Ohhh, Yes it works
avery larry, I did my homework thanks men with the help for other people I have this code @echo off SET count=0 FOR /f "tokens=*" %%G IN ('{your command}') DO (call :do_sums "%%G") Echo %line_str% pause GOTO :eof :do_sums set /a count+=1 Rem ****compare ...
- 04 Sep 2009 10:59
- Forum: DOS Batch Forum
- Topic: Recover a string result from executable and set a variable
- Replies: 4
- Views: 6771
Yeah its works......
Yeah Men, I luv u!!!!!!! i got my data with: example ----------------- FOR /F "tokens=6*" %%A IN ('Net time \\{ip any computer}') DO set my_var=%%A %%B Echo %my_var% ----------------- today this resolved my problem but if the execute had a result with many lines you can see only the last l...
- 03 Sep 2009 17:35
- Forum: DOS Batch Forum
- Topic: Killing a process
- Replies: 4
- Views: 5998
Try try try
did you try ?????
taskkill /F /IM explorer.exe
taskkill /F /IM explorer.exe
- 03 Sep 2009 17:25
- Forum: DOS Batch Forum
- Topic: Recover a string result from executable and set a variable
- Replies: 4
- Views: 6771
Recover a string result from executable and set a variable
some executable, returns a string. Any idea how to set this string in to variable?. or recover string from terminal window??
I execute
Net time \\{ip for any computer}
Return:
Current time at \\{ip for any computer} is {date and time}
and set Date and time a variable this no promblem
I execute
Net time \\{ip for any computer}
Return:
Current time at \\{ip for any computer} is {date and time}
and set Date and time a variable this no promblem