Summary: I want to create a .bat to connect to a Switch Cisco 2900 via HyperTerminal and enable or disable a port. I try but i can“t transfer the password or ...
Summary: Hey, this is a really stupid question with a probably really easy answer, but I've been busting my ass off trying to find out, What REM in bat scrip...
Summary: For WIN 9X only !!! Create a .bat file and write in it the followin lines: echo Shut Down Module rundll32.exe user,exitwindow Save the changes to the ...
Summary: errorlevel in my bat scripts always returns 0. I thought it should return 0 for success and non zero for failure conditions. Can any one tell me what...
Summary: There must be an elegant way to do this, but I have no idea what it is. ::== today7.bat :: lesson learned: /s is needed w %TEMP% :: process only today...
Summary: Hi gang, This seems to work OK in w2k, but is hardwired for a %~tF output of: 14-11-05 21:34 It ignores the time HH:MM and uses only DD MM YY. :: chk4...
Summary: Hello Firt of all, I'm not very used in programming, so sorry if I'm not as specific as I should be. I wrote a Bat-Script on a Windows 2003 Server tha...
Summary: I'd like to write a simple bat file that calls excel and sets the msoautomationsecuritylow so that the opened excel file does not prompt for enabling ...
Summary: %%a, %%b etc are generally used in FOR loops, such as: for %%a in (*.*) do echo %%a You can use any letter you want, it doesn't matter. %1, %2 etc are...
Summary: Im looking for a way to programatically detect the volume NUMBER as shown in diskpart list volume at a windows command prompt. I need to write a bat...
Summary: hi, i want to make a bat file which will search through the text file, and find a particular word, eg bend but in my text file, there is another word ...
Summary: I am looking to call 4 programs from a batch file (1 .bat 3 .exe's) and am using the CALL command, but i do not want to wait for each one to finish be...
Summary: Hi All, I'm a newbie in batch programming. I have a situation needs to run vb application within the batch. what is the command for running this? Shou...
Summary: gorf, please excuse my ignorance, and I don't mean to sound like an ass...but why are there so amny .bat postings? Do people really still use .bat fil...
Summary: M2 Thanks for replying. My preference is to hard wire target folder in bat file. It will always be files in the same folder I want to process. So I re...
Summary: hello, was wondering what commands I would use to echo back to the user how many files were deleted from a specified folder which had been deleted usi...
Summary: Hey I have a .TXT file from windows event logger. There's hundreds of identical lines that all end with a different number. I need a script that wi...
Summary: well the title sais it all... this is what i have and i need to know how to make the bat file select one at random when i run it. might have double po...
Summary: @echo off setLocal EnableDelayedExpansion for /L %%a in (1 1 15) do ( if %%a lss 10 ( set N=0%%a ) else ( set N=%%a ) echo. > file!N!.txt ) =========...
Summary: plz forgive me if this is a repeated question..i saw few other posts in which it had replies saying to use .cpp and call it in .bat file and all... b...
Summary: Hi I had write a batch file coding to ask user to enter y or n to quit the batch program. Is there any way to set the default choice to y means after ...
Summary: I know I can append text to a file using ">>". However, is there a way to write to the beginning of the file, instead of appending the text. I would l...
Summary: I'm trying to have a main batch file recurse through its subdirectories and call any batch files it encounters there. My problem is limiting the scope...
Summary: Hello, I want to generate a text-file that lists all folder and subfolders as: c:\foldername1\subfolder1\ and I want to proceed eacht folder line wit...
Summary: hi, I want to write a batch file which create the folder named as current date at given specified path. Give me idea how I can write code in batch fil...