So i noticed that there is multiple IDE's out there that might be of use for some.Here we have VS Code it automatically grabs the latest release.
Update 2025-06-12:
Initial release here
Here we go:
$ProgressPreference = 'SilentlyContinue'
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
$tp = "C:\TempPath"
mkdir $tp -Force
$installerUrl = "https://update.code.visualstudio.com/latest/win32-x64-user/stable"
$installerPath = "$tp\VSCodeSetup.exe"
Invoke-WebRequest -Uri $installerUrl -OutFile $installerPath
Start-Process -FilePath $installerPath -ArgumentList "/silent /mergetasks=!runcode" -Wait
Start-Sleep -Seconds 30
Remove-Item $installerPath