Update 'Home'

master
Claire 2 years ago
parent
commit
6dbd900179
  1. 2
      Home.md

2
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

Loading…
Cancel
Save