Enabled RemoteFX locally on a non domain joined computer
For some reason RemoteFX USB Redirection is not enabled standard in Windows. So what to do with a non domain joined computer, you can change GPO from the Active Directory. That is not a...
Kenneth Qvistgaard Dalbjerg, IT Konsulent i århus
For some reason RemoteFX USB Redirection is not enabled standard in Windows. So what to do with a non domain joined computer, you can change GPO from the Active Directory. That is not a...
How to list all enabled user in active directory:
1 |
Get-ADUser -filter {Enabled -eq $True} -Properties "DisplayName","emailaddress" | select name,emailaddress |
How to list all enabled user in active directory, for a given OU:
1 |
Get-ADUser -SearchBase "OU=Accounts,OU=RootOU,DC=ChildDomain,DC=RootDomain,DC=com" -filter {Enabled -eq $True} -Properties "DisplayName","emailaddress","title" | select name,emailaddress |
Sidste kommentar