📎 AI Summary:
The forum thread discusses a college student's question about removing specific features (Print & Document Service, Application Server, Group Policy Management, Internet Printing Client, and Windows Server Backup) from Windows Server 2012 R2 Datacenter using PowerShell cmdlets. The user seeks confirmation on the correct cmdlet and whether removing Print & Document Service and Application Server will remove related features simultaneously. An experienced contributor confirms the approach, suggests using `Get-WindowsFeature` to list features, and provides guidance on removing them, leaving the student reassured about their method.

grego86

New Member
Joined
Sep 1, 2016
Messages
18
Thread Author #1
Bare with me. I'm a college student taking a "Implementing Microsoft-based Network Directory Services" class and I'm needing someone to double check a cmdlet for me. My lab I'm currently working on I'm suppose to uninstall the Print & Document Service, Application Server. Features: Group Policy Management, Internet Printing Client, and Windows Server Backup. After this I'll be returning to a full GUI interface from core. Is the correct cmdlet? Also if I just remove Print & Document Service and Application server will the features be removed at the same time ? Thanks for the help !


Remove-WindowsFeature Application-Server,printdocument-service
 

Solution
If you're talking about Server 2012 you can use Get-WindowsFeature "*" to see all available and installed features and then use the Remove-WindowsFeature <featurename> as shown in the output of the Get command. Here is some example output and you can do partial names to find something more specific. I did one for anything with Print in the name.
An image from 'Cmdlet to uninstall .....'. PowerShell outputs showing installed and available Windows features, including Print Services and DHCP Server.

Neemobeer

Windows Forum Team
Staff member
Joined
Jul 4, 2015
Messages
8,995
Which server version?
 

Neemobeer

Windows Forum Team
Staff member
Joined
Jul 4, 2015
Messages
8,995
If you're talking about Server 2012 you can use Get-WindowsFeature "*" to see all available and installed features and then use the Remove-WindowsFeature <featurename> as shown in the output of the Get command. Here is some example output and you can do partial names to find something more specific. I did one for anything with Print in the name.
An image from 'Cmdlet to uninstall .....'. PowerShell outputs showing installed and available Windows features, including Print Services and DHCP Server.
 

Last edited by a moderator:
Solution

grego86

New Member
Joined
Sep 1, 2016
Messages
18
Thread Author #4
Ooops sorry I apologize. Server 2012R2 Datacenter.
 

grego86

New Member
Joined
Sep 1, 2016
Messages
18
Thread Author #5
Awesome thank you ! Glad I was on the right track. Thanks again.