-
Notifications
You must be signed in to change notification settings - Fork 581
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
21-development.md: support Windows Server #10287
Conversation
doc/21-development.md
Outdated
1. `Enable-WindowsOptionalFeature -FeatureName NetFx3ServerFeatures -Online` | ||
(Windows Server only) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Windows Server only
If this is something which only applies to some versions of an operating system, it should be written before the command as otherwise half the people would blindly copy the command just to be confused why it won't work on their non-server operating system.
1. `Enable-WindowsOptionalFeature -FeatureName "NetFx3" -Online` | ||
1. `Enable-WindowsOptionalFeature -FeatureName NetFx3ServerFeatures -Online` | ||
(Windows Server only) | ||
2. `Enable-WindowsOptionalFeature -FeatureName NetFx3 -Online` | ||
(reboot when asked!) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Isn't "(reboot when asked!)" also already not prominent enough then?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wouldn't say so. The Windows Server only thing is a precondition for the command, while reboot when asked follows from the command.
That OS need NetFx3ServerFeatures to be enabled before NetFx3.
7ff9d5e
to
ab0f20d
Compare
That OS need NetFx3ServerFeatures to be enabled before NetFx3.