Skip to content

Commit 7da3c83

Browse files
committed
updates changelog and readme
1 parent e89861f commit 7da3c83

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed

README.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -201,6 +201,41 @@ RegistryKey ├── Policies
201201
RegistryKey └── Control
202202
```
203203

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+
204239
#### Show only Keys
205240

206241
```powershell

0 commit comments

Comments
 (0)