PowerShell – Getting All Running SQL Services Writer #1, 2016-03-23 Getting all SQL Server services running on a server using PowerShell: Get-WmiObject -Class sqlservice -Namespace… Continue Reading
PowerShell – Making Arrays Writer #1, 2016-03-23 The basics of creating a PowerShell array and working with it. Continue Reading
PowerShell – Find Active Node On Cluster Writer #1, 2016-03-20 PowerShell script that prints out the state of the node you are on – Active or Passive. Continue Reading
PowerShell – Query Database Remotely Writer #1, 2016-03-18 The basic syntax for sending a query to SQL Server using PowerShell. sqlcmd -S SERVER_NAME… Continue Reading
PowerShell – Get Boot Time of Computer Writer #1, 2016-03-18 Show Date/Time Of Last Boot Get-WmiObject -class Win32_OperatingSystem | Select-Object __SERVER,@{label='LastBootUpTime';expression={$_.ConvertToDateTime($_.LastBootUpTime)}} Continue Reading
PowerShell – Scripts Not Allowed To Run Writer #1, 2016-03-18 If PowerShell is not allowing you to run scripts then you might need to set… Continue Reading
PowerShell – Fast Ping Writer #1, 2016-03-18 Source: https://gist.github.com/mbrownnycnyc/9913361 This is a very fast way to ping a server using PowerShell. #… Continue Reading
PowerShell – Get SQL Server Info Writer #1, 2016-03-18 $assemblylist = “Microsoft.SqlServer.Management.Common”, “Microsoft.SqlServer.Smo”, “Microsoft.SqlServer.Dmf “, “Microsoft.SqlServer.Instapi “, “Microsoft.SqlServer.SqlWmiManagement “, “Microsoft.SqlServer.ConnectionInfo “, “Microsoft.SqlServer.SmoExtended “, “Microsoft.SqlServer.SqlTDiagM… Continue Reading
PowerShell – Replace All Instances Of Something In All Files In Directory Writer #1, 2016-03-18 This script searches every file in a directory for a particular string and replaces it… Continue Reading