Here is a quick and convenient way to check for installed versions of .NET on your system(s): Get-ChildItem ‘HKLM:\SOFTWARE\Microsoft\NET Framework Setup\NDP’ -Recurse | Get-ItemProperty -Name Version, Release -ErrorAction 0 |… [Continue Reading]
Tag: PowerShell
Generate Windows Services Report
This script was designed to inventory the running services in your infrastructure. It requires a c:\temp\servers.txt file to be created and populated with server names; it will then query the… [Continue Reading]
Emailing with Powershell
While working on another script, I had to address the requirement of emailing the results via Outlook. I had two solutions (syntax methods) to accomplish this but I found one… [Continue Reading]
Monitoring Domain Group Membership Changes
I encountered a scenario at work where I had to monitor any changes performed on an account’s active directory membership groups on a daily/weekly basis. I believe there may be… [Continue Reading]
Stop, Start, Restart Windows Services – PowerShell Script
Copy and save the below script as MaintainService.ps1 Open Powershell and navigate to the path where the script is saved Simply type part of the script name and then press… [Continue Reading]