Get all AD Groups: show user group list Get all AD Groups with “admin” in the name: show user group...
Group = Web Admins Get-ADGroupMember -Identity "Web Admins" | Where-Object {$_.objectClass -eq "user"} | Select-Object Name, SamAccountName...
Get-ADGroup -Filter * | Select-Object Name, GroupCategory, GroupScope | Format-Table -AutoSize...
HTTP 1.1: HTTP 1.1 was released in 1997 and is still widely used today. It improved on HTTP 1.0 by...
# Author: Kerry Cordero # Version: 1.0.0 # Description: This script will use RIPE to Research IP Subnet (BGP AS,...
Command Prompt: for /L %i in (1,1,254) do @ping -n 1 4.2.2.%i | find "Reply" Powershell: 1..254 | % {...
It is generally not a good practice to give service accounts DBO rights, unless absolutely necessary. Service accounts often interact...
In SQL Server, DBO refers to the database owner schema. The dbo schema is the default schema for a newly...
What if you had to transfer a large amount of Data for backups? Where do you put them? How do...
To calculate how long it would take to transfer a certain amount of data over a given network connection, we...