mirror of
git://code.qt.io/qt/qt5.git
synced 2026-04-20 20:06:32 +08:00
Merge remote-tracking branch 'origin/5.13' into 5.14
Conflicts: coin/platform_configs/default.yaml coin/platform_configs/qt5.yaml Change-Id: I48b1e814dd6328dfb2827d0898a277b81ec25e55
This commit is contained in:
@@ -3,7 +3,7 @@ function Verify-Checksum
|
||||
Param (
|
||||
[string]$File=$(throw("You must specify a filename to get the checksum of.")),
|
||||
[string]$Expected=$(throw("Checksum required")),
|
||||
[ValidateSet("sha1","md5")][string]$Algorithm="sha1"
|
||||
[ValidateSet("sha256","sha1","md5")][string]$Algorithm="sha1"
|
||||
)
|
||||
Write-Host "Verifying checksum of $File"
|
||||
$fs = new-object System.IO.FileStream $File, "Open"
|
||||
@@ -254,3 +254,23 @@ function Remove {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function DisableSchedulerTask {
|
||||
|
||||
Param (
|
||||
[string]$Task = $(BadParam("a task"))
|
||||
)
|
||||
|
||||
Write-Host "Disabling $Task from Task Scheduler"
|
||||
SCHTASKS /Change /TN "Microsoft\Windows\$Task" /DISABLE
|
||||
}
|
||||
|
||||
function DeleteSchedulerTask {
|
||||
|
||||
Param (
|
||||
[string]$Task = $(BadParam("a task"))
|
||||
)
|
||||
|
||||
Write-Host "Disabling $Task from Task Scheduler"
|
||||
SCHTASKS /DELETE /TN "Microsoft\Windows\$Task" /F
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user