w2k scheduled tasks

  • Thread starter Thread starter Spiike
  • Start date Start date
S

Spiike

I need to delete a document from a folder on a daily basis
and have been advised that I need to write an application
in scheduled tasks but I haven't a clue how to do it. Any
help would be greatly appreciated.

Spiike
 
I need to delete a document from a folder on a daily basis
and have been advised that I need to write an application
in scheduled tasks but I haven't a clue how to do it. Any
help would be greatly appreciated.

Spiike


Assume the document is at
"c:\folder1\Folder2\document.doc"

Create a dd.bat file in Notepad that contains:

@echo off
del /q "c:\folder1\Folder2\document.doc"

and save it as "c:\folder1\Folder2\dd.bat

Start / programs / Accessories / System Tools / Scheduled Tasks

Schedule the dd.bat file.


Jerold Schulman
Windows: General MVP
JSI, Inc.
http://www.jsiinc.com
 
Many thanks Jerold.

Spiike
-----Original Message-----



Assume the document is at
"c:\folder1\Folder2\document.doc"

Create a dd.bat file in Notepad that contains:

@echo off
del /q "c:\folder1\Folder2\document.doc"

and save it as "c:\folder1\Folder2\dd.bat

Start / programs / Accessories / System Tools / Scheduled Tasks

Schedule the dd.bat file.


Jerold Schulman
Windows: General MVP
JSI, Inc.
http://www.jsiinc.com
.
 
Back
Top