PC Review


Reply
Thread Tools Rate Thread

How to disable "Network Path Not Found" on Start-Up

 
 
Clueless in Seattle
Guest
Posts: n/a
 
      3rd Jan 2008
I have my desktop and laptop computers connected together in a peer-to-
peer network with Windows 2000.

Each morning when I turn on my computers, whichever one I turn on
first stalls with a message that says something like "Cannot connect
to computer B."

Well, of course computer A can't connect to computer B because I
haven't gone down to the other end of my apartment to turn on computer
B yet. I can't very well be in two places at once can I?

In the meantime, of course, Windows stops loading until I come back to
the first computer and click a button to continue loading the
operating system.

There's also a little box that says something like "do not try to
restore the connection in the future." Which I dutifully check each
time.

But the following morning the same thing happens all over again.

How can I configure my network connection so that it will not stall
Windows start up each morning when I turn on my computer? I'd like to
be able to turn on my computer, go the the kitchen to fix a cup of tea
and come back to find the operating system loaded and ready to get to
work, instead of finding it stalled at that "can't find other
computer" roadblock.

Ideally I'd like Windows Networking to just wait its turn, and then
after the operating system has finished loading, it could check for
the network connection, and if it's not found, to just keep checking
at regular intervals until I turn on the other computer.

Can that be done?

Will in Seattle
a.k.a. "Clueless"
 
Reply With Quote
 
 
 
 
Pegasus \(MVP\)
Guest
Posts: n/a
 
      3rd Jan 2008

"Clueless in Seattle" <(E-Mail Removed)> wrote in message
news:daffa0d3-6449-4404-ade2-(E-Mail Removed)...
>I have my desktop and laptop computers connected together in a peer-to-
> peer network with Windows 2000.
>
> Each morning when I turn on my computers, whichever one I turn on
> first stalls with a message that says something like "Cannot connect
> to computer B."
>
> Well, of course computer A can't connect to computer B because I
> haven't gone down to the other end of my apartment to turn on computer
> B yet. I can't very well be in two places at once can I?
>
> In the meantime, of course, Windows stops loading until I come back to
> the first computer and click a button to continue loading the
> operating system.
>
> There's also a little box that says something like "do not try to
> restore the connection in the future." Which I dutifully check each
> time.
>
> But the following morning the same thing happens all over again.
>
> How can I configure my network connection so that it will not stall
> Windows start up each morning when I turn on my computer? I'd like to
> be able to turn on my computer, go the the kitchen to fix a cup of tea
> and come back to find the operating system loaded and ready to get to
> work, instead of finding it stalled at that "can't find other
> computer" roadblock.
>
> Ideally I'd like Windows Networking to just wait its turn, and then
> after the operating system has finished loading, it could check for
> the network connection, and if it's not found, to just keep checking
> at regular intervals until I turn on the other computer.
>
> Can that be done?
>
> Will in Seattle
> a.k.a. "Clueless"


Instead of relying on remembered connection, place the following
batch files into the "All Users\Startup" folder of each PC:

@echo off
set count=0
set OtherIP=192.168.0.1
set OtherName=Laptop
net use /persistent:no

:Again
ping OtherIP | find /i "bytes=" > nul && goto Connected
if %count% GEQ 3 goto ForgetIt
set /a count=%count% + 1
ping localhost -n 60 > nul
goto Again

:Connected
net use S: \\%OtherPC%\Share1
:ForgetIt
net use
ping localhost -n 5 > nul

Here are some explanations:
- You must give your machines fixed IP addresses.
- In the batch file residing on the laptop, set OtherIP
and OtherName to the correct values for the desktop.
- Similar for the batch file residing on the desktop.
- Each PC will send test packets to the other PC. If
none are returned then it will pause for 60 seconds
before trying again.
- When successful, it will make the connection to the
share.
- If unsuccessful after three attempts, it will give up.

You should now be able to have your cuppa and find
everything ready for you by the time you come back.


 
Reply With Quote
 
Phillip Windell
Guest
Posts: n/a
 
      3rd Jan 2008
You would be much better off to forget about the whole drive letter thing
and start using Shortcuts based on the UNC path (\\machinename\sharename).
The shortcut will "appear" as a folder on the Desktop or the My Documents,
or wherever you put it and it can be browsed to from any Browse Dialog Box
just as if it was any other folder. Shortcuts can also be renamed to any
name you want to give them so not only will you easily remember what they
are but the name can just blatantly state exactly what they are so there
isn't even anything to have to remember.

Shortcuts do not have to maintain a constant connection, they do not ever
"time out", and they do not eat up any resources at all the way mapped drive
letters do.

--
Phillip Windell
www.wandtv.com

The views expressed, are my own and not those of my employer, or Microsoft,
or anyone else associated with me, including my cats.
-----------------------------------------------------


