So i noticed that there is multiple IDE's out there that might be of use for some. I managed to receive a request for VSCodium as it's the Open Source variant of Visual Studio Community, so here it is, it automatically grabs the latest release from github (top result for tag Latest).
Update 2025-04-07:
Initial release here
Here we go:
$ProgressPreference = 'SilentlyContinue'
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
$tp = "C:\TempPath"
mkdir $tp
$owner = "VSCodium"
$repo = "vscodium"
$latestRelease = Invoke-RestMethod -Uri "https://api.github.com/repos/$owner/$repo/releases/latest"
$asset = $latestRelease.assets | Where-Object { $_.name -like "VSCodium-x64-*.msi" } | Select-Object -First 1
$assetUrl = $asset.browser_download_url
$installerPath = "$tp\$($asset.name)"
Invoke-WebRequest -Uri $assetUrl -OutFile $installerPath
Start-Process -FilePath $installerPath -ArgumentList "/qn /norestart" -Wait
Start-Sleep -Seconds 30
del $installerPath