HTFC Forums

H.T.F.C.

How To Fix Computers





Go Back   HTFC Forums > Software Newsgroups > Windows XP > XP Networking

Register FAQ Members List Calendar Search Today's Posts Mark Forums Read
  #1  
Old 11-09-2007, 06:55 PM
Kevin Marquette
 
Posts: n/a
Default Mapped drives missing in explorer but work in dos

I think I have found a bug in explorer, but cannot find any solution to it.

When my users log onto a computer in the domain, they may or may not have
all the mapped drives they need listed in explorer. If I drop to a command
prompt, I can see and use the drives just fine. If I relog or use task
manager to kill and run explorer.exe the drives will then show up.

It does not matter if the logon script is part of the GPO or listed as the
user’s personal login script. I do use a custom vbs script, but using a
simple net use batch file reproduces the same problem.

I do set the drives to persist so repeat logins to the same machine work
correctly, but my user base is very mobile and use any number of different
machines. It’s a large group of dental students working chair side in any
one of the 200 dental chairs available.

I also think it’s a timing issue. If the scripts are ran after the user is
logged in explorer works.

Reply With Quote
Sponsored Links
Fix your Windows Problems - FAST.
FREE Safe Scan Registry Check. Locate & Fix Errors in Minutes!
  #2  
Old 11-10-2007, 07:41 PM
Lanwench [MVP - Exchange]
 
Posts: n/a
Default Re: Mapped drives missing in explorer but work in dos

Kevin Marquette <Kevin Marquette@discussions.microsoft.com> wrote:
> I think I have found a bug in explorer, but cannot find any solution
> to it.
>
> When my users log onto a computer in the domain, they may or may not
> have all the mapped drives they need listed in explorer. If I drop
> to a command prompt, I can see and use the drives just fine. If I
> relog or use task manager to kill and run explorer.exe the drives
> will then show up.
>
> It does not matter if the logon script is part of the GPO or listed
> as the user's personal login script. I do use a custom vbs script,
> but using a simple net use batch file reproduces the same problem.
>
> I do set the drives to persist so repeat logins to the same machine
> work correctly, but my user base is very mobile and use any number of
> different machines. It's a large group of dental students working
> chair side in any one of the 200 dental chairs available.
>
> I also think it's a timing issue. If the scripts are ran after the
> user is logged in explorer works.


I've seen this before -

a) implement the "Always Wait for Network" GPO setting -
http://www.boyce.us/gp/gpcontent.asp?ID=39

b) don't use persistently mapped drives - it's going to cause you problems
somehow, somewhere, sometime. I don't know VBS except how to spell it, but
in a batch file login script, you could do something like:

net use * /del /y
net use m: \\server\share1 /persistent:no
net use n: \\server\share2 /persistent:no
net use o: \\server\share3 /persistent:no



Reply With Quote
  #3  
Old 11-12-2007, 05:37 PM
Kevin Marquette
 
Posts: n/a
Default Re: Mapped drives missing in explorer but work in dos

My scripts are running. It’s not a matter of waiting for the network to be
available. I can go to that machine and access those drives from a command
prompt.

I am thinking it’s a timing delay in explorer. Setting that policy creates
a huge delay in the logon process and that mitigates this problem. So your
solution does work, but the delay that it causes for all users is too long.

I would like to figure out how to fix explorer to display them properly.



"Lanwench [MVP - Exchange]" wrote:

> Kevin Marquette <Kevin Marquette@discussions.microsoft.com> wrote:
> > I think I have found a bug in explorer, but cannot find any solution
> > to it.
> >
> > When my users log onto a computer in the domain, they may or may not
> > have all the mapped drives they need listed in explorer. If I drop
> > to a command prompt, I can see and use the drives just fine. If I
> > relog or use task manager to kill and run explorer.exe the drives
> > will then show up.
> >
> > It does not matter if the logon script is part of the GPO or listed
> > as the user's personal login script. I do use a custom vbs script,
> > but using a simple net use batch file reproduces the same problem.
> >
> > I do set the drives to persist so repeat logins to the same machine
> > work correctly, but my user base is very mobile and use any number of
> > different machines. It's a large group of dental students working
> > chair side in any one of the 200 dental chairs available.
> >
> > I also think it's a timing issue. If the scripts are ran after the
> > user is logged in explorer works.

>
> I've seen this before -
>
> a) implement the "Always Wait for Network" GPO setting -
> http://www.boyce.us/gp/gpcontent.asp?ID=39
>
> b) don't use persistently mapped drives - it's going to cause you problems
> somehow, somewhere, sometime. I don't know VBS except how to spell it, but
> in a batch file login script, you could do something like:
>
> net use * /del /y
> net use m: \\server\share1 /persistent:no
> net use n: \\server\share2 /persistent:no
> net use o: \\server\share3 /persistent:no
>
>
>
>

Reply With Quote
  #4  
Old 11-13-2007, 09:01 PM
Kevin Marquette
 
Posts: n/a
Default Re: Mapped drives missing in explorer but work in dos

I take that back, this will work for us. I was confusing that policy with a
different one.

Thank You.

"Kevin Marquette" wrote:

