👌
wingetでインストーラーオプションを指定する
はじめに
wingetはMicrosoft公式のWindowsパッケージマネージャーです。
ここではwingetを利用する場合に、インストーラーオプションを明示的に指定する方法を紹介します。
指定方法
wingetで普通にインストールする際のオプションから、オプションを変更したい場合、overrideオプションを利用します。
たとえば、Visual Studio Codeでオプションを指定したい場合は、つぎのように実行します。
winget install --id Microsoft.VisualStudioCode --silent --override "/VERYSILENT /NORESTART /MERGETASKS=!runcode,addcontextmenufiles,addcontextmenufolders,associatewithfiles,addtopath"
Discussion