Skip to content

Instantly share code, notes, and snippets.

View Daethyra's full-sized avatar
🤍
Vibing<3

Daethyra

🤍
Vibing<3
  • Cyberspace
  • 08:45 (UTC -07:00)
View GitHub Profile
@Daethyra
Daethyra / Py31011_PSAI.ps1
Created August 19, 2023 00:51
Python 3.10.11 PowerShell Auto-Installation
# PowerShell Script to Download and Install Python 3.10.11
# This script automates the process of downloading and installing Python 3.10.11.
# It includes error handling, version checking, admin privilege checking, installer validation, and post-installation cleanup.
# Check if Python 3.10.11 is already installed
$installedVersion = & python --version 2>&1
if ($installedVersion -match "Python 3.10.11") {
Write-Host "Python 3.10.11 is already installed. Exiting..."
exit
}