We have an issue where some of our clients attempt to login to our system using a / instead of a \ for the domain.

This ends up with them attempting to login as

computername\domain/username

Also if they forget the domain part they end up attempting to login as

computername\username

Is there a way to setup a computer so that any logins to it from remote desktop\remoteapp default to a domain username, rather than a local computer username?

Would be much simpler to have our users simply type in their username.

Even though training them to use domain\username is simple, trying to do phone support for when they did a forward slash instead of a backslash has become a nightmare.

link|improve this question

BOFH Solution: Sneak into their offices at night and steal all their / keys. – SmallClanger Dec 2 '10 at 18:39
feedback

2 Answers

up vote 1 down vote accepted

You could educate users to use the username@domainname format instead.

If this also happens to be the users actual email address, success rates tend to be much higher.

link|improve this answer
If I can't find an alternative solution, this may actually be the best way to do it. They don't have an email address, but it would be a lot easier to train to use the @ symbol instead of trying to tell them they're using the wrong slash. – Aequitarum Custos Dec 2 '10 at 21:06
This has greatly solved our support problems, thank you! – Aequitarum Custos Feb 23 '11 at 20:47
feedback

While we don't use RDS, but regular workstations, we had a similar issue where the local machine is selected by default once imaging is complete.

When we image our workstations, I have a runonce script run at the end of the OSD task sequence that hacks the registry so that the preferred domain is selected by default on the login screen, then have the machine reboot:

Set oShell = CreateObject("WScript.Shell")
oShell.RegWrite "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\WinLogon\DefaultDomainName", "<Domain>"

Maybe this will help you?

Note: We're still using Windows XP, so I don't think this will help if you're using Vista or 7. Sorry :S

link|improve this answer
Yeah this is only done on remote desktop, where a user is required to type in a username\password before they even connect. So unfortunately this doesn't work. – Aequitarum Custos Dec 2 '10 at 21:05
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.