"Clueless in Seattle" <(E-Mail Removed)> wrote in message
news:daffa0d3-6449-4404-ade2-(E-Mail Removed)...
>I have my desktop and laptop computers connected together in a peer-to-
> peer network with Windows 2000.
>
> Each morning when I turn on my computers, whichever one I turn on
> first stalls with a message that says something like "Cannot connect
> to computer B."
>
> Well, of course computer A can't connect to computer B because I
> haven't gone down to the other end of my apartment to turn on computer
> B yet. I can't very well be in two places at once can I?
>
> In the meantime, of course, Windows stops loading until I come back to
> the first computer and click a button to continue loading the
> operating system.
>
> There's also a little box that says something like "do not try to
> restore the connection in the future." Which I dutifully check each
> time.
>
> But the following morning the same thing happens all over again.
>
> How can I configure my network connection so that it will not stall
> Windows start up each morning when I turn on my computer? I'd like to
> be able to turn on my computer, go the the kitchen to fix a cup of tea
> and come back to find the operating system loaded and ready to get to
> work, instead of finding it stalled at that "can't find other
> computer" roadblock.
>
> Ideally I'd like Windows Networking to just wait its turn, and then
> after the operating system has finished loading, it could check for
> the network connection, and if it's not found, to just keep checking
> at regular intervals until I turn on the other computer.
>
> Can that be done?
>
> Will in Seattle
> a.k.a. "Clueless"



 
Reply With Quote
 
Clueless in Seattle
Guest
Posts: n/a
 
      4th Jan 2008
Wow! That's cool!

It's been ages since I've done anything with batch files. Over the
last few years I've become so sick that I can't spend much time at the
computer anymore, but I used to love playing around with batch files.
Made some pretty tricky ones back in the day.

So this will be like old times.

But it may take me a while to get it working right and debugged, given
that I can only sit at the computer for a few minutes at a time these
days.

Many thanks for the help, I'll let you know how it goes.

Will Anderson in Seattle
a.k.a. "Clueless"

On Jan 3, 9:38 am, "Pegasus \(MVP\)" <I....@fly.com.oz> wrote:
> "Clueless in Seattle" <spamless.in.seattle.re...@gmail.com> wrote in messagenews:daffa0d3-6449-4404-ade2-(E-Mail Removed)...
>
>
>
> >I have my desktop and laptop computers connected together in a peer-to-
> > peer network with Windows 2000.

>
> > Each morning when I turn on my computers, whichever one I turn on
> > first stalls with a message that says something like "Cannot connect
> > to computer B."

>
> > Well, of course computer A can't connect to computer B because I
> > haven't gone down to the other end of my apartment to turn on computer
> > B yet. I can't very well be in two places at once can I?

>
> > In the meantime, of course, Windows stops loading until I come back to
> > the first computer and click a button to continue loading the
> > operating system.

>
> > There's also a little box that says something like "do not try to
> > restore the connection in the future." Which I dutifully check each
> > time.

>
> > But the following morning the same thing happens all over again.

>
> > How can I configure my network connection so that it will not stall
> > Windows start up each morning when I turn on my computer? I'd like to
> > be able to turn on my computer, go the the kitchen to fix a cup of tea
> > and come back to find the operating system loaded and ready to get to
> > work, instead of finding it stalled at that "can't find other
> > computer" roadblock.

>
> > Ideally I'd like Windows Networking to just wait its turn, and then
> > after the operating system has finished loading, it could check for
> > the network connection, and if it's not found, to just keep checking
> > at regular intervals until I turn on the other computer.

>
> > Can that be done?

>
> > Will in Seattle
> > a.k.a. "Clueless"

>
> Instead of relying on remembered connection, place the following
> batch files into the "All Users\Startup" folder of each PC:
>
> @echo off
> set count=0
> set OtherIP=192.168.0.1
> set OtherName=Laptop
> net use /persistent:no
>
> :Again
> ping OtherIP | find /i "bytes=" > nul && goto Connected
> if %count% GEQ 3 goto ForgetIt
> set /a count=%count% + 1
> ping localhost -n 60 > nul
> goto Again
>
> :Connected
> net use S: \\%OtherPC%\Share1
> :ForgetIt
> net use
> ping localhost -n 5 > nul
>
> Here are some explanations:
> - You must give your machines fixed IP addresses.
> - In the batch file residing on the laptop, set OtherIP
> and OtherName to the correct values for the desktop.
> - Similar for the batch file residing on the desktop.
> - Each PC will send test packets to the other PC. If
> none are returned then it will pause for 60 seconds
> before trying again.
> - When successful, it will make the connection to the
> share.
> - If unsuccessful after three attempts, it will give up.
>
> You should now be able to have your cuppa and find
> everything ready for you by the time you come back.


 
Reply With Quote
 
