Hi,
It looks like a Windows problem to me. Your drive is not being mapped properly. Perhaps a registry problem.
Try
1) In "My Computer/Tools", Disconnect the drive, then reconnect, making sure the 'Reconnect at logon" box is ticked.
If that does not work, try
2) Make a BAT file that runs at logon (edit this to reflect your sme server name and the ibay name. You can remove the lines marked rem):
rem make sure the drive is not connected
rem it does not have to drive x:
net use x: /d
rem now connect the drive we want
net use x: \\yousmeserver\ibayname /persistent:no
rem the persistent:no disconnects the drive when you log off
If that does not connect, then you probably have some mismatch between your Windows and SME usernames/passwords. Try resetting them both to make sure they are the same. Any Capital letters involved?
You can also try:
net use x: \\yousmeserver\ibayname user:\smedomain name\username /persistent:no
Lookup "net use" on your Windows PC. Go to a DOS box and type "net use /?" without the quotes of course.