Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Scheduled Task - Mapping Drives

Status
Not open for further replies.

Funkymatt

Programmer
Aug 27, 2002
101
US
All,

Plain and simple our LAN here at work stinks. It drops all drive mappings during the night (maybe because of imaging?). My problem is this:

I need to map the Q drive each morning at 7:00am to ensure that a scheduled job can write output to that LAN directory. Can I automate this using a batch file and then throw that in the scheduler?

Anyone?

Best,
Funky
 
You could make a batch file:
net use x: \\server\share
(net use /? for more info)

then, you could use the at command to run the other command.
at is the command line scheduler.
at /? for help
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top