From 41a4932bafb8a1afd25a6ddb74ce31a5f78cd7e2 Mon Sep 17 00:00:00 2001 From: Simon Gardling Date: Thu, 16 Jan 2025 10:01:02 -0500 Subject: [PATCH] rename powershell file --- oem/install.bat | 4 ++-- oem/{vs_extentions.ps1 => powershell-stuff.ps1} | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) rename oem/{vs_extentions.ps1 => powershell-stuff.ps1} (99%) diff --git a/oem/install.bat b/oem/install.bat index d292c21..80490bd 100644 --- a/oem/install.bat +++ b/oem/install.bat @@ -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 diff --git a/oem/vs_extentions.ps1 b/oem/powershell-stuff.ps1 similarity index 99% rename from oem/vs_extentions.ps1 rename to oem/powershell-stuff.ps1 index d314949..bffbf2c 100644 --- a/oem/vs_extentions.ps1 +++ b/oem/powershell-stuff.ps1 @@ -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 +