This commit is contained in:
Kenneth Benzie 2024-08-09 12:54:43 +01:00
parent 2e60d0c414
commit fa5d7af0c0

View File

@ -3,85 +3,93 @@ $choices = '&Yes', '&No'
if (-Not $is_elevated) { if (-Not $is_elevated) {
# Not running with elevated permissions # Not running with elevated permissions
Write-Host "Not running as Administrator. Performing unprivileged actions..."
# Install Scoop # Install Scoop
$scoop_installer = "$env:USERPROFILE/Downloads/ScoopInstaller.ps1" # $scoop_installer = "$env:USERPROFILE/Downloads/ScoopInstaller.ps1"
Invoke-WebRequest -Uri https://get.scoop.sh -OutFile $scoop_installer # Invoke-WebRequest -Uri https://get.scoop.sh -OutFile $scoop_installer
&$scoop_installer -ScoopDir "$env:LocalAppData/Scoop" -ScoopGlobalDir "$env:ProgramData/Scoop" # &$scoop_installer -ScoopDir "$env:LocalAppData/Scoop" -ScoopGlobalDir "$env:ProgramData/Scoop"
# Get the current script's path
$ScriptPath = $MyInvocation.MyCommand.Definition
# Create a new process to run the script as administrator # The command you want to run with elevated privileges
$StartInfo = New-Object System.Diagnostics.ProcessStartInfo $Command = "Set-ExecutionPolicy Bypass -Scope Process -Force; " +
$StartInfo.FileName = "powershell.exe" "[System.Net.ServicePointManager]::SecurityProtocol = " +
"[System.Net.ServicePointManager]::SecurityProtocol -bor 3072; " +
"iex ((New-Object System.Net.WebClient).DownloadString('https://git.infektor.net/config/bootstrap/raw/update/bootstrap-Windows.ps1'))"
# Add parameters to the command-line arguments # Create a temporary batch file
$StartInfo.Arguments = "-NoProfile -ExecutionPolicy Bypass -File `"$ScriptPath`"" $batchFile = [System.IO.Path]::GetTempFileName() + ".bat"
$batchContent = "@echo off`r`n" + `
"powershell.exe -NoProfile -ExecutionPolicy Bypass -Command `"$Command`"`r`n" + `
"pause"
# Elevate privileges # Write the batch content to the file
$StartInfo.Verb = "runas" Set-Content -Path $batchFile -Value $batchContent
# Ensure output is visible to the user # Start the batch file with elevated privileges
$StartInfo.UseShellExecute = $true $StartInfo = New-Object System.Diagnostics.ProcessStartInfo
$StartInfo.RedirectStandardOutput = $false $StartInfo.FileName = $batchFile
$StartInfo.RedirectStandardError = $false $StartInfo.Verb = "runas"
$StartInfo.CreateNoWindow = $false $StartInfo.UseShellExecute = $true
# Start the elevated process [System.Diagnostics.Process]::Start($StartInfo) | Out-Null
[System.Diagnostics.Process]::Start($StartInfo) | Out-Null
# Exit the current (non-admin) process # Exit the current (non-admin) process
exit exit
} }
# Running with elevated permissions # Code to execute after elevation
Write-Host "Running as Administrator. Performing privileged actions..."
# Install 1Password # Pause the script so you can see any output
$decision = $Host.UI.PromptForChoice('Install 1Password', 'Proceed?', $choices, 0) Write-Host "Press Enter to exit..."
if ($decision -eq 0) { Start-Sleep -Seconds 3600 # Sleep for an hour, effectively pausing the script
$1password_installer = "$env:USERPROFILE/Downloads/1PasswordSetup-latest.exe"
Invoke-WebRequest -Uri "https://downloads.1password.com/win/1PasswordSetup-latest.exe" -OutFile "$1password_installer"
&$1password_installer
Remove-Item $1password_installer
} else {
echo 'Skipping 1Password'
}
# Enable Hyper-V # # Install 1Password
$decision = $Host.UI.PromptForChoice('Enable Hyper-V', 'Proceed?', $choices, 0) # $decision = $Host.UI.PromptForChoice('Install 1Password', 'Proceed?', $choices, 0)
if ($decision -eq 0) { # if ($decision -eq 0) {
Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Hyper-V -All # $1password_installer = "$env:USERPROFILE/Downloads/1PasswordSetup-latest.exe"
} else { # Invoke-WebRequest -Uri "https://downloads.1password.com/win/1PasswordSetup-latest.exe" -OutFile "$1password_installer"
echo 'Skipping Hyper-V' # &$1password_installer
} # Remove-Item $1password_installer
# } else {
# echo 'Skipping 1Password'
# }
# Enable Containters # # Enable Hyper-V
$decision = $Host.UI.PromptForChoice('Enable Containers', 'Proceed?', $choices, 0) # $decision = $Host.UI.PromptForChoice('Enable Hyper-V', 'Proceed?', $choices, 0)
if ($decision -eq 0) { # if ($decision -eq 0) {
Enable-WindowsOptionalFeature -Online -FeatureName Containers -All # Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Hyper-V -All
} else { # } else {
echo 'Skipping Containers' # echo 'Skipping Hyper-V'
} # }
# Get the shell application object # # Enable Containters
$shellApp = New-Object -ComObject "Shell.Application" # $decision = $Host.UI.PromptForChoice('Enable Containers', 'Proceed?', $choices, 0)
# if ($decision -eq 0) {
# Enable-WindowsOptionalFeature -Online -FeatureName Containers -All
# } else {
# echo 'Skipping Containers'
# }
# Run the command without elevation # # Get the shell application object
$shellApp.ShellExecute("powershell.exe", "-NoProfile -Command `"& { $nonElevatedCommand }`"", "", "open", 0) # $shellApp = New-Object -ComObject "Shell.Application"
# Start-Process -NoNewWindow -Credential "$env:UserDomain\$env:UserName" -FilePath "powershell.exe" -ArgumentList "-NoProfile -Command & { & $($command) }" # # Run the command without elevation
# Start-Process -FilePath "powershell.exe" -ArgumentList "-NoProfile -Command & { & $($command) }" -Credential $user -WindowStyle Hidden # $shellApp.ShellExecute("powershell.exe", "-NoProfile -Command `"& { $nonElevatedCommand }`"", "", "open", 0)
# Install Chocolatey # # Start-Process -NoNewWindow -Credential "$env:UserDomain\$env:UserName" -FilePath "powershell.exe" -ArgumentList "-NoProfile -Command & { & $($command) }"
iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1')) # # Start-Process -FilePath "powershell.exe" -ArgumentList "-NoProfile -Command & { & $($command) }" -Credential $user -WindowStyle Hidden
# Install SSH Server # # Install Chocolatey
$decision = $Host.UI.PromptForChoice('Install SSH Server', 'Proceed?', $choices, 0) # iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'))
if ($decision -eq 0) {
choco install --yes "--package-parameters=/SSHServerFeature" openssh # # Install SSH Server
Start-Service sshd # $decision = $Host.UI.PromptForChoice('Install SSH Server', 'Proceed?', $choices, 0)
Set-Service -Name sshd -StartupType 'Automatic' # if ($decision -eq 0) {
} else { # choco install --yes "--package-parameters=/SSHServerFeature" openssh
echo 'Skipping SSH Server' # Start-Service sshd
} # Set-Service -Name sshd -StartupType 'Automatic'
# } else {
# echo 'Skipping SSH Server'
# }