Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions MMA Removal Utility/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -286,3 +286,34 @@ InventoryProcessingStatus_CL
| summarize arg_max(TimeGenerated,*) by tolower(ResourceId)
| project ResourceId, ProcessingStatus_s, ProcessErrorDetails_s
```


### **11. If I have less number of VMs how can I speed up the process for MMA removal?**
Follow below steps to speed up the process for MMA removal :

Step-1. Run Update-AzTSMMARemovalUtilityDiscoveryTrigger command with – StartScopeResolverImmediatley switch.

``` PowerShell
Update-AzTSMMARemovalUtilityDiscoveryTrigger `
-SubscriptionId <HostingSubId> `
-ResourceGroupName <HostingRGName> `
-StartScopeResolverImmediatley
```

Step-2. Once Virtual Machine inventory is available in dashboard, run Update-AzTSMMARemovalUtilityDiscoveryTrigger command with –StartExtensionDiscoveryImmediatley switch.

``` PowerShell
Update-AzTSMMARemovalUtilityDiscoveryTrigger `
-SubscriptionId <HostingSubId> `
-ResourceGroupName <HostingRGName> `
-StartExtensionDiscoveryImmediatley
```

Step-3. One the Extension inventory is available in dashboard, run Update-AzTSMMARemovalUtilityRemovalTrigger command with – StartImmediately switch.

``` PowerShell
Update-AzTSMMARemovalUtilityDiscoveryTrigger `
-SubscriptionId <HostingSubId> `
-ResourceGroupName <HostingRGName> `
-StartImmediately
```