mirror of
https://github.com/ChrisTitusTech/winutil.git
synced 2025-01-15 17:30:37 -06:00
43 lines
1.2 KiB
PowerShell
43 lines
1.2 KiB
PowerShell
function Set-WinUtilScheduledTask {
|
|
<#
|
|
|
|
.SYNOPSIS
|
|
Enables/Disables the provided Scheduled Task
|
|
|
|
.PARAMETER Name
|
|
The path to the Scheduled Task
|
|
|
|
.PARAMETER State
|
|
The State to set the Task to
|
|
|
|
.EXAMPLE
|
|
Set-WinUtilScheduledTask -Name "Microsoft\Windows\Application Experience\Microsoft Compatibility Appraiser" -State "Disabled"
|
|
|
|
#>
|
|
param (
|
|
$Name,
|
|
$State
|
|
)
|
|
|
|
try {
|
|
if($State -eq "Disabled") {
|
|
Write-Host "Disabling Scheduled Task $Name"
|
|
Disable-ScheduledTask -TaskName $Name -ErrorAction Stop
|
|
}
|
|
if($State -eq "Enabled") {
|
|
Write-Host "Enabling Scheduled Task $Name"
|
|
Enable-ScheduledTask -TaskName $Name -ErrorAction Stop
|
|
}
|
|
} catch [System.Exception] {
|
|
if($psitem.Exception.Message -like "*The system cannot find the file specified*") {
|
|
Write-Warning "Scheduled Task $name was not Found"
|
|
} else {
|
|
Write-Warning "Unable to set $Name due to unhandled exception"
|
|
Write-Warning $psitem.Exception.Message
|
|
}
|
|
} catch {
|
|
Write-Warning "Unable to run script for $name due to unhandled exception"
|
|
Write-Warning $psitem.Exception.StackTrace
|
|
}
|
|
}
|