aboutsummaryrefslogtreecommitdiffstats
path: root/coin/provisioning/common/windows/disable-sleep.ps1
blob: c6c3c814ae3cbff1ead55f28f906caa56c23f188 (plain)
1
2
3
4
5
6
7
8
9
10
# 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
. "$PSScriptRoot\helpers.ps1"

# This script prevents Windows from going to sleep

Run-Executable "powercfg.exe" "-change -monitor-timeout-ac 0"
Run-Executable "powercfg.exe" "-change -standby-timeout-ac 0"
Run-Executable "powercfg.exe" "-change -disk-timeout-ac 0"
Run-Executable "powercfg.exe" "-change -hibernate-timeout-ac 0"