Guest Morne Posted November 22, 2007 Posted November 22, 2007 Hi I have a logon script on an organisational unit in AD to map shared network folders. The script runs fine and shared folders are mapped, but sometimes during logon the sharenames disapear and are replace by the drive letter only. The sharenames sometimes also disapear some time after they were successfully mapped with sharename and all. Please advise any reasons why this may be happening. Many thanks. Morne
Guest Meinolf Weber Posted November 22, 2007 Posted November 22, 2007 Re: Logon Script - Share folder names not showing Hello Morne, Can you post your mapping command line? What operating system do you use on the clients and server? Best regards Meinolf Weber Disclaimer: This posting is provided "AS IS" with no warranties, and confers no rights. ** Please do NOT email, only reply to Newsgroups ** HELP us help YOU!!! http://www.dts-l.org/goodpost.htm > Hi > > I have a logon script on an organisational unit in AD to map shared > network folders. The script runs fine and shared folders are mapped, > but sometimes during logon the sharenames disapear and are replace by > the drive letter only. The sharenames sometimes also disapear some > time after they were successfully mapped with sharename and all. > > Please advise any reasons why this may be happening. > > Many thanks. > > Morne >
Guest Morne Posted November 23, 2007 Posted November 23, 2007 Re: Logon Script - Share folder names not showing Thanks Meinolf OS in use are Windows 2003 Server SP1 and XP SP2. Here follows the contents of the script: ' Logon script to map shared folders ' -------------------------------------- Option Explicit Dim objMap Set objMap = CreateObject("Wscript.Network") On Error Resume Next objMap.MapNetworkDrive "h:", "\\alex\tempknowledgegarden" objMap.MapNetworkDrive "j:", "\\alex\tempsales" objMap.MapNetworkDrive "k:", "\\alex\tempoperations" objMap.MapNetworkDrive "s:", "\\dell\support" objMap.MapNetworkDrive "t:", "\\alex\tempsandbox" objMap.MapNetworkDrive "y:", "\\dell\sandbox" wscript.Quit I tried to keep things simple in the script. Hope you can help since this problem is a bit annoying. Many thanks. Morne "Meinolf Weber" wrote: > Hello Morne, > > Can you post your mapping command line? What operating system do you use > on the clients and server? > > Best regards > > Meinolf Weber > Disclaimer: This posting is provided "AS IS" with no warranties, and confers > no rights. > ** Please do NOT email, only reply to Newsgroups > ** HELP us help YOU!!! http://www.dts-l.org/goodpost.htm > > > Hi > > > > I have a logon script on an organisational unit in AD to map shared > > network folders. The script runs fine and shared folders are mapped, > > but sometimes during logon the sharenames disapear and are replace by > > the drive letter only. The sharenames sometimes also disapear some > > time after they were successfully mapped with sharename and all. > > > > Please advise any reasons why this may be happening. > > > > Many thanks. > > > > Morne > > > > >
Recommended Posts