- How to edit registry settings for users other than myself (basically open regedit (or regedt32 in Windows 2000) and click HKEY_Users, file, load hive, and browse to their ntuser.dat. Unload it when done.)
- Security Recommendations for Roaming User Profiles Shared Folders - which permissions to set on the folder
- Windows Vista and Windows XP roaming user profiles interoperability: folder redirection is the only way
- Managing Roaming User Data Deployment Guide
Get a list of users with a profile or tsprofile
These PowerShell cmdlets rely on the Quest Software PowerShell CMDLET's: http://www.quest.com/powershell/activeroles-server.aspx
To use them you need to run: Add-PSSnapin Quest.ActiveRoles.ADManagement
Show user's with roaming profiles: Get-QADUser -sizelimit 0 | where {$_.profilepath -ne $NULL} | Select-object SamAccountName,profilepath
The same for TS Profiles: Get-QADUser -sizelimit 0 | where {$_.tsprofilepath -ne $NULL} | Select-object SamAccountName,tsprofilepath
Related Pages:
