mirror of
git://code.qt.io/qt/qt5.git
synced 2026-01-04 22:17:45 +08:00
New targets: - windows-11_23h2-arm64-msvc2022 - windows-11-x86_64-arm64-tests-23H2 With latest versions - Visual Studio Professional 2022: 17.14.7 - MSVC: 14.44.35207 OpenGL is still disabled, but 'OpenCL, OpenGL, and Vulkan Compatibility pack' has been installed to WoA 11 23h2 Tier1 image to support OpenGL usage with QtWebengine, Qt3D etc. These targets will be added later: - windows-11_23h2-arm64-msvc2022-minimal-static-test - Windows-MSVC2022-arm64_Static-23H2 [CI Platforms] Task-number: QTQAINFRA-6973 Change-Id: I049f84ad7df91cd62e7f40044d8ef40705ac34e1 Reviewed-by: Simo Fält <simo.falt@qt.io>
25 lines
779 B
PowerShell
25 lines
779 B
PowerShell
# Copyright (C) 2017 The Qt Company Ltd.
|
|
# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
|
|
|
# This script disables the automatic Windows updates
|
|
|
|
$service = get-service wuauserv
|
|
if (-not $service) {
|
|
Write-Host "Windows Update service not found."
|
|
exit 0
|
|
}
|
|
|
|
if ($service.Status -eq "Stopped") {
|
|
Write-Host "Windows Update service already stopped."
|
|
} else {
|
|
Write-Host "Stopping Windows Update service."
|
|
Stop-Service -Name "wuauserv" -Force
|
|
}
|
|
|
|
$startup = Get-WmiObject Win32_Service | Where-Object {$_.Name -eq "wuauserv"} | Select -ExpandProperty "StartMode"
|
|
if ($startup -ne "Disabled") {
|
|
set-service wuauserv -startup disabled
|
|
} else {
|
|
Write-Host "Windows Update service startup already disabled."
|
|
}
|