Multiple Connections to a server or shared resource by the same user - BUG

  • Thread starter Thread starter chuck.streb
  • Start date Start date
C

chuck.streb

Apparently there is a bug in the XP system.
I try to log on to a share drive and can not because of the message in
the subject.
When I check to see if there is a network drive attached there are
non.
I use the command "net use" nothing shows up.

BUT BUT BUT

if I log onto the drive using Map Network Drive (Drive none) and
folder the drive name, it lets me in without having to use a user ID
and password. I pick up the last users permissions.

No matter what I try I cannot reset this. The only way to resolve at
the moment is by rebooting the computer.

This is a serious bug because it gives the next user of a machine the
access to the previous users shared drives and permissions.

Anyone know how to fix this ....

Dont tell me Net Use * /delete. It isnt that ... It seems to be a bug
and it happens allot here ...

Thank For You Time
 
The last command before the problem was a VB command
RemoveNetworkDrive

WshNetwork.RemoveNetworkDrive "g:", True
 
The last command before the problem was a VB command
RemoveNetworkDrive

WshNetwork.RemoveNetworkDrive "g:", True

Who are you talking to? Please QUOTE the post you are replying to.
 
I have also tried this with no success



'
' RemNetDrivebForce.vbs - Windows Logon Script
' VBScript to Remove Drive H: with bForce
' Author Guy Thomas http://computerperformance.co.uk/
' Version 1.3- April 24th 2005
' -----------------------------------------------------'
Option Explicit
Dim objNetwork, objShell, strDriveLetter
Dim bForce, bUpdateProfile
strDriveLetter = "H:"
bForce = "True"
bUpdateProfile = "True"
err.number = vbempty
Set objNetwork = CreateObject("WScript.Network")
' Removes strDriveLetter, with bForce, pUpdate Profile
On Error Resume Next
objNetwork.RemoveNetworkDrive strDriveLetter, _
bforce, bUpdateProfile

' Error correcting code
If err.number = vbEmpty then
Set objShell = CreateObject("WScript.Shell")
objShell.run ("Explorer")
ElseIf err.number = -2147022646 then
Wscript.Echo "You must create " & strDriveLetter
Else Wscript.echo "Unknown " & err.number
End If


WScript.Quit

' End of Guy's Script
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top