UTC: 2017-01-11 22:39
Tervis-Tumbler/au-packages
This file is automatically generated by the update_all.ps1 script using the AU module.
UTC: 2017-01-11 22:39
Tervis-Tumbler/au-packages
This file is automatically generated by the update_all.ps1 script using the AU module.
UTC: 2017-01-11 22:00
Tervis-Tumbler/au-packages
This file is automatically generated by the update_all.ps1 script using the AU module.
UTC: 2017-01-11 21:23
Tervis-Tumbler/au-packages
This file is automatically generated by the update_all.ps1 script using the AU module.
UTC: 2017-01-11 20:50
Tervis-Tumbler/au-packages
This file is automatically generated by the update_all.ps1 script using the AU module.
$Uri = "http://localhost:8080/engine-rest/process-instance/" | |
$ProcessInstances = Invoke-WebRequest -Uri $Uri | select -ExpandProperty content | ConvertFrom-Json | |
foreach ($ProcessInstance in $ProcessInstances) { | |
Invoke-WebRequest -Method Delete -Uri $($Uri + $ProcessInstance.id) | |
} |
function ConvertTo-Boolean | |
{ | |
param | |
( | |
[Parameter(Mandatory=$false,ValueFromPipeline=$true)][string] $value | |
) | |
switch ($value) | |
{ | |
"y" { return $true; } | |
"yes" { return $true; } |