mirror of
git://code.qt.io/qt/qt5.git
synced 2026-01-07 23:46:51 +08:00
Windows have lot's of tasks and services running which are slowing the performance of build machine. Also 'windows' and 'windows defender' updates need's to be "permanently" disabled. Task-number: QTQAINFRA-3182 Change-Id: I8f6b237fcdc6e38fa9a06836d349821d86c58afc Reviewed-by: Tony Sarajärvi <tony.sarajarvi@qt.io>
5 lines
314 B
PowerShell
5 lines
314 B
PowerShell
# Disable Windows Module Installer (Trusted Installer).
|
|
# Trusted Installe enables installation, modification, and removal of Windows updates and optional components.
|
|
# If this service is disabled, install or uninstall of Windows updates might fail for this computer.
|
|
sc.exe config TrustedInstaller start=disabled
|