Pegasus \(MVP\)
Guest
Posts: n/a
 
      4th Jan 2008
Thanks for the feedback. You might find that batch files
have become a lot more powerful under Win2000/XP.
Try to run the following 3-liner, just for fun:

@echo off
set Name=Clueless in Seattle
echo Hello, %Name%. I think your proper name should be
"%Name:Clueless=Savvy%"

"Clueless in Seattle" <(E-Mail Removed)> wrote in message
news:ac8ec905-045c-47a9-9e89-(E-Mail Removed)...
> Wow! That's cool!
>
> It's been ages since I've done anything with batch files. Over the
> last few years I've become so sick that I can't spend much time at the
> computer anymore, but I used to love playing around with batch files.
> Made some pretty tricky ones back in the day.
>
> So this will be like old times.
>
> But it may take me a while to get it working right and debugged, given
> that I can only sit at the computer for a few minutes at a time these
> days.
>
> Many thanks for the help, I'll let you know how it goes.
>
> Will Anderson in Seattle
> a.k.a. "Clueless"
>
> On Jan 3, 9:38 am, "Pegasus \(MVP\)" <I....@fly.com.oz> wrote:
>> "Clueless in Seattle" <spamless.in.seattle.re...@gmail.com> wrote in
>> messagenews:daffa0d3-6449-4404-ade2-(E-Mail Removed)...
>>
>>
>>
>> >I have my desktop and laptop computers connected together in a peer-to-
>> > peer network with Windows 2000.

>>
>> > Each morning when I turn on my computers, whichever one I turn on
>> > first stalls with a message that says something like "Cannot connect
>> > to computer B."

>>
>> > Well, of course computer A can't connect to computer B because I
>> > haven't gone down to the other end of my apartment to turn on computer
>> > B yet. I can't very well be in two places at once can I?

>>
>> > In the meantime, of course, Windows stops loading until I come back to
>> > the first computer and click a button to continue loading the
>> > operating system.

>>
>> > There's also a little box that says something like "do not try to
>> > restore the connection in the future." Which I dutifully check each
>> > time.

>>
>> > But the following morning the same thing happens all over again.

>>
>> > How can I configure my network connection so that it will not stall
>> > Windows start up each morning when I turn on my computer? I'd like to
>> > be able to turn on my computer, go the the kitchen to fix a cup of tea
>> > and come back to find the operating system loaded and ready to get to
>> > work, instead of finding it stalled at that "can't find other
>> > computer" roadblock.

>>
>> > Ideally I'd like Windows Networking to just wait its turn, and then
>> > after the operating system has finished loading, it could check for
>> > the network connection, and if it's not found, to just keep checking
>> > at regular intervals until I turn on the other computer.

>>
>> > Can that be done?

>>
>> > Will in Seattle
>> > a.k.a. "Clueless"

>>
>> Instead of relying on remembered connection, place the following
>> batch files into the "All Users\Startup" folder of each PC:
>>
>> @echo off
>> set count=0
>> set OtherIP=192.168.0.1
>> set OtherName=Laptop
>> net use /persistent:no
>>
>> :Again
>> ping OtherIP | find /i "bytes=" > nul && goto Connected
>> if %count% GEQ 3 goto ForgetIt
>> set /a count=%count% + 1
>> ping localhost -n 60 > nul
>> goto Again
>>
>> :Connected
>> net use S: \\%OtherPC%\Share1
>> :ForgetIt
>> net use
>> ping localhost -n 5 > nul
>>
>> Here are some explanations:
>> - You must give your machines fixed IP addresses.
>> - In the batch file residing on the laptop, set OtherIP
>> and OtherName to the correct values for the desktop.
>> - Similar for the batch file residing on the desktop.
>> - Each PC will send test packets to the other PC. If
>> none are returned then it will pause for 60 seconds
>> before trying again.
>> - When successful, it will make the connection to the
>> share.
>> - If unsuccessful after three attempts, it will give up.
>>
>> You should now be able to have your cuppa and find
>> everything ready for you by the time you come back.

>



 
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
"...is not accessible: network path not found"; also printer error. Jon Riley Microsoft Windows 2000 Networking 1 20th Sep 2009 07:05 PM
Suppressing "The network path was not found" error message at startup Oyvind Eriksen Microsoft Windows 2000 Networking 2 18th Aug 2007 10:00 PM
"Named Pipes Provider: The network path was not found" error xz Microsoft ASP .NET 0 20th Jan 2005 05:05 AM
Error Msg: "<WORKGROUP> is not accessible. The network path was not found." Rediranch Microsoft Windows 2000 Networking 3 10th Nov 2003 09:06 PM
"network path was not found" error when trying to access workstation boyd Microsoft Windows 2000 Networking 4 6th Aug 2003 04:46 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 04:49 AM.