You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This Script is used as a target for the https://christitus.com/windev alias.
4
+
It queries the latest winget release (no matter if Pre-Release, Draft or Full Release) and invokes It
5
+
.DESCRIPTION
6
+
This Script provides a simple way to always start the bleeding edge release even if it's not yet a full release.
7
+
This function should be run with administrative privileges.
8
+
Because this way of recursively invoking scripts via Invoke-Expression it might very well happen that AV Programs flag this because it's a common way of mulitstage exploits to run
9
+
.EXAMPLE
10
+
irm https://christitus.com/windev | iex
11
+
OR
12
+
Run in Admin Powershell > ./windev.ps1
13
+
#>
14
+
15
+
# Function to fetch the latest release tag from the GitHub API
0 commit comments