Skip to content

Instantly share code, notes, and snippets.

View gknowles's full-sized avatar

Glen Knowles gknowles

  • Washington, USA
View GitHub Profile
@gknowles
gknowles / elevate.bat
Last active May 19, 2022 20:47
Launch new elevated Windows command line session
@net session 1>nul 2>nul
@if not errorlevel 1 echo Session already elevated. & exit /b 0
powershell "start-process cmd -argumentlist \"/k cd %cd%\" -verb runas"
@if not errorlevel 1 exit
@gknowles
gknowles / .VsEnv.md
Last active August 11, 2021 05:57
Batch files to switch command line environment between VS 2017, 2019, and 2022

Files included

  • VsEnv.bat - switch command line enironment between Visual Studio versions
  • vs15.bat - calls VsEnv to switch to VS2017
  • vs16.bat - calls VsEnv to switch to VS2019
  • vs17.bat - calls VsEnv to switch to VS2022 Preview
  • EnvReset.bat - generic tool to snapshot and restore enrionment variables