I was getting an error when I went to run a PowerShell script. This was the error: PS C:\> .\kerrys-script.ps1...
These scripts are an easy way to see if there are any older Windows devices in your domain. You can...
I was getting this error: File C:\Scripts\XXXXXX.ps1 cannot be loaded. The file C:\Scripts\XXXXXX.ps1 is not digitally signed. You cannot run...
Find Active Users with PW Expires Date/Time: Import-Module ActiveDirectory Get-ADUser -SearchBase "DC=cordero,DC=me" -filter {Enabled -eq $True -and PasswordNeverExpires -eq $False}...
Get-ADGroupMember "Domain ADmins" | Get-AdUser -Property LastLogonDate | select name,distinguishedName,LastLogonDate...
Below I’ll show you how easy it is to get the cpassword. There are environments where this password could be...
This will dump all GPO’s into HTML files. Get-GPO -all | % { Get-GPOReport -GUID $_.id -ReportType HTML -Path "C:\MyExports\$($_.displayName).html"...
I wanted a way to server for servers with specific partial names. For example, let us say I’m searching for...