Hello Allen Bower
Welcome to Microsoft Q&A Platform, thanks for posting your query here.
Please try the following steps to unblock:
- Query for the in progress update:
`Import-Module EceClient`
$runningUpdate = Get-ActionPlanInstances | where ActionPlanName -match "MAS Update" | where Status -eq "Running"
- Cancel the in progress update action plan:
`Cancel-ActionPlanInstance -actionPlanInstanceID $runningUpdate.InstanceID | Out-Null`
- The cancellation is an async operation so it might take a little bit of time for it to actually enter the Cancelled state. You can check using:
`Get-ActionPlanInstance -actionPlanInstanceID $runningUpdate.InstanceID | ft Status`
Hope this helps.
If the suggested response helped you resolve your issue, please 'Accept as answer', so that it can help others in the community looking for help on similar topics.