Where in Regedit?

  • Thread starter Thread starter Nick
  • Start date Start date
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
 
Back
Top