mirror of
https://github.com/ChrisTitusTech/winutil.git
synced 2025-01-07 13:34:55 -06:00
46 lines
1.3 KiB
PowerShell
46 lines
1.3 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
|
|
}
|
|
}
|