# Create Folder Profile New-Item -ItemType Directory -Path "W:\Profile\sopuol" ...
# Create Share Folder cd W: mkdir ShareFolder ✏️ Edit ...
# Manage Hard Drives, Partitions, and Volumes (DiskPart) diskpart 📋 Copy ...
# (client) Disable Firewall netsh advfirewall set allprofiles state off 📋 Copy ...
# List OU Only Distinguished Name Get-ADOrganizationalUnit -Filter * | Select-object DistinguishedName ...
# Check DNS ROOT and Distinguished Name Get-AdDomain | Select-Object DNSRoot,DistinguishedName ...
# List DistinguishedName of Domain Get-AdDomain | Select-object DistinguishedName 📋 ...
# List domain name : Get-ADDomain | Select-Object -ExpandProperty DNSRoot 📋 Copy ...
# Install AD DS Role Install-WindowsFeature AD-Domain-Services -IncludeManagementTools ...
# Export secedit: secedit /export /cfg C:\secpol.cfg 📋 Copy Copied! ...