Summary: I need to automate an ftp file trasfer. Upon download of the file i need to add the date as a suffix to the filename i.e. text.txt becomes text051007....
Summary: On my home network I have 4 Windows boxes. 3 are downstairs and 1 is in my room. All of them are pretty lax on security since they have no internet c...
Summary: having a problem with dcraw and a batch script on xp home. dcraw converts proprietary format raw photos to something more generally useful. script run...
Summary: Hi there, could anyone help me how to create a batch script to do the following? I want to know in the homedirectory of the users which user has more ...
Summary: I've tryed searching all over the google but can not find it. Could someone please write me a batch script to change my desktop wallpaper when ran. i....
Summary: Hi, I am new to batch scripting and need some help from all your genius' out there. I want to write a script that will delete files older than 14 days...
Summary: Hello everyone! :) Excellent forum you guys have here. I am trying to write a batch file here for work so I can check to see which PCs on my work netw...
Summary: Try This .. It Will Skip The Latest 30 Folders And Delete The Rest .. It Is In Debug Mode ... Remove The Echo from line 5 after "do" to actually make ...
Summary: Try This :: --- BATCH SCRIPT START --- @echo off setlocal set source=c:\windows set destdir=c:\ pushd "%source%" for /f "tokens=*" %%a in ('dir autoe...
Summary: Hi , I have to delete files from a network drive..(which is accessible from my system)via a batch script, that are older than 3 days...the file name i...
Summary: Hi all I was asked to write this batch file to maintain certain folder of its files. But I'm not very experienced in scripting, there might be differe...
Summary: I do a bit of encoding and am trying to automate some parts. I have to create an avs script file for the encoding process and would like to be able to...
Summary: I know nothing about adsecurity.dll, will it register properly using regsvr32? If so it should be simple to use a batch script. regsvr32 /s Adssecurit...
Summary: Hello, I'm new to batch scripts. I'm trying to copy a local folder to a folder on a remote PC. Is there an easy way to do this with a script? ...
Summary: thanks for the "wget" info. i found a direct link to download the file in zip format. now i have a script to download the zip file and extract it, an...
Summary: Hi Razor. Thanks for the reply. Since I am a newborn in batch scripting, VB script almost sounds like swearing to me in another language... Now if y...
Summary: I need a batch file to loop through a list of jpgs in a folder, & move them to folders created based on their file names in the following convention: ...
Summary: @echo off set SrcFolder=C:\test set DstFolder=C:\test1 pushd "%SrcFolder%" for %%a in (*.txt) do ( for /F "delims=" %%h in ('type "%%a"') do ( ...
Summary: I have two Vista computers who need reconnect to mapped drives on startup. The problem is that sometimes the server connection is not ready in time fo...
Summary: Hi, I need a batch script to copy the today modified sub-folders of a folder to a new folder. Ex: Folder "f:/test1" is having total 5 sub-folders and...
Summary: I have a few hundred files, each with a different name (e.g. 012345.htm, 987654.htm, etc...). Each file has to have the file name in it. Is there a ba...
Summary: How can I count a specific character in a line using a batch file Ex: if I pass a line "c:\dir1\dir2\dir3" to the batch file to count "\" then it shou...
Summary: Hi, I'm trying to figure out the script to delete the '?' character that is randomly appearing in numerous places in a txt file database I have. Any h...
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: Why to code a C++ program when a straightforward batch script suffices? @echo off echo.product,text,price,qty> header.csv type file.csv >> header.csv...