> My scripts are running. It’s not a matter of waiting for the network to be
> available. I can go to that machine and access those drives from a command
> prompt.
>
> I am thinking it’s a timing delay in explorer. Setting that policy creates
> a huge delay in the logon process and that mitigates this problem. So your
> solution does work, but the delay that it causes for all users is too long.
>
> I would like to figure out how to fix explorer to display them properly.
>
>
>
> "Lanwench [MVP - Exchange]" wrote:
>
> > Kevin Marquette <Kevin Marquette@discussions.microsoft.com> wrote:
> > > I think I have found a bug in explorer, but cannot find any solution
> > > to it.
> > >
> > > When my users log onto a computer in the domain, they may or may not
> > > have all the mapped drives they need listed in explorer. If I drop
> > > to a command prompt, I can see and use the drives just fine. If I
> > > relog or use task manager to kill and run explorer.exe the drives
> > > will then show up.
> > >
> > > It does not matter if the logon script is part of the GPO or listed
> > > as the user's personal login script. I do use a custom vbs script,
> > > but using a simple net use batch file reproduces the same problem.
> > >
> > > I do set the drives to persist so repeat logins to the same machine
> > > work correctly, but my user base is very mobile and use any number of
> > > different machines. It's a large group of dental students working
> > > chair side in any one of the 200 dental chairs available.
> > >
> > > I also think it's a timing issue. If the scripts are ran after the
> > > user is logged in explorer works.

> >
> > I've seen this before -
> >
> > a) implement the "Always Wait for Network" GPO setting -
> > http://www.boyce.us/gp/gpcontent.asp?ID=39
> >
> > b) don't use persistently mapped drives - it's going to cause you problems
> > somehow, somewhere, sometime. I don't know VBS except how to spell it, but
> > in a batch file login script, you could do something like:
> >
> > net use * /del /y
> > net use m: \\server\share1 /persistent:no
> > net use n: \\server\share2 /persistent:no
> > net use o: \\server\share3 /persistent:no
> >
> >
> >
> >

Reply With Quote
  #5  
Old 11-14-2007, 02:36 PM
Lanwench [MVP - Exchange]
 
Posts: n/a
Default Re: Mapped drives missing in explorer but work in dos

Kevin Marquette <KevinMarquette@discussions.microsoft.com> wrote:
> I take that back, this will work for us. I was confusing that policy
> with a different one.
>
> Thank You.


You're welcome - hope it helps.

>
> "Kevin Marquette" wrote:
>
>> My scripts are running. It's not a matter of waiting for the network
>> to be available. I can go to that machine and access those drives
>> from a command prompt.
>>
>> I am thinking it's a timing delay in explorer. Setting that policy
>> creates a huge delay in the logon process and that mitigates this
>> problem. So your solution does work, but the delay that it causes
>> for all users is too long.
>>
>> I would like to figure out how to fix explorer to display them
>> properly.
>>
>>
>>
>> "Lanwench [MVP - Exchange]" wrote:
>>
>>> Kevin Marquette <Kevin Marquette@discussions.microsoft.com> wrote:
>>>> I think I have found a bug in explorer, but cannot find any
>>>> solution to it.
>>>>
>>>> When my users log onto a computer in the domain, they may or may
>>>> not have all the mapped drives they need listed in explorer. If I
>>>> drop to a command prompt, I can see and use the drives just fine.
>>>> If I relog or use task manager to kill and run explorer.exe the
>>>> drives will then show up.
>>>>
>>>> It does not matter if the logon script is part of the GPO or listed
>>>> as the user's personal login script. I do use a custom vbs script,
>>>> but using a simple net use batch file reproduces the same problem.
>>>>
>>>> I do set the drives to persist so repeat logins to the same machine
>>>> work correctly, but my user base is very mobile and use any number
>>>> of different machines. It's a large group of dental students
>>>> working chair side in any one of the 200 dental chairs available.
>>>>
>>>> I also think it's a timing issue. If the scripts are ran after the
>>>> user is logged in explorer works.
>>>
>>> I've seen this before -
>>>
>>> a) implement the "Always Wait for Network" GPO setting -
>>> http://www.boyce.us/gp/gpcontent.asp?ID=39
>>>
>>> b) don't use persistently mapped drives - it's going to cause you
>>> problems somehow, somewhere, sometime. I don't know VBS except how
>>> to spell it, but in a batch file login script, you could do
>>> something like:
>>>
>>> net use * /del /y
>>> net use m: \\server\share1 /persistent:no
>>> net use n: \\server\share2 /persistent:no
>>> net use o: \\server\share3 /persistent:no




Reply With Quote
Sponsored Links
Reply


Thread Tools
Display Modes


Similar Threads
Thread Thread Starter Forum Replies Last Post
Windows Explorer does not show all mapped network drives JBCTECH Windows XP 3 05-15-2007 01:50 PM
Dropping Mapped drives TED XP Networking 0 06-04-2004 07:16 AM
mapped drives james XP Networking 2 05-07-2004 05:01 PM
Mapped drives disapears from Windows Explorer Svend Meyland Nicolaisen XP Networking 0 05-05-2004 01:41 PM
Mapped Drives anonymous@discussions.microsoft.com XP Networking 0 04-19-2004 02:26 PM


All times are GMT. The time now is 06:40 AM.


Powered by vBulletin® Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO 3.1.0
© 2004 - 2007 Web-S-Sense Pty. Ltd. Usenet and forums posts © their respective authors.
Ad Management by RedTyger