From 0cd2ea654885dab59b0fa3f3006e34f178d733aa Mon Sep 17 00:00:00 2001 From: Hendy Irawan Date: Wed, 30 May 2018 17:11:14 +0700 Subject: [PATCH] Remove . The command should be stand-alone, not part of a "sentence": ``` Enable-WindowsOptionalFeature : A positional parameter cannot be found that accepts argument '.'. At line:1 char:1 + Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Hyper-V ... + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + CategoryInfo : InvalidArgument: (:) [Enable-WindowsOptionalFeature], ParameterBindingException + FullyQualifiedErrorId : PositionalParameterNotFound,Microsoft.Dism.Commands.EnableWindowsOptionalFeatureCommand ``` --- website/source/docs/hyperv/index.html.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/source/docs/hyperv/index.html.md b/website/source/docs/hyperv/index.html.md index ff860ef77..95706f377 100644 --- a/website/source/docs/hyperv/index.html.md +++ b/website/source/docs/hyperv/index.html.md @@ -24,7 +24,7 @@ To enable Hyper-V, go to "Programs and Features", click on "Turn Windows features on or off" and check the box next to "Hyper-V". Or install via PowerShell with: -Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Hyper-V -All. +Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Hyper-V -All See official documentation [here](https://docs.microsoft.com/en-us/virtualization/hyper-v-on-windows/quick-start/enable-hyper-v).