From d4dc9aec9b171b561e15f5dcbf488483504546e3 Mon Sep 17 00:00:00 2001 From: Meenbeese Date: Fri, 28 Jun 2024 19:29:28 -0400 Subject: [PATCH] Attempt to simplify the launch command (#2214) --- README.md | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 6a113e55..39aadec6 100644 --- a/README.md +++ b/README.md @@ -24,18 +24,13 @@ Winutil must be run in Admin mode because it performs system-wide tweaks. To ach #### Simple way +```ps1 +irm "https://christitus.com/win" | iex ``` -irm https://christitus.com/win | iex -``` -Courtesy of the issue raised at: [#144](/../../issues/144) +Courtesy of the issue: [#144](/../../issues/144) -or by executing: -``` -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. -``` +If this site is not reachable from your country, please try running it directly from GitHub. +```ps1 irm "https://github.com/ChrisTitusTech/winutil/releases/latest/download/winutil.ps1" | iex ```