From 18498c5c4af1660742e604d99635a52ab84b6c29 Mon Sep 17 00:00:00 2001 From: Jona Heitzer Date: Tue, 29 Oct 2024 09:49:28 +0100 Subject: [PATCH] Automatically start VS Code after setup completes --- setup.ps1 | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/setup.ps1 b/setup.ps1 index cdb387e..3bf81ee 100644 --- a/setup.ps1 +++ b/setup.ps1 @@ -2,4 +2,8 @@ Invoke-WebRequest -UseBasicParsing -OutFile winpy.exe -Uri https://github.com/winpython/winpython/releases/download/10.7.20240908final/Winpython64-3.12.6.0dot.exe Start-Process -FilePath 'C:\Program Files\7-Zip\7z.exe' -ArgumentList "x", "./winpy.exe" -Wait -NoNewWindow -PassThru -# TODO: Automatically install python extensions \ No newline at end of file +# TODO: Automatically install python extensions +# TODO: Automatically set python interpreter + +# Start VS Code +Start-Process -FilePath '.\WPy64-31260\VS Code.exe' -ArgumentList "." \ No newline at end of file