@Dhanalakshmi You can use PowerShell to find all the resources that are untagged or do not have any tags in an Azure subscription.
Here's how you can do it using PowerShell:
Open PowerShell and connect to your Azure subscription using the Connect-AzAccount
cmdlet.
Run the following command to get a list of all the resources in your subscription:
$resources = Get-AzResource
- Run the following command to filter the list of resources to only show the resources that do not have any tags:
$untaggedResources = $resources | Where-Object { $_.Tags.Count -eq 0 }
- The
$untaggedResources
variable now contains a list of all the resources in your subscription that do not have any tags.