KB

Roaming Profiles

    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: