A Windows XP help forum. PCbanter

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » PCbanter forum » Microsoft Windows XP » General XP issues or comments
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

Mapped Network Drives are Disconnected at Startup



 
 
Thread Tools Display Modes
  #1  
Old July 14th 06, 11:03 PM posted to microsoft.public.windowsxp.general
external usenet poster
 
Posts: n/a
Default Mapped Network Drives are Disconnected at Startup

Hi All:

I have a four node peer-to-peer network with all machines running WIN XP (3
Proand 1 Home). There is no internet connection on this network by design.
The root of c: \ is shared on each machine and (accounting) applications are
served from various machines. All machines boot directly to the desktop.
Problem is some applications fail to start because the mapped network drives
are initially disconnected. Using windows explorer to expand and then
contract these mapped drives will reconnect them (remove the red X's), but
this is a tedious task for a computer novice.

I googled this problem and seem to think I saw a Microsoft response that
Windows is acting as designed. I seem to remember earlier versions of
windows had an option to connect at logon or to connect at first use. Has
that option not been carried forward to WinXP? Does anyone have more
insight into this problem? Does anyone have a workaround -- perhaps a
program that does what explorer does to force the connections perhaps in a
windows startup script?

Jim Snively


Ads
  #2  
Old July 15th 06, 01:49 AM posted to microsoft.public.windowsxp.general
external usenet poster
 
Posts: n/a
Default Mapped Network Drives are Disconnected at Startup


"Jim Snively" wrote in message
...
Hi All:

I have a four node peer-to-peer network with all machines running WIN XP

(3
Proand 1 Home). There is no internet connection on this network by

design.
The root of c: \ is shared on each machine and (accounting) applications

are
served from various machines. All machines boot directly to the desktop.
Problem is some applications fail to start because the mapped network

drives
are initially disconnected. Using windows explorer to expand and then
contract these mapped drives will reconnect them (remove the red X's), but
this is a tedious task for a computer novice.

I googled this problem and seem to think I saw a Microsoft response that
Windows is acting as designed. I seem to remember earlier versions of
windows had an option to connect at logon or to connect at first use. Has
that option not been carried forward to WinXP? Does anyone have more
insight into this problem? Does anyone have a workaround -- perhaps a
program that does what explorer does to force the connections perhaps in a
windows startup script?

Jim Snively


Instead of relying on remembered connections, you should seize
control of mapped drives and create this file:

c:\documents and settings\all users\start menu\programs\startup\netlogon.bat
================================================== =
(The file starts with the line "@echo off")
@echo off
net use /persistent:no
net use * /del /y
net use S: \\SomeMachine\C
net use T: \\SomeOtherMachine\C
net use
pause

This file will run each time anyone logs on. Remove the "pause"
command when you're happy with the result.


  #3  
Old July 17th 06, 02:36 AM posted to microsoft.public.windowsxp.general
external usenet poster
 
Posts: n/a
Default Mapped Network Drives are Disconnected at Startup

I have a similar problem. We use w/xp Home to map drives to a server in a
small 'workgroup', and one of the pc's drops the mapped drives when the pc is
started up or restarted. You have to manually remap it. This may have
happened to this pc during a power surge, that's when it started, however the
NIC seems OK, it connect to the server, internet, etc, it just doesn't
remember how to stay mapped.

In the 'net use' formula you used is "somemachine" and "someothermachine"
your indication of the pc or server name that you want to map a network drive
to? Is this a batch file ? If so, how do I create and impliment it?

"Pegasus (MVP)" wrote:


"Jim Snively" wrote in message
...
Hi All:

I have a four node peer-to-peer network with all machines running WIN XP

(3
Proand 1 Home). There is no internet connection on this network by

design.
The root of c: \ is shared on each machine and (accounting) applications

are
served from various machines. All machines boot directly to the desktop.
Problem is some applications fail to start because the mapped network

drives
are initially disconnected. Using windows explorer to expand and then
contract these mapped drives will reconnect them (remove the red X's), but
this is a tedious task for a computer novice.

I googled this problem and seem to think I saw a Microsoft response that
Windows is acting as designed. I seem to remember earlier versions of
windows had an option to connect at logon or to connect at first use. Has
that option not been carried forward to WinXP? Does anyone have more
insight into this problem? Does anyone have a workaround -- perhaps a
program that does what explorer does to force the connections perhaps in a
windows startup script?

Jim Snively


Instead of relying on remembered connections, you should seize
control of mapped drives and create this file:

c:\documents and settings\all users\start menu\programs\startup\netlogon.bat
================================================== =
(The file starts with the line "@echo off")
@echo off
net use /persistent:no
net use * /del /y
net use S: \\SomeMachine\C
net use T: \\SomeOtherMachine\C
net use
pause

This file will run each time anyone logs on. Remove the "pause"
command when you're happy with the result.



  #4  
Old July 17th 06, 02:55 AM posted to microsoft.public.windowsxp.general
external usenet poster
 
Posts: n/a
Default Mapped Network Drives are Disconnected at Startup

Click Start / Run, then paste the following single long line into the
window:
notepad "c:\documents and settings\all users\start
menu\programs\startup\netlogon.bat"

@echo off
net use /persistent:no
net use * /del /y
net use S: \\SomeMachine\SomeShare
net use T: \\SomeOtherMachine\SomeOtherShare
net use
pause

Make sure to use proper names for "Some..." in the
code above.

"db" wrote in message
...
I have a similar problem. We use w/xp Home to map drives to a server in a
small 'workgroup', and one of the pc's drops the mapped drives when the pc

is
started up or restarted. You have to manually remap it. This may have
happened to this pc during a power surge, that's when it started, however

the
NIC seems OK, it connect to the server, internet, etc, it just doesn't
remember how to stay mapped.

In the 'net use' formula you used is "somemachine" and "someothermachine"
your indication of the pc or server name that you want to map a network

drive
to? Is this a batch file ? If so, how do I create and impliment it?

"Pegasus (MVP)" wrote:


"Jim Snively" wrote in message
...
Hi All:

I have a four node peer-to-peer network with all machines running WIN

XP
(3
Proand 1 Home). There is no internet connection on this network by

design.
The root of c: \ is shared on each machine and (accounting)

applications
are
served from various machines. All machines boot directly to the

desktop.
Problem is some applications fail to start because the mapped network

drives
are initially disconnected. Using windows explorer to expand and then
contract these mapped drives will reconnect them (remove the red X's),

but
this is a tedious task for a computer novice.

I googled this problem and seem to think I saw a Microsoft response

that
Windows is acting as designed. I seem to remember earlier versions of
windows had an option to connect at logon or to connect at first use.

Has
that option not been carried forward to WinXP? Does anyone have more
insight into this problem? Does anyone have a workaround -- perhaps a
program that does what explorer does to force the connections perhaps

in a
windows startup script?

Jim Snively


Instead of relying on remembered connections, you should seize
control of mapped drives and create this file:

c:\documents and settings\all users\start

menu\programs\startup\netlogon.bat
================================================== =
(The file starts with the line "@echo off")
@echo off
net use /persistent:no
net use * /del /y
net use S: \\SomeMachine\C
net use T: \\SomeOtherMachine\C
net use
pause

This file will run each time anyone logs on. Remove the "pause"
command when you're happy with the result.





 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off

Similar Threads
Thread Thread Starter Forum Replies Last Post
HP folder opens at start up Punky Windows XP Help and Support 6 October 2nd 07 02:45 AM
folders opening on Start speedy Windows XP Help and Support 9 May 3rd 06 08:08 AM
Outlook Express unwanted startup Famine Windows XP Help and Support 6 April 28th 05 04:14 PM
Task Manager Hell!!!!! McFly Performance and Maintainance of XP 2 October 15th 04 04:04 PM
Firewall won't stay enabled jay Security and Administration with Windows XP 30 July 26th 04 01:04 PM






All times are GMT +1. The time now is 12:26 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 PCbanter.
The comments are property of their posters.