Attempt to simplify the launch command (#2214)

This commit is contained in:
Meenbeese 2024-06-28 19:29:28 -04:00 committed by GitHub
parent e4d0e16b26
commit d4dc9aec9b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -24,18 +24,13 @@ Winutil must be run in Admin mode because it performs system-wide tweaks. To ach
#### Simple way #### Simple way
```ps1
irm "https://christitus.com/win" | iex
``` ```
irm https://christitus.com/win | iex Courtesy of the issue: [#144](/../../issues/144)
```
Courtesy of the issue raised at: [#144](/../../issues/144)
or by executing: If this site is not reachable from your country, please try running it directly from GitHub.
``` ```ps1
iwr -useb https://christitus.com/win | iex
```
if for some reason this site is not reachable from your country please try running it directly from github.
```
irm "https://github.com/ChrisTitusTech/winutil/releases/latest/download/winutil.ps1" | iex irm "https://github.com/ChrisTitusTech/winutil/releases/latest/download/winutil.ps1" | iex
``` ```