Summary: I’m just getting started with VB Script and I need to figure out how to compare two text files for duplicate numbers and then echo those duplicates....
Summary: So here is what I'm thinking, first would you be opposed to using VBScript? (If you can run a batch, you can run a VBSCript) Then I'm wondering if yo...
Summary: this just goes through the tree, like "dir /s" and lists all files. maybe you can adapt/use it, i'm not sure. i haven't tried it over network drives y...
Summary: Hey everybody im looking for a vbs script to open a popup message, and when a certain button is clicked it will tell the batch file to do somethin...
Summary: bscript, might work... you will know what needs to be adapted to your situation. dim fso Path1=".\" Set fso = createobject("Scripting.FileSystemObjec...
Summary: HI All, I want to write a batch script which will Unzip all the .Zip files from a folder A(inside the Folder A, there will be more than 1 .Zip files) ...
Summary: maybe try using "success"/"fail" as the delimiters? then test for value not null and if not null, increment a counter. something like: set delayed exp...
Summary: So if you only need it to check and loop back to the CopyFile label for one file, just use this for the above code for the one file specifically and t...
Summary: Hello wrs I can help you get what you want. But i'm afraid it's not a Batch file. I tried doing it in a batch file but failed. But it is possible with...
Summary: Razor, yeh you're right, i forget about the return-value version of api's is inside (). my bad and apologies for my dumbhead. Ooooh, i see, i think, "...
Summary: This was the resolution so it is possible to do. Public Class TourNTInstallFonts Private Declare Function AddFontResource Lib "gdi32" Alias "Add...
Summary: Hi, Text is at the specific line (eg. line no. 2), and copy to the spcific line (eg. line no. 4). for example: file A contain: 1.Hello 2.My ID is "ST...
Summary: Thanks M2! I originally used a variable for the file path, but the loop didn't work so I thought I would put the whole thing in for testing purposes. ...
Summary: the problem with /b is that it does not give me the dates. I need the dates so that I can compare them with the current date and only delete files tha...
Summary: Hi I need to delete the first 27 lines of a file then write in a line on top; I have the script which do exactly the same but since the file I need to...
Summary: Hi, Thanks for the Script,but we don't have PKUNZIp installed on ur machine so I tried it with UNZIP but i am not able to unzip the directory structur...
Summary: HI , I have to copy some files from a folder which has a nested folder structure i.e the main parent folder will have some child folders and inside th...
Summary: What I need to do is search one ROOT DIR (FTP) and find all files listed in any DIR with a filter for MODIFIED DATE > 9/1/2008. I thought to use a bat...
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: Thanks klint I had tried piping it to NULL with out any luck but once again your hint got it working :-) I was thinking of now building on this scrip...
Summary: Hi- I'm a programming newbie and could use a hint on how to get started with reformatting this file. I use AWK a lot and have done a bit of simple P...
Summary: hi all, m new to this site and read some others post regarding coping,deleting etc using batch files. I would like to know is it possible to copy mult...
Summary: The easiest way I can think to accomplish what you want is to use a VBScript, if you can run a batch file you can run a VBScript. All you have to do ...