rename powershell file

This commit is contained in:
Simon Gardling 2025-01-16 10:01:02 -05:00
parent 817ce4771e
commit 41a4932baf
Signed by: titaniumtown
GPG Key ID: 9AB28AC10ECE533D
2 changed files with 3 additions and 2 deletions

View File

@ -18,8 +18,8 @@ winget install -e --id Microsoft.VisualStudio.2022.BuildTools --accept-source-ag
winget install -e --id Microsoft.VisualStudio.2022.Community --accept-source-agreements --override "--passive --wait"
:: install extentions
powershell -executionpolicy remotesigned -File C:\OEM\vs_extentions.ps1
:: powershell stuff
powershell -executionpolicy remotesigned -File C:\OEM\powershell-stuff.ps1
winget install Mozilla.Firefox --accept-source-agreements

View File

@ -11,3 +11,4 @@ $asmdude_vsix = "$($env:TEMP)\AsmDude.vsix"
wget "https://github.com/HJLebbink/asm-dude/releases/download/v2.0.1.0/AsmDude2-vsix-2.0.1.0.vsix" -OutFile "$($asmdude_vsix)"
Start-Process -Filepath "$($VSInstallDir)\VSIXInstaller" -ArgumentList "/q /a $($asmdude_vsix)" -Wait