diff --git a/Home.md b/Home.md index 28ce7fc..c238197 100644 --- a/Home.md +++ b/Home.md @@ -31,7 +31,7 @@ Name MemberType Definition Button_Display NoteProperty int Button_Display=1 ``` -It's easy to dump this into thanks to `Get-Member`. The Definition property of each member of our object contains some super useful information - both the name and value of each property of our registry key. It looks something like `int Button_Display=1`. Every property of the Elan registry key we're using is an integer, so I filtered out the result of `Get-Member` to use only `NoteProperty` members that are integers. +It's easy to dump this into a variable thanks to `Get-Member`. The Definition property of each member of our object contains some super useful information - both the name and value of each property of our registry key. It looks something like `int Button_Display=1`. Every property of the Elan registry key we're using is an integer, so I filtered out the result of `Get-Member` to use only `NoteProperty` members that are integers. ```ps1 # get members of properties