Show Date/Time Of Last Boot Get-WmiObject -class Win32_OperatingSystem | Select-Object __SERVER,@{label='LastBootUpTime';expression={$_.ConvertToDateTime($_.LastBootUpTime)}}
Category: Powershell
PowerShell – Scripts Not Allowed To Run
If PowerShell is not allowing you to run scripts then you might need to set…
PowerShell – Get All SQL Server Instances In Environment
cls import-module failoverclusters Import-Module -Name SQLPS -DisableNameChecking $servers = “comma”,”separated”,”server”,”list” foreach($server in $servers) { try…
PowerShell – Fast Ping
Source: https://gist.github.com/mbrownnycnyc/9913361 This is a very fast way to ping a server using PowerShell. #…
PowerShell – Get SQL Server Info
$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…
PowerShell – Replace All Instances Of Something In All Files In Directory
This script searches every file in a directory for a particular string and replaces it…
Powershell – Finding the most recent backup file in a parent directory
Having to sift through a large directory to get the latest file can be tedious. …