Hi Steffen, I meant: He probably knows more. It was a compliment, you have 2700 post! My English is not good, and sometimes I use Google translate: I'm learning German, I hope to be better with your lenguaje. Viele Grüße!
Hi, Note Steffen that perhaps Hackoo wanted to say the folder as a variable. I correct my words: In Vista exist Videos folder, sorry: . In my XP Home My Videos registry key is empty, perhaps for Home edition. Now remember that I have the same problem with "startup" folder. One solution is ...
Hi Antonio, I have joined your code with this other and seem that work well. I'll still try it anyway. This is the result: @echo off title script para footprinting cls rem setting file_1 because the delayed expansion set file_1=%1 setlocal enabledelayedexpansion set i=0 (for /f "tokens=2 delims...
Hola Antonio, I'm testing your code but I have a problem now. If I set a variable that have more of 101 domain names your code don't work. My strings need to support more than 5000 elements generally, and split in x elements (100 I suppose). I was modifying your code trying to solve that, but I can'...
Hi, I haven't MS Windows Seven, but I have a machine with XP and a virtual system with Vista. In the last two doesn't exist "Videos" folder. Maybe started to be implemented in 7. In 8 and 8.1 it is likely to be on the same path as MS Windows 10, that is where I write to you. I think that y...
Hi Aacini!, In first place sorry for haven't read your previous post, . Respect of your actual answer: . You are great in this! The code works perfect, with my actual skills I would never have come to that, so thank you very much. If I needed to do it some modifications first try (to learn...) and t...
Hi, first of all sorry for the double post, but since I did not see answers I decided to do this. I have made some progress. The code is this (the call command and other "adjuncts" that do the code dirty are because this: http://www.dostips.com/forum/viewtopic.php?t=3160 ): @echo off set s...
Hi, I'm writing a code to do massive dns queries, but my tool to do it can't handle my full lists of domains. I thinks that my tool cant manage 100 quiries aprox. How can I do to split my full lists in many variables to do many quiries? The begin of my code is this: @echo off title script para footp...
Thanks Steffen, always helping me. When I can I will contribute to the forum. I made some minor modifications, but your answer is the correct and very usefull. I had not thought that alternative. Regards!
Hi, I wrote this code: @echo off title version detection cls for /f "tokens=*" %%n in ('ver ^| findstr /r /c:"[ ]6"') do set ver_1="%%n" for /f "tokens=*" %%n in ('ver ^| findstr /r /c:"[ ]10"') do set ver_2="%%n" if /i [%ver_1%]==[] (echo ...
Thanks Dave, your solution works!, but with a few words in keywords.txt. My keywords.txt is so big, and findstr in this mode take a eternity (or perhaps something is wrong). Maybe the best is back to the old method, unless you or someone has a solution... We see. Thanks.
Hello, I'm running a script to find some words, i. e. amor, man, pero, etc., but when I run it find this words even as part as other more long: amor=cl amor , man=work man , pero=pero nista , etc. How can I find with findstr this words (amor, man, pero) but isolated, the bordering characters no matt...
Hi, I have an script that requiere parameters to complete your function. Some like, echo %1 and then, c:\>script.bat Maradona! but more complex. This is simple, the question is that I need to compile to exe my script to hide the content, and when I do this I can't no more pass it the parameters. c:\...