Files
winutil/windev.ps1

14 lines
523 B
PowerShell
Raw Normal View History

<#
.SYNOPSIS
This Script is used as a target for the https://christitus.com/windev alias.
.DESCRIPTION
This Script provides a simple way to start the bleeding edge release of winutil.
.EXAMPLE
irm https://christitus.com/windev | iex
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
Invoke-RestMethod "https://github.com/ChrisTitusTech/winutil/releases/download/$latestTag/winutil.ps1" | Invoke-Expression