Warning: session_start() expects parameter 1 to be array, string given in /home/sqlthoug/public_html/blog/wp-includes/class-wp-hook.php on line 287
Get-Member – SQL Thoughts

Recently I wanted to look at the properties of a powershell objects in my attempt to access and manipulate the object and its properties. So here is how I did it. Get-ChildItem | Get-Member This command prints all the members (properties, methods etc) of the object. The properties can be… Continue Reading Powershell: View all properties of a powershell object