Adding Server Roles and Features - Paiet/Windows-Server-Wiki GitHub Wiki
Overview of server roles and features
--Stored SxS file Side by Side
--Dedicated server
-- The roles underneath other roles are called role services and they often complement a role by providing add-on functionality
--Most server roles and features are independent of each other. However, some roles have dependencies that require other roles. For example, to add the Active Directory Rights Management Services role, you need to add the Web Server (IIS) role. The Active Directory Domain Services role requires DNS so you can use the DNS Server role or a third-party DNS solution.Most roles also have an applicable feature that you can add to manage the role. For example, when you add the DHCP Server role, you should install the DHCP Server Tools feature. You should do this because it enables you to manage the DHCP server locally with a management console. Optionally, if you plan to manage the DHCP server from a different computer, you could add only the role and not the feature (and instead add the feature on another computer).
Adding roles and features in the GUI
--pg.80
--Install DHCP on PLABDM01 VIA GUI
Working with roles and features by using PowerShell
--Get-WindowsFeature | where {$.FeatureType --eq 'Feature' --and $.Installed --eq '$true'} | select DisplayName,InstallState
--Install Print Services VIA PowerShell
Install-WindowsFeature --Name Print-Services --IncludeAllSubFeature -- IncludeManagementTools --Restart
--Check Work
Get-WindowsFeature Print-Services
Removing server roles and features
--Uninstall-WindowsFeature --Name Print-Services --Remove -Restart
--Check work
Get-WindowsFeature Print-Services