Get-Hotfix Powershell Command to find Patches installed on Specific Date. There was a request to verify the list of servers if those were patched recently. I succeeded in verifying the… Read more »
Send-MailMessage -to “[email protected]” -from “[email protected]” -Subject “Subject Info” -Body “Content” -SmtpServer “Server Name” Was not able to send mail from a Windows 2008 server and the error message displayed is… Read more »
Powershell Tutorial – Part 1 To begin PowerShell you need to start using the console. Forget the command prompt and move on to PowerShell. Powershell is a combination of DOS… Read more »
Powershell script to control windows service on multiple remote servers. Get-content “Filename” | foreach {set-Service -ComputerName $_ -Name “Service Name” -StartupType Disabled -Status Stopped} Note: Replace Filename with filename location… Read more »