0%

0/1 Lessons

Course Introduction

• 2min

0 / 1 lessons complete

Downloading and Installing Windows Server

• 1hr 11min

0 / 9 lessons complete

Roles and Features

• 1hr 35min

0 / 6 lessons complete

Upgrading and Migrating Windows Server

• 1hr 0min

0 / 6 lessons complete

Windows Server Storage Solutions

• 1hr 3min

0 / 7 lessons complete

Windows Server Backup

• 47min

0 / 7 lessons complete

Course Conclusion

• 2min

0 / 1 lessons complete

Lab: Installing Windows Server Roles and Features on Server Core

Instructions

Q&A (0)

Notes (0)

Resources (0)

Saving Progress...

Resources

There are no resources for this lesson.

Notes can be saved and accessed anywhere in the course. They also double as bookmarks so you can quickly review important lesson material.

Create note

3.8 4 votes
Lesson Rating
Subscribe
Notify of
profile avatar
25 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments

profile avatar
Ambrose Garza(@ambroseg)
Member
1 year ago

if you use a comma after the feature name you can both install and uninstall both features at same time. example:
dns,net-framework-features

profile avatar
Vincent Zapata(@vincent-zapata-2)
Member
1 year ago

when installing the Windows feature, .netfrwrk 3.5 will not install. I am typing in the command word for word and only the DNS installs. any suggestions?

profile avatar
Ricardo P(@ricardop)
Admin
Reply to  Vincent Zapata
1 year ago

Hi profile avatar Vincent Zapata

What is the command you are typing? can you post it here?

Ricardo

profile avatar
Vincent Zapata(@vincent-zapata-2)
Member
Reply to  Ricardo P
1 year ago

Install-WindowsFeature -Name DNS -IncludeAllSubFeature -IncludeAllManagementTools 

The test grades me for the DNS feature and Uninstall of features, It will not let me pass with 100 since it wants me to submit for adding .netfrmwrk 3.5. Just now I did the quiz while following the video, and the video does not show .netfrmwrk 3.5 installed either.

profile avatar
Ricardo P(@ricardop)
Admin
Reply to  Vincent Zapata
1 year ago

Try with the following:
Install-WindowsFeature Net-Framework-Core -source D:\ sources\ sxs

Last edited 1 year ago by Ricardo P
profile avatar
Paul Ma(@paulm)
Member
Reply to  Ricardo P
1 year ago

Video could use an update by including the abovementioned command that includes the “-source” argument/parameter. Thank you for your help!

profile avatar
Chris Cross(@chris-cross)
Member
1 year ago

i like learning the headless server

profile avatar
Brady Durham(@bradyd)
Member
9 months ago

The lab instructions say to install the .NET 3.5 Feature but I did not see anything about that in the video and when I clicked on score it shows as not installed.
Also, I did everything as listed in the video in regards to uninstalling those roles and features and after clicking on score it said I had not uninstalled those roles and features.
It did say that I had successfully installed the server role.

profile avatar
Brady Durham(@bradyd)
Member
9 months ago

Update: I was able to complete everything in the lab except installing the .NET 3.5 Feature. I rewatched the video and still can’t find out about that part and can’t complete that part of the lab.

profile avatar
Ricardo P(@ricardop)
Admin
Reply to  Brady Durham
9 months ago

Hi profile avatar Brady Durham

To install it you can try with:

Install-WindowsFeature Net-Framework-Core -source D:\sources\sxs

We have updated the lesson transcript to include the command.

Thank you,

Ricardo

profile avatar
Brady Durham(@bradyd)
Member
Reply to  Ricardo P
9 months ago

Hello Ricardo, thanks for the update. I was successful in installing the .Net 3.5 feature but was unable to uninstall it. You’ll probably want to update that part with the syntax as well.
I tried using Uninstall-WindowsFeature Net-Framework-Core -source D:\sources\sxs
With the update you can do everything in the lab except to uninstall the .Net 3.5 feature.

