-
-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0963ed6
commit a93289a
Showing
1 changed file
with
37 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
{ | ||
"version": "3.1.2", | ||
"description": "UniGetUI - An intuitive GUI for the most common CLI package managers for Windows 10 and 11", | ||
"homepage": "https://www.marticliment.com/unigetui", | ||
"license": { | ||
"identifier": "MIT", | ||
"url": "https://github.com/marticliment/UniGetUI/blob/main/LICENSE" | ||
}, | ||
"architecture": { | ||
"64bit": { | ||
"url": "https://github.com/marticliment/UniGetUI/releases/download/3.1.2/UniGetUI.Installer.exe#/setup.exe", | ||
"hash": "456A4F2D548C590ECF56E90D1846DDF2BCD9E3D7BDE6747602328885675A2C8F" | ||
} | ||
}, | ||
"installer": { | ||
"script": [ | ||
"if (!(is_admin)) { Write-Host \"\nERROR: $app requires admin rights to $cmd\" -ForegroundColor DarkRed; break }", | ||
"Start-Process -Wait \"$dir\\setup.exe\" \"/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP- /NoAutoStart /ALLUSERS /NoWinGet /NoChocolatey\"" | ||
] | ||
}, | ||
"uninstaller": { | ||
"script": [ | ||
"if (!(is_admin)) { Write-Host \"\nERROR: $app requires admin rights to $cmd\" -ForegroundColor DarkRed; break }", | ||
"$uninstaller = (Get-ItemProperty -ErrorAction Ignore \"HKCU:\\SOFTWARE\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\{889610CC-4337-4BDB-AC3B-4F21806C0BDE}_is1\" -Name UninstallString).UninstallString", | ||
"if (!$uninstaller) { $uninstaller = (Get-ItemProperty -ErrorAction Ignore \"HKLM:\\SOFTWARE\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\{889610CC-4337-4BDB-AC3B-4F21806C0BDE}_is1\" -Name UninstallString).UninstallString }", | ||
"if (!$uninstaller) { warn 'Could not find app info in registry' }", | ||
"Start-Process -Wait \"$uninstaller\" \"/VERYSILENT\" -Verb RunAs" | ||
] | ||
}, | ||
"autoupdate": { | ||
"architecture": { | ||
"64bit": { | ||
"url": "https://github.com/marticliment/UniGetUI/releases/download/$version/UniGetUI.Installer.exe#/setup.exe#/setup.exe" | ||
} | ||
} | ||
} | ||
} |