Exercises

  • On domain controller, find module that allows to manage Active Directory
  • List all the Active Directory users
  • List members of “Enterprise Administrators”
  • Find the feature name for Windows Server Backup and install it with PowerShell

Commands

### Server

# Check IP configuration
# Show steps in Server how to install

# Check hostname
Hostname

# Rename server
Rename-Computer ps-svr1

# Restart computer
Reboot-computer

# Get-WindowsFeature

# Install-WindowsFeature 
Install-WindowsFeature -Name AD-Domain-Services -IncludeManagementTools

Install-ADDSForest -DomainName posh.pri

### Client

# Check IP
GIP

Hostname

Add-Computer -DomainName posh.pri