View Full Version : Where in Regedit?


Nick
10-14-2005, 09:52 AM
Where in regedit can find out if a users profile is local or roaming.

Thanks

Jerold Schulman
10-14-2005, 05:12 PM
On Fri, 14 Oct 2005 09:52:56 +0100, "Nick" <Nick@nospam.com> wrote:

>Where in regedit can find out if a users profile is local or roaming.
>
>Thanks
>

This is not stored in the registry. It is in AD.

On way is to:

set RMT=N
for /f "Tokens=*" %%a in ('net user The_sAMAccountName /domain^|find /i "User profile"^|find "\\"') do set RMT=Y
@echo %RMT%

You could use Adfind.exe freeware (tip 5898 » Freeware ADFind. in the 'Tips & Tricks' at http://www.jsifaq.com)

set RMT=N
for /f "Tokens=*" %%a in ('adfind -default -nodn -nolabel -f "&(objectcategory=person)(sAMAccountName=The_sAMAccountName)(profilePath=\\*)" profilePath^|find "\\"') do set RTM=Y
@echo %RMT%




Jerold Schulman
Windows Server MVP
JSI, Inc.
http://www.jsiinc.com
http://www.jsifaq.com

Mark V
10-14-2005, 09:06 PM
In microsoft.public.win2000.registry Nick wrote:

> Where in regedit can find out if a users profile is local or
> roaming.

Locally, System Properties, User Profiles (Type column).