PC Review


Reply
Thread Tools Rate Thread

boot problem with mapped drives

 
 
Lorne
Guest
Posts: n/a
 
      1st Aug 2008
I have a W2000 SP4 machine on a peer to peer network, connected by wireless
card. there are 2 mapped drives to another machine.

When turned on the boot stops with a message unable to connect to a netwrork
drive, do you want to connect next time? I say yes and it boots OK, then I
execute a batch file that connects to the other machine (there is a
password) and all is fine.

However it is very annoying that the boot stops and will only complete with
manual intervention. The problem is that the wireless card is not
initialised early enough so when Windows tries to connect during boot the
network is not available. so I ask:

1. Is it possible to change the boot order so the network connections are
not made until after the wireless card is enabled? if not,
2. Is it possible to get windows to automatically select option to continue
the boot and keep the mapped drives avalable for the future? if not
3. If I creat a batch file with a line like "NET USE Z:
\\netcomputer\myfolder" and put it in the users stratup folder will it
execute after the wireless card is enabled and how do I automatically delete
the map when the user closes down so the unwanted message that it can't
connect does not show up.


 
Reply With Quote
 
 
 
 
Pegasus \(MVP\)
Guest
Posts: n/a
 
      1st Aug 2008

"Lorne" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
>I have a W2000 SP4 machine on a peer to peer network, connected by wireless
>card. there are 2 mapped drives to another machine.
>
> When turned on the boot stops with a message unable to connect to a
> netwrork drive, do you want to connect next time? I say yes and it boots
> OK, then I execute a batch file that connects to the other machine (there
> is a password) and all is fine.
>
> However it is very annoying that the boot stops and will only complete
> with manual intervention. The problem is that the wireless card is not
> initialised early enough so when Windows tries to connect during boot the
> network is not available. so I ask:
>
> 1. Is it possible to change the boot order so the network connections are
> not made until after the wireless card is enabled? if not,
> 2. Is it possible to get windows to automatically select option to
> continue the boot and keep the mapped drives avalable for the future? if
> not
> 3. If I creat a batch file with a line like "NET USE Z:
> \\netcomputer\myfolder" and put it in the users stratup folder will it
> execute after the wireless card is enabled and how do I automatically
> delete the map when the user closes down so the unwanted message that it
> can't connect does not show up.


You need three steps to do this:
1. Get Windows to stop remembered drives:
net use /persistent:no
2. Disconnect all remembered drives:
net use * /d /y
3. Arrange your startup connects, by placing this batch file
into your startup folder:
@echo off
ping localhost -n 30 > nul
net use z: \\netcomputer\MyShare

Adjust the delay, currently set 30 seconds, to suit your environment.
Note also that the "net use" command can't connect to a folder as
per your code but only to a share (or optionally to a folder within
this share).


 
Reply With Quote
 
Lorne
Guest
Posts: n/a
 
      1st Aug 2008
"Pegasus (MVP)" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
>
>
> You need three steps to do this:
> 1. Get Windows to stop remembered drives:
> net use /persistent:no
> 2. Disconnect all remembered drives:
> net use * /d /y
> 3. Arrange your startup connects, by placing this batch file
> into your startup folder:
> @echo off
> ping localhost -n 30 > nul
> net use z: \\netcomputer\MyShare
>
> Adjust the delay, currently set 30 seconds, to suit your environment.
> Note also that the "net use" command can't connect to a folder as
> per your code but only to a share (or optionally to a folder within
> this share).


thanks for this - I was missing the persistent:no bit.

It seems to work without the ping localhost line as the wireless card is up
and working before any startup folder items get executed. Am I right that
this line was giving an extra 30 seconds for the system to get up and
running and I can safely discard it?


 
Reply With Quote
 
Pegasus \(MVP\)
Guest
Posts: n/a
 
      1st Aug 2008

"Lorne" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> "Pegasus (MVP)" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
>>
>>
>> You need three steps to do this:
>> 1. Get Windows to stop remembered drives:
>> net use /persistent:no
>> 2. Disconnect all remembered drives:
>> net use * /d /y
>> 3. Arrange your startup connects, by placing this batch file
>> into your startup folder:
>> @echo off
>> ping localhost -n 30 > nul
>> net use z: \\netcomputer\MyShare
>>
>> Adjust the delay, currently set 30 seconds, to suit your environment.
>> Note also that the "net use" command can't connect to a folder as
>> per your code but only to a share (or optionally to a folder within
>> this share).

>
> thanks for this - I was missing the persistent:no bit.
>
> It seems to work without the ping localhost line as the wireless card is
> up and working before any startup folder items get executed. Am I right
> that this line was giving an extra 30 seconds for the system to get up and
> running and I can safely discard it?


Yes.


 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

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

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Mapped drives logon at boot Kimo Windows Vista General Discussion 1 22nd May 2008 02:19 AM
Mapped drives NOT connected at boot Lerner Windows XP Networking 5 4th Nov 2004 03:00 PM
Mapped drives NOT connected at boot Lerner Windows XP Help 5 4th Nov 2004 03:00 PM
Mapped drives NOT connected at boot Lerner Windows XP Setup 5 4th Nov 2004 03:00 PM
Re: Mapped drives not working after boot up in XP Pegasus \(MVP\) Microsoft Windows 2000 Networking 3 8th May 2004 08:52 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 11:14 AM.