Summary: Hi, I need help with a batch file, i need it to delete all folders, subfolders and files from C:\Documents and Settings except for four folders named:...
Summary: I need help with a batch file, i need it to delete all folders, subfolders and files from C:\Documents and Settings except for five folders named: Adm...
Summary: Hey! I need batch file that removes all subdirectories from directory. Example: I have directory on my desktop named N152. Its including directorys G...
Summary: We have a directory c:\temp that act as storage for a directory monitor for printing before it moves files along. Within c:\temp a unique folder name ...
Summary: I need a batch file that deletes a folder automatically whenever something is added to it. I want to do this because I scanned my computer and it foun...
Summary: I am trying to write a small batch file to delete a type of file (*.ptl) in a directory and all subdirectories, here is what I have: del D:\directoryn...
Summary: I have a problem. I am trying to write a batch file which will delete a 0 KB .SPL file and an associated .SHD file, which is not 0 KB. Each .SHD fil...
Summary: Hi I am trying to get a batch file to delete files which has dates older than 7 days so far I have @ECHO OFF CLS FOR /R C:\User_share %%FILE IN (*.*) ...
Summary: I am trying to create a batch file to delete mulitple folders within a folder. The folders pre-generate when a program is ran. The folders names are...
Summary: I am using this batch file to delete profiles @echo off delprof /d:15 /q /i /c:\\COM0006 delprof /d:15 /q /i /c:\\COM0009 delprof /d:15 /q /i /c:\\COM...
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: Wow! Thatnks for all the info guys!!! I'm learning a great deal here :) The onlt reason I wanted this batch file to clean up the folders was because o...
Summary: I have share on a server in which i have files being saved to. I need to purge this folder every so often of files that are no older then 2 days. I ha...
Summary: Relates to an ealier post with title: Batch File deleting files by date? HAD TO CHANGE FOLLOWING TO GET WORKING 1. In Line: for /f "tokens=2" %%i in (...
Summary: I have 3000+ folders with unique names, each with several common subfolders within them. What I would like is a batch file that could look in a partic...
Summary: Hi, I'm working on an online project which involves over 50,000 images all identified by unique numbers. When adding updates, I run a query in my data...
Summary: I need help with a batch script that will do the following: Check to see if any folders or files exist in C:\Temp and if it does delete all folder in ...
Summary: I would like a batch file that will delete sub-directories and the files contained in them, but it should keep the most recent 10 directories. example...
Summary: I need to create a batch file that will compare files and folders on a server to their counter parts on a workstation and delete anything older than a...
Summary: I am looking for some help in writing a batch script. What I want to do is suppose that I have a text file with contents as: 1)a 2)b 3)c 4)d Now in so...
Summary: I have a batch file that cleans all files out of subfolders and it works fine, but for each folder I'm deleting the contents of, it stops and asks if ...
Summary: I have the following batch file.. what i need it to do is delete all folders contained in SCANSSN as well as files within those folders.. for some rea...
Summary: Hi all! Here is my problem: I'm trying to create a batch file that needs to needs to record the login and logoff times of users. This needs to be reco...
Summary: This is an example of a batch file I am using right now. I need it to delete subfolders in the folders. It already deletes everything else, just not...