HomeBlogMagic

Minimalinstallation von Visual Studio mit C++

Für meine persönlichen Projekte habe ich eine minimal Installation von Visual Studio erstellt um auch Info darüber zu bekommen was alles in den Sourcen aufgerufen und gebraucht wird.

Dazu habe ich folgende Batch geschrieben um alles notwendige für ein Windows zu installieren, in der Annahme es wäre noch nichts vorhanden.
Deshalb wird auch cmake und git installiert.

Die Setups und die Batches liegen auf einer ebene:

Die Installer Batch:

@echo off
Git-2.30.0.2-64-bit.exe /silent
set PATH=%PATH%;C:\Program Files\Git\bin
git config --global http.sslVerify false
msiexec /qb /i cmake-3.19.4-win64-x64.msi ALLUSERS=1 ADD_CMAKE_TO_PATH=System

vs_community.exe  -p --wait --norestart ^
--add Microsoft.VisualStudio.Workload.CoreEditor ^
--add Microsoft.Component.MSBuild ^
--add Microsoft.VisualStudio.Component.IntelliCode ^
--add Microsoft.VisualStudio.Component.Roslyn.Compiler ^
--add Microsoft.VisualStudio.Component.TextTemplating ^
--add Microsoft.VisualStudio.Component.VC.CoreIde ^
--add Microsoft.VisualStudio.Component.VC.Redist.14.Latest ^
--add Microsoft.VisualStudio.ComponentGroup.NativeDesktop.Core ^
--add Microsoft.VisualStudio.Component.Debugger.JustInTime ^
--add Microsoft.VisualStudio.Component.VC.ATL ^
--add Microsoft.VisualStudio.Component.VC.Tools.x86.x64 ^
--add Microsoft.VisualStudio.Component.VC.ATLMFC ^
--add Microsoft.VisualStudio.Component.Windows10SDK.18362

git clone https://coolcow.de/projects/CcOS.git
cd CcOS\Tools
powershell.exe -executionpolicy bypass -Command .\Test-All.ps1