File tree Expand file tree Collapse file tree 2 files changed +14
-0
lines changed
src/playbook/Configuration Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -364,3 +364,4 @@ actions:
364364 - !task: {path: 'tweaks\scripts\script-power.yml'} # Done last on purpose
365365 - !task: {path: 'tweaks\misc\enable-notifications.yml'}
366366 - !task: {path: 'tweaks\misc\config-oem-information.yml'}
367+ - !task: {path: 'tweaks\misc\install-winappsdk-firstboot.yml'}
Original file line number Diff line number Diff line change 1+ ---
2+ title : Installs WinAppSDK
3+ description : Adds a winget command on runonce to install WinAppSDK on first boot.
4+ option : ' install-toolbox'
5+ oobe : only
6+ actions :
7+ - !registryValue:
8+ path : ' HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnce'
9+ value : ' InstallWASDK'
10+ data : |
11+ Start-Process -FilePath "winget" -ArgumentList "install --id Microsoft.WindowsAppRuntime.1.7 --silent --accept-source-agreements --accept-package-agreements" -WindowStyle Hidden -PassThru -Wait
12+ type : REG_SZ
13+ scope : defaultUser
You can’t perform that action at this time.
0 commit comments