--- /dev/null
+#!/bin/pwsh
+
+echo "'archiver@$Env:WEBI_TAG' is an alias for 'arc@$Env:WEBI_VERSION'"
+IF ($Env:WEBI_HOST -eq $null -or $Env:WEBI_HOST -eq "") { $Env:WEBI_HOST = "https://webinstall.dev" }
+curl.exe -fsSL "$Env:WEBI_HOST/arc@$Env:WEBI_VERSION" | powershell
--- /dev/null
+# title: Archiver (arc alias)
+# homepage: https://webinstall.dev/arc
+# tagline: Alias for https://webinstall.dev/arc
+# alias: arc
+# description: |
+# See https://webinstall.dev/arc
+
+echo "'archiver@${WEBI_TAG:-stable}' is an alias for 'arc@${WEBI_VERSION:-}'"
+WEBI_HOST=${WEBI_HOST:-"https://webinstall.dev"}
+curl -fsSL "$WEBI_HOST/arc@${WEBI_VERSION:-}" | bash