profile avatar
Ricardo P(@ricardop)
Admin
Reply to  Brady Durham
9 months ago

Great! Let me test the uninstallation and I will be updating the lesson.

profile avatar
carlisej(@carlisej)
Member
9 months ago

Net Framework core has been removed for the command list of feature. The new one is NET Framework Features, having problems intalling it.

profile avatar
Ricardo P(@ricardop)
Admin
Reply to  carlisej
9 months ago

Hi profile avatar carlise jenkins

Thanks for the heads-up on the command list of feature updates. If you are doing it in the IT Lab from the Course, then you should be able to use the commands from the lessons.

Ricardo

profile avatar
Brady Durham(@bradyd)
Member
9 months ago

Ricardo, were you ever able to update the lab on uninstalling the NET 3.5 feature on Server Core?
That’s the only thing I have left to complete. I was able to do everything in the lab but uninstall the NET 3.5 feature and I just wanted to follow up.

profile avatar
Ricardo P(@ricardop)
Admin
Reply to  Brady Durham
9 months ago

Thanks for the head up I almost forget.

You can use the command following command: Uninstall-WindowsFeature -Name Net-Framework-Core

We will update the lesson notes.

Ricardo

profile avatar
Brady Durham(@bradyd)
Member
Reply to  Ricardo P
9 months ago

Thanks Ricardo. I’ll use that command pretty soon and let you know if I was successful.

profile avatar
Umesh(@umeshp)
Member
9 months ago

It keeps giving me an error – “Connection issue”. I’m keep retying but no luck

profile avatar
Ricardo P(@ricardop)
Admin
Reply to  Umesh
9 months ago

Hi profile avatar Umesh Prajapati

The Connection issue can show up if there’s not enough bandwidth from the client browser to the data center lab virtual machine or if there’s a network restriction. Check the following link for connectivity requirements:
https://docs.skillable.com/tms/connectivity-requires.md

Ricardo

profile avatar
Matt C(@matthew-cutshall)
Member
9 months ago

The server will not allow me to Uninstall the features. I’ve tried several times and even had the server completely reboot on its own.

profile avatar
Ricardo P(@ricardop)
Admin
Reply to  Matt C
9 months ago

Hi profile avatar matthew cutshall

Which commands are you using to Uninstall the features, and which ones?

Typically to remove a feature from PowerShell you use Uninstall-WindowsFeature with -Name and the name of the feature to remove. To get the name of the feature we use Get-WindowsFeature.

Thank you

profile avatar
Matt C(@matthew-cutshall)
Member
Reply to  Ricardo P
9 months ago

No matter what I do its not working. It allowed me to do it once with DNS then it stopped working, then it passed me without even completing the task.

profile avatar
Ricardo P(@ricardop)
Admin
Reply to  Matt C
9 months ago

It might have needed a reboot after uninstalling DNS since it is required to completely remove the role.
The commands are the following:

Get-WindowsFeature
Install-WindowsFeature DNS -IncludeAllSubFeature -IncludeManagementTools
Install-WindowsFeature Net-Framework-Core -source D:\sources\sxs
Uninstall-WindowsFeature DNS -IncludeManagementTools
Restart-Computer
Uninstall-WindowsFeature Net-Framework-Core

I see the lab is completed. I checked the lab, and the weight of the tasks was not balanced. The last task was having a weight of 20 and that’s why it passed you with 80. I have corrected it.

profile avatar
Matt C(@matthew-cutshall)
Member
Reply to  Ricardo P
9 months ago

I’ve also completed the windows server lab several times and its not showing completed. There’s a glitch somewhere.

profile avatar
Ricardo P(@ricardop)
Admin
Reply to  Matt C
9 months ago

Right, I have seen the Desktop lab is not completed. I have marked that completed for you. It should be working when clicking the Complete & Continue button.