mirror of
https://github.com/PR0M3TH3AN/VoxVera.git
synced 2025-09-08 06:58:42 +00:00
13 lines
346 B
PowerShell
13 lines
346 B
PowerShell
$toolsDir = Split-Path -Parent $MyInvocation.MyCommand.Definition
|
|
$url = 'https://github.com/PR0M3TH3AN/VoxVera/releases/latest/download/voxvera.exe'
|
|
|
|
$packageArgs = @{
|
|
packageName = 'voxvera'
|
|
fileType = 'exe'
|
|
url = $url
|
|
silentArgs = '/S'
|
|
validExitCodes = @(0)
|
|
}
|
|
|
|
Install-ChocolateyPackage @packageArgs
|