diff --git a/vargscript.ps1 b/vargscript.ps1 index eb0b78e..17daece 100644 --- a/vargscript.ps1 +++ b/vargscript.ps1 @@ -227,6 +227,15 @@ function Install-Messenger { Remove-Item $tempPath -Force } +function Install-Aliasvault { + Write-Host "Installing AliasVault" -ForegroundColor Yellow + $download = "https://git.tcmeta.net/kurtis/win11-scripts/raw/branch/main/vargscript/AliasVault.msi" + $tempPath = Join-Path $env:TEMP "AliasVault.msi" + Invoke-WebRequest $download -Out $tempPath + Start-Process 'msiexec.exe' -ArgumentList "/I `"$tempPath`" /qn" -Wait + Remove-Item $tempPath -Force +} + function Install-Mailspring { Write-Host "Installing MailSpring" -ForegroundColor Yellow winget install Foundry376.Mailspring @@ -287,6 +296,7 @@ do { Install-Mealie Install-Messages Install-Messenger + Install-Aliasvault Pause } "2" {