File tree Expand file tree Collapse file tree 1 file changed +35
-0
lines changed Expand file tree Collapse file tree 1 file changed +35
-0
lines changed Original file line number Diff line number Diff line change @@ -201,6 +201,41 @@ RegistryKey ├── Policies
201
201
RegistryKey └── Control
202
202
```
203
203
204
+ #### Filter Out Specific Items from the ` HKCU:\System ` Tree
205
+
206
+ ``` powershell
207
+ PS ..\PSTree> Get-PSTreeRegistry HKCU:\System -Depth 2 -Exclude CurrentControlSet, GameDV*
208
+
209
+ Hive: HKEY_CURRENT_USER\System
210
+
211
+ Kind Hierarchy
212
+ ---- ---------
213
+ RegistryKey System
214
+ RegistryKey └── GameConfigStore
215
+ Binary ├── Win32_AutoGameModeDefaultProfile
216
+ Binary ├── Win32_GameModeRelatedProcesses
217
+ RegistryKey ├── Parents
218
+ RegistryKey └── Children
219
+ ```
220
+
221
+ ### Select GameDVR-Related Values in the ` HKCU:\System ` Tree
222
+
223
+ ``` powershell
224
+ PS ..\PSTree> Get-PSTreeRegistry HKCU:\System -Depth 2 -Include GameDVR*
225
+
226
+ Hive: HKEY_CURRENT_USER\System
227
+
228
+ Kind Hierarchy
229
+ ---- ---------
230
+ RegistryKey System
231
+ RegistryKey └── GameConfigStore
232
+ DWord ├── GameDVR_Enabled
233
+ DWord ├── GameDVR_FSEBehaviorMode
234
+ DWord ├── GameDVR_HonorUserFSEBehaviorMode
235
+ DWord ├── GameDVR_DXGIHonorFSEWindowsCompatible
236
+ DWord └── GameDVR_EFSEFeatureFlags
237
+ ```
238
+
204
239
#### Show only Keys
205
240
206
241
``` powershell
You can’t perform that action at this time.
0 commit comments