- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Keep all the VDI computer objects in the Computer OU. (default behaviour)
Using GPMC:
Create a GPO at the Domain level that will apply the settings you want.
Create a WMI Filter to filter objects based on Computer name prefix
Link the WMI filter to the GPO
Here is the WMI query:
Select * From Win32_ComputerSystem Where Name LIKE 'VDM%'
This should catch any computers that start with VDM, you can change VDM to whatever your naming prefix is.
For Different Pools, use a different prefix and create corresponding GPO and WMI filters.