mirror of
https://github.com/ChrisTitusTech/winutil
synced 2026-02-04 06:50:09 +00:00
* Update windev.ps1 * Update windev.ps1 * Update windev.ps1 * Update windev.ps1 * Update windev.ps1 * Update windev.ps1
14 lines
531 B
PowerShell
14 lines
531 B
PowerShell
<#
|
|
.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
|
|
#>
|
|
|
|
$latestTag = (Invoke-RestMethod 'https://api.github.com/repos/ChrisTitusTech/winutil/releases')[0].tag_name
|
|
Invoke-RestMethod "https://github.com/ChrisTitusTech/winutil/releases/download/$latestTag/winutil.ps1" | Invoke-Expression
|