#!powershell # This file is part of Ansible # # Copyright 2015, Peter Mounce # # Ansible is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # Ansible is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with Ansible. If not, see . $ErrorActionPreference = "Stop" # WANT_JSON # POWERSHELL_COMMON $params = Parse-Args $args; $result = New-Object PSObject; Set-Attr $result "changed" $false; if ($params.name) { $name = $params.name } else { Fail-Json $result "missing required argument: name" } if ($params.state) { $state = $params.state } else { Fail-Json $result "missing required argument: state" } if ($params.enabled) { $enabled = $params.enabled | ConvertTo-Bool } else { $enabled = $true #default } if ($params.description) { $description = $params.description } else { $description = " " #default } if ($params.execute) { $execute = $params.execute } elseif ($state -eq "present") { Fail-Json $result "missing required argument: execute" } if ($params.path) { $path = "\{0}\" -f $params.path } else { $path = "\" #default } if ($params.frequency) { $frequency = $params.frequency } elseif($state -eq "present") { Fail-Json $result "missing required argument: frequency" } if ($params.time) { $time = $params.time } elseif($state -eq "present") { Fail-Json $result "missing required argument: time" } $exists = $true #hack to determine if task exists try { $task = Get-ScheduledTask -TaskName $name -TaskPath $path } catch { $exists = $false | ConvertTo-Bool } Set-Attr $result "exists" "$exists" try { if ($frequency){ if ($frequency -eq "daily") { $trigger = New-ScheduledTaskTrigger -Daily -At $time } elseif (frequency -eq "weekly"){ $trigger = New-ScheduledTaskTrigger -Weekly -At $time } else { Fail-Json $result "frequency must be daily or weekly" } } if ($state -eq "absent" -and $exists -eq $true) { Unregister-ScheduledTask -TaskName $name -Confirm:$false $result.changed = $true Set-Attr $result "msg" "Deleted task $name" Exit-Json $result } elseif ($state -eq "absent" -and $exists -eq $false) { Set-Attr $result "msg" "Task $name does not exist" Exit-Json $result } if ($state -eq "present" -and $exists -eq $false){ $action = New-ScheduledTaskAction -Execute $execute Register-ScheduledTask -Action $action -Trigger $trigger -TaskName $name -Description $description -TaskPath $path $task = Get-ScheduledTask -TaskName $name Set-Attr $result "msg" "Added new task $name" $result.changed = $true } elseif($state -eq "present" -and $exists -eq $true) { if ($task.Description -eq $description -and $task.TaskName -eq $name -and $task.TaskPath -eq $path -and $task.Actions.Execute -eq $execute) { #No change in the task yet Set-Attr $result "msg" "No change in task $name" } else { Unregister-ScheduledTask -TaskName $name -Confirm:$false $action = New-ScheduledTaskAction -Execute $execute Register-ScheduledTask -Action $action -Trigger $trigger -TaskName $name -Description $description -TaskPath $path $task = Get-ScheduledTask -TaskName $name Set-Attr $result "msg" "Updated task $name" $result.changed = $true } } if ($state -eq "present" -and $enabled -eq $true -and $task.State -ne "Ready" ){ $task | Enable-ScheduledTask Set-Attr $result "msg" "Enabled task $name" $result.changed = $true } elseif ($state -eq "present" -and $enabled -eq $false -and $task.State -ne "Disabled"){ $task | Disable-ScheduledTask Set-Attr $result "msg" "Disabled task $name" $result.changed = $true } Exit-Json $result; } catch { Fail-Json $result $_.Exception.Message }