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

DBAs working in data centers would often want to find all the SQL Server instances in the network. How this can be done using few simple powershell scripts? There are multiple ways you can achieve this using powershell. First we just trust the SQL browser services and assume that it… Continue Reading Find SQL Instances – Powershell