Skip to content

Commit

Permalink
Create unigetui-np.json
Browse files Browse the repository at this point in the history
  • Loading branch information
marticliment committed Oct 24, 2024
1 parent 0963ed6 commit a93289a
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions bucket/unigetui-np.json
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"
}
}
}
}

0 comments on commit a93289a

Please sign in to comment.