# Author: Kerry Cordero # Version: 1.0.0 # Description: This script will check the Enabled SSL-TLS Protocols WinHTTP $Protocols =...
# Author: Kerry Cordero # Version: 1.0.0 # Description: This script searches a text file "dr-dns.txt" for FQDNs, checks the...
To find the Flexible Single Master Operations (FSMO) roles in an Active Directory (AD) environment using PowerShell, you can use...
$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} ...
There are two scripts below. This is if you’re in an environment where you MAC Addresses and ARP table are...
# Author: Kerry Cordero # Version: 1.0.0 # Description: This script will find IP Location via ipstack API import requests...
# Author: Kerry Cordero # Version: 1.0.0 # Description: This script prompts for domain and gets the TLS version for...
Troubleshooting an API issue involves understanding the specific problem, checking logs, examining request and response data, and more. Here are...
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}...