HTTP status codes This section describes some of the common HTTP status codes. Note This article doesn’t list every...
This post provides a consistent naming convention for your enterprise resources to ensure clarity, consistency, and easy identification. Importance of...
# Author: Kerry Cordero # Version: 1.0.0 # Description: This script will check the Enabled SSL-TLS Protocols WinHTTP $Protocols =...
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-ADDomainController -Filter * | Select-Object Name, IPv4Address, Site, OperatingSystem ...
I’ve carried the Architect title over the years of being in IT. Below is my opinion on the difference between...
Get-ADUser -Filter * -Properties DisplayName, EmailAddress, Title | select DisplayName, EmailAddress, Title | Export-CSV "C:\Scripts\Email_Addresses.csv" ...
These scripts are an easy way to see if there are any older Windows devices in your domain. You can...
$lastWeek = (Get-Date).AddDays(-7) Get-ADComputer -Filter { whenCreated -ge $lastWeek } ...
$dnsServers = (Resolve-DnsName -Name e-ins.net -Type NS).NameHost Resolve-DnsName -Name _ldap._tcp.dc._msdcs.e-ins.net -Type SRV | Where-Object {$_.NameTarget -in $dnsServers} ...