Summary: Hi, I have just run it on Vista Ultimate SP1, and it runs & looks ok. but unfortunately haven't had time to test it other than look & feel. I'm amazed...
Summary: Trying to rename multiple existing files to append their create date/time (in military time format) to the filename. Current code: FOR %%V IN (SELT*.E...
Summary: Okay test to see if this will work for you. Instead of using the basename, I changed it to split the filename by using the .'s as the delimiter and s...
Summary: First of all, the easiest thing to do is set your warning level to maximum (/W4) to detect potential problems at compile time. Then for detecting memo...
Summary: I was trying to see if there is a method to count the number of files in a zip archive with out extracting it. I had a look at winzip's command line i...
Summary: Hello :-)! I'd like to create application for mobile phone (maximum price of phone would be about 220USD, it is for Central Europe; I will be testing ...
Summary: this might work, i haven't tried it yet. two files are required however, even though it is just testing one file, if you want to test each line of the...
Summary: Thanks for everything Judago. No need to spend more time on this. This process will not be done often and this automation is already a HUGE bonus as ...
Summary: if your system is running task scheduler (schtasks.exe), I would use "at" command to run your batchfile, and put a 15-minute timer advance into the ba...
Summary: something like this?: 'write a batchfile: myb="\mydir\mybat.bat" testing="inputvar#1" open myb for output as #1 print #1, "echo %1 %time%" print #1, "...
Summary: This is what I have now, but I can`t make it read doubles. How should I use "ifstream::operator<<(double)"? I tried several times, but does not ...
Summary: Hi, I'm pretty new to batch program, but I've been asked at work to create a batch that renames one file, then renames another file to the name of the...
Summary: hello experts, i need your help to rename a folder in batch script with time and date for example MyFile__22_05_2009__6_20 ren C:\amab_fin\temphold M...
Summary: Ok, I only tested the first one, which worked great. I need to perform the same task in another section of the batch. My string this time is: HKLM...
Summary: Hello! For security I should not to use any temporary files except single .exe. DLLs should be embedded in exe file. Would you, please, advice me how ...
Summary: How do you incorporate that into the MOVE command though? I tried if '%repfs%'==MOVE C:\Documents and Settings\User\Desktop\batch test\ "C:\Document...
Summary: M2, I modified his html to make it valid. I also set up a small test file of my own with 3 records. I do not get Counts back from your bat file??? I g...
Summary: Hi, Am tryin to develop a dos based application for displaying time in the taskbar when the window is minimized. The code goes like this. @echo off :t...
Summary: what are you feediing it for "directory" : network drive as in H:\test"? or \\computername\\test etc. I use Vb, but haven't yet used it much for net...
Summary: ty, but im sorry if i sound stupid, but its not adding up like if i click yes it will be yes1 no if i click yes again it will still be yes1 no if i cl...
Summary: Hi I have designed an application which creates an event log of the system. I want the application to startup every time the OS boots up. I need some...
Summary: I'm trying to code a script that will search through a folder and subfolders and delete by filname rather than extension. Dim objFSO, objFolder, objF...
Summary: use a good tool for string parsing. if you can download gawk for windows c:\test> gawk "BEGIN{OFS=\"|\"}{$1=$1}1" file GNU win32 packages | Gawk...
Summary: the foll. might work (not complete, just working segment) setlocal enableDelayedExpansion for /f "tokens=*, delims=" in ('dir /s /tw') do ( set c=%%a ...
Summary: Hiya I'm trying to create a script to run on a network drive. We want to see extended properties of folder and files on the drive but i'm having som...