9 lines
304 B
PowerShell
9 lines
304 B
PowerShell
#!/bin/pwsh
|
|
param($context);
|
|
. "$PSScriptRoot/../../../Common/Scripts/Context.ps1";
|
|
|
|
[Context] $context = $context;
|
|
winget install --accept-source-agreements --accept-package-agreements -s winget --scope machine -e --id JanDeDobbeleer.Aliae;
|
|
. "$PSScriptRoot/../../Config/aliae/Install.ps1";
|
|
refreshenv;
|