updated irm to iwr for the progress and

updated one-liner with scoped execution
This commit is contained in:
psyirius
2024-08-21 02:14:40 -07:00
parent 51dd5ee125
commit d73b237550
3 changed files with 7 additions and 5 deletions

View File

@ -20,12 +20,14 @@
.EXAMPLE
Launch the latest release of winutil. (one-liner)
Invoke-Expression "& { $(Invoke-RestMethod 'https://christitus.com/win') }"
iex "& { $(iwr 'https://christitus.com/win') }"
.EXAMPLE
Launch the latest preview release of winutil.
.\launcher.ps1 -preview
.EXAMPLE
Launch the latest preview release of winutil. (one-liner)
Invoke-Expression "& { $(Invoke-RestMethod 'https://christitus.com/win') } -preview"
iex "& { $(iwr 'https://christitus.com/win') } -preview"
#>
[CmdletBinding()]
param(