# Author: Kerry Cordero # Version: 1.0.0 # Description: This script searches a text file "dr-dns.txt" for FQDNs, checks the...
When looking at logs, they are usually UTC. This script helps convert the time zone from EST to UTC &...
This will allow you to run Bash scripts from ZSH by just doing ./{script}. Shebang – From the CLI, add...
# Author: Kerry Cordero # Version: 1.0.0 # Description: This script prompts for the IP/FQDN, Record Type, DNS Server to...
This script was developed to address a specific scenario where vendors provide a range of IP subnets to be whitelisted....
$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 three python files. 1. cli-config-changer.py = This is the main file that you run 2. config_file.py = These...
Get-ADGroupMember "Domain ADmins" | Get-AdUser -Property LastLogonDate | select name,distinguishedName,LastLogonDate...
Get-ADUser -Filter * -Properties DisplayName, EmailAddress, Title | select DisplayName, EmailAddress, Title | Export-CSV "C:\Scripts\Email_Addresses.csv" ...