mirror of
git://code.qt.io/qt/qt5.git
synced 2026-01-04 22:17:45 +08:00
Packaging targets needs to be parallel with older Windows 10 version until packaging site is ready to start using new windows 10 version. Inlcudes: * MSVC 2022 version 17.0.0 preview 3.1 * MSVC 2019 version 16.11.2 * MSVC 2019 build tools version 16.11.2 * MSVC 2015 version 14.0.25431.01 Update 3 Failing targets marked as insignificant Task-number: QTQAINFRA-4517 Change-Id: If841509923c2534a5bf626078b97f2d3f63a07b6 Reviewed-by: Tony Sarajärvi <tony.sarajarvi@qt.io>
9 lines
438 B
PowerShell
9 lines
438 B
PowerShell
# This script will disable automatic disk cleanup
|
|
|
|
. "$PSScriptRoot\..\..\provisioning\common\windows\helpers.ps1"
|
|
|
|
Run-Executable "reg.exe" "ADD `"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\StorageSense\Parameters\StoragePolicy`" /V 04 /T REG_dWORD /D 0 /F"
|
|
|
|
# Maintenance task used by the system to launch a silent auto disk cleanup when running low on free disk space.
|
|
DisableSchedulerTask "DiskCleanup\SilentCleanup"
|