We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89b97e0 commit 42fa39bCopy full SHA for 42fa39b
site/content/en/docs/start/_index.md
@@ -476,7 +476,7 @@ choco install minikube
476
Or if using `PowerShell`, use this command:
477
```powershell
478
New-Item -Path 'c:\' -Name 'minikube' -ItemType Directory -Force
479
- Invoke-WebRequest -OutFile 'c:\minikube\minikube.exe' -Uri 'http://github.com/kubernetes/minikube/releases/latest/download/minikube-windows-amd64.exe' -UseBasicParsing
+ $ProgressPreference = 'SilentlyContinue'; Invoke-WebRequest -OutFile 'c:\minikube\minikube.exe' -Uri 'http://github.com/kubernetes/minikube/releases/latest/download/minikube-windows-amd64.exe' -UseBasicParsing
480
```
481
482
2. Add the `minikube.exe` binary to your `PATH`.
0 commit comments