Sources of Properties explained

Hello,

I am a beginner and slowly learning the more intermediate aspects of Powershell. So far, I am able [at beginner level] to differentiate between; (1) Property (2) NoteProperty and (3) ScriptProperty. The next 2 that still seem very obscure to me are (4) ParametricProperty and (5) PSVariableProperty.

I’d be grateful for any references to existing articles/blogs/websites that explain (4) and (5) in a more fundamental way, and in more detail. Many thanks in advance!

Parameterized property is just another property which requires additional arguments to define a value. If you are talking about Add-Member cmdlet, it doesn’t have PSVariableProperty as value for MemberType parameter.

DItto for what kvprassson already states, but you say also that you are new. Here are a set of discussions you should leverage as well in this journey.

https://www.reddit.com/r/PowerShell/comments/ar6cvt/powershell_in_depth_second_edition

https://www.reddit.com/r/PowerShell/comments/ar6cvt/powershell_in_depth_second_edition/egmlpom/?context=3

https://www.reddit.com/r/PowerShell/comments/afqmmw/i_want_to_help_my_husband_advance_his_powershell/ee3k6p6/?context=3

And this…

Sincere thanks Mr postanote, much appreciated.