mirror of
git://code.qt.io/qt/qt5.git
synced 2026-03-15 00:35:58 +08:00
Pre-installed to tier 1:
MSVC 2022 17.3.6 plus build tools
MSVC 2019 16.11.20 plus build tools
MSVC 2015 update 3 14.0.25420.1
Task-number: QTQAINFRA-5262
Change-Id: Ibcc2950dd7edef0d6aa92cef7e602a69da8498d9
Reviewed-by: Oliver Wolff <oliver.wolff@qt.io>
Reviewed-by: Tony Sarajärvi <tony.sarajarvi@qt.io>
8 lines
670 B
PowerShell
8 lines
670 B
PowerShell
# Disable Connected User Experiences and Telemetry service
|
|
# The Connected User Experiences and Telemetry service enables features that support in-application and connected user experiences.
|
|
# Additionally, this service manages the event driven collection and transmission of diagnostic and usage information
|
|
# (used to improve the experience and quality of the Windows Platform) when the diagnostics and usage privacy option settings are enabled under Feedback and Diagnostics.
|
|
reg.exe ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Data Collection" /V AllowTelemetry /T REG_dWORD /D 0 /F
|
|
stop-service diagtrack
|
|
set-service diagtrack -startuptype disabled
|