Summary: I am trying to create a batch file that will display my ipconfig, and then pause. I have: @echo off ipconfig pause</code> This seems not to do any...
Summary: Help! I need to create a batch file which finds my IP Address, MAC address, Subnet Mask, Gateway, and DHCP Server and then display them on my screen i...
Summary: Im trying to create a batch file to reset different portions of the TCP/IP stack. But I want to base the errorlevel of each command off of specific k...
Summary: does anyone know how to use a batch to create a batch to the desktop and position it to the bottom right hand of the screen not super important, don't...
Summary: I want to be able to use variables to dos commands from a file. What i need is something like %d%, and when it comes to it in a batch file. It will d...
Summary: I am trying to develop a quick label making program that allows a user to scan in a machine's serial number, MAC Address, and Part number; and then ge...
Summary: To create an interactive batch use the Set /P command (Win NT/2K/XP only) Set /P MyFolder=Enter the Folder Name^> Md %MyFolder% That displays "Enter t...
Summary: Maybe that is possible even by a batch using Set VAR=%VAR:<old date>=<new date>% The key point is the structure of the date and if its value is...
Summary: "on boot i call the autoexec.bat" I don't know of any way to NOT run autoexec.bat at boot. It would help to say what version of DOS you are using. Als...
Summary: Guy is correct, regedit can be run from the command line. I won't bother talking about how to delete a registry key with batch using regedit...It has...
Summary: Hi all you great masters of batch scripting! Let’s suppose I have one file named ‘output_utm.txt’ with 5 tokens in it which first two I need to ...
Summary: its useful of course, but only for like simple and short admin tasks eg moving/copying files. Other than that, like complicated file and string manipu...
Summary: Thanks klint, I find your tip very useful and interesting; I was unaware of that tool, even if, as you stated in another post, better to code batches ...
Summary: Ok so here is my batch file ipconfig > C:\ipconfig.txt call calc.exe It does open calc.exe however there is no ipconfig.txt Ok for some reason it wo...
Summary: Ahh nice one - I see now thanks :) and I have just gone through my entire batch using the following to either run/skip depending on Vista/XP too... RE...
Summary: Is there a way I can SET a variable to a mutiple String not var though? for example: SET myText = COOL then later I want to let the user to change it ...
Summary: MickD, Sorry, but I can't point you to a valuable Web site to learn about batch sacripting. My know-how is the result of a long practical experience s...
Summary: if you want to convert batch to exe to mask out code, don't use batch. use another language tool like C/C++ which compiles the code to exe, Perl/Pytho...
Summary: Hey Ian, working on the same problem myself (using remote management but we have a router, so getting the IP was becoming a pain from an external sour...
Summary: the most common way is to give the proper access rights and permission to the people supposed to run your batch. However if that's an issue, then don'...
Summary: Here you go. Gotta love little tasks like this to keep one up on DOS scripting. Try this script: =====================================================...
Summary: type this in command prompt: start "www.google.com" does it open up the FF browser and load google.com?? there is 2 options i can think at the moment:...
Summary: Greetings! I have a batch file which runs on a schedule via Windows Task Scheduler. It grabs several files on a shared network drive, and copies the...