I work a lot with other products like HP Dell-Brocade, and EMC. Sometimes I need to port-channel to them, but...
JoinedMay 2, 2023
Articles667
20+ years of experience and proven performance in large scale enterprise network infrastructure architecture, design, implementation, migration, security, operation, troubleshooting, leading/managing teams, and budgets. I have a BS in Cybersecurity and a Master's from the University of Florida.
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...
There are three python files. 1. cli-config-changer.py = This is the main file that you run 2. config_file.py = These...
netstat -na | find “51000” or netstat -np [protocol] | find “port #” netstat -np tcp | find “51000” or...
In my case I was troubleshooting an interface that had to be 100Mb. But these commands can be used on...
Get-ADGroupMember "Domain ADmins" | Get-AdUser -Property LastLogonDate | select name,distinguishedName,LastLogonDate...
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}...
I ran accross an issue where a Cisco VCSE device was setup by another engineer but the Palo Alto FW...