Where in Regedit?

J

Jerold Schulman

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
 

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

Top