2024-06-28 23:13:12 +02:00
|
|
|
<#
|
|
|
|
|
.SYNOPSIS
|
|
|
|
|
This Script is used as a target for the https://christitus.com/windev alias.
|
|
|
|
|
.DESCRIPTION
|
2026-01-08 22:20:38 +02:00
|
|
|
This Script provides a simple way to start the bleeding edge release of winutil.
|
2024-06-28 23:13:12 +02:00
|
|
|
.EXAMPLE
|
2024-06-29 01:15:39 +03:00
|
|
|
irm https://christitus.com/windev | iex
|
2024-06-28 23:13:12 +02:00
|
|
|
OR
|
|
|
|
|
Run in Admin Powershell > ./windev.ps1
|
|
|
|
|
#>
|
|
|
|
|
|
2026-01-09 19:31:42 +02:00
|
|
|
$latestTag = (Invoke-RestMethod "https://api.github.com/repos/ChrisTitusTech/winutil/tags")[0].name
|
2026-01-08 22:20:38 +02:00
|
|
|
Invoke-RestMethod "https://github.com/ChrisTitusTech/winutil/releases/download/$latestTag/winutil.ps1" | Invoke-Expression
|