Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Click here to start participating now! Also, check out the New User Guide.
Deleting a batch file
Name: Edward Baker Date: July 1, 2002 at 06:42:11 Pacific
Comment:
I am not very familiar with batch files, however I need to know how to delete a batch file which starts up a service called asset insight. I'm sure this is a very simple question, but it would be nice to get a simple answer!
Name: fritz Date: July 1, 2002 at 06:57:09 Pacific
Reply:
A batch file is a simple text file of commands with a .bat extension. From explorer tools, find file, enter *.bat this will search for all files with the .bat extension. Choose the file you are looking for and delete or preferably rename. Aloha
0
Response Number 2
Name: Peter Date: July 1, 2002 at 15:15:51 Pacific
Reply:
If the solution from fritz doesn't work you may find files with a .cmd extension. This is the equivalent in NT of the .bat file
Summary: If you are someone who has any experience with MS-DOS, you can do just about any command that you could do in a Dos command prompt in a batch file, such as changing directories, renaming, deleting, an...
Summary: I have created some maintenance batch files (ie. clean up tmp files, reboot server, etc.) that are scheduled to run on an NT server. I would like them to send an email ( SMTP )reporting there progress...
Summary: I am trying to "kill" a process like in UNIX, but I don't know how it's done in NT outside of the GUI "Task Manager". My goal is to create a batch file that will do this. ...