Link to home
Start Free TrialLog in
Avatar of mwagoner_73
mwagoner_73Flag for United States of America

asked on

System 55 Error Occurred

I am trying to add a mapped drive via a login script for users logging in to a Windows 2008 Server R2 (w/ Remote Desktop Services).  I am logged into the user's session and I am trying to run the .bat file to ensure it maps properly before adding to the logon script.  


if exist Y: ECHO Removing Drive...
if exist Y: net use /delete Y:

Echo Mapping Users Folder
Echo Drive Y:
net use y: \\server03\Users\%username%

every time I try to run the .bat file I get a system 55 error occurred, the specified resource or network device is no longer available...

Under my login, this same test works.  Under a regular user with Full Control permissions to the shared location it doesn't...

I checked the folder name matches the username and all spellings are correct, the only notable difference from my login to the users login is that my username contains no spaces... mine = username   user's = user name  

???


ASKER CERTIFIED SOLUTION
Avatar of dpbohr
dpbohr
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of mwagoner_73

ASKER

That did it!  Thanks!
Glad I could help! :-)
Please make sure you rate the solution....Thanks!
worked for me, thanks guys