Add support for PowerShell conf.d on Linux

This commit is contained in:
Manuel Thalmann 2024-09-19 21:53:24 +02:00
parent fb2ff92b73
commit 40ea007b77
3 changed files with 29 additions and 2 deletions
scripts/Common/Software/PowerShell

View file

@ -0,0 +1,11 @@
#!/bin/env fish
begin
set -l dir (status dirname)
source "$dir/../../Scripts/software.fish"
function configureSW -V dir
sudo -HE pwsh "$dir/Manage.ps1" Configure
end
runInstaller $argv
end