instalee/handlers/chocolatey/install

7 lines
327 B
Plaintext
Raw Normal View History

2022-08-09 17:47:51 +00:00
#!/bin/sh
2022-09-08 17:25:02 +00:00
# https://stackoverflow.com/questions/43650595/is-there-a-command-to-check-if-git-bash-is-opened-in-administrator-mode/58846650#58846650
if [[ $(sfc 2>&1 | tr -d '\0') =~ SCANNOW ]]
then choco install --limit-output "$@"
2022-09-08 17:25:02 +00:00
else exec powershell -Command "Start-Process 'choco' -Verb runAs -ArgumentList 'install $*'"
fi