mirror of
git://code.qt.io/qt/qt5.git
synced 2026-03-15 00:35:58 +08:00
Windows 11 21H2 will be replaced by 22H2 version Task-number: QTQAINFRA-5203 Pick-to: 6.4 Change-Id: Iad18055cf84d9c1ff38984611c820b1c23d663a2 Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Matti Paaso <matti.paaso@qt.io>
10 lines
730 B
PowerShell
10 lines
730 B
PowerShell
# Windows 'Notifications & actions'
|
|
# Disable 'Get notifications from apps and other senders'
|
|
reg.exe ADD "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\PushNotifications" /V ToastEnabled /T REG_dWORD /D 0 /F
|
|
|
|
# Disable 'Show me the Windows welcome experience after udpates and occasionally when I sign in to highlight what's new and suggested'
|
|
reg.exe ADD "HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /V SubscribedContent-310093Enabled /T REG_dWORD /D 0 /F
|
|
|
|
# Disable 'Get tips, tricks and suggestions as you use Windows'
|
|
reg.exe ADD "HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /V SubscribedContent-338389Enabled /T REG_dWORD /D 0 /F
|