Hi @sns
Per my test, you could try the following PowerShell codes to check if feature is activated. Note: Please make sure the feature display name is right.
PowerShell codes:
Add-PSSnapin "Microsoft.SharePoint.PowerShell"
$web = Get-SPWebApplication -Identity "web application URL"
Foreach($site in $web.Sites)
{
$feature = Get-SPFeature -Site $site | Where-Object {$_.DisplayName -eq "the feature you want to check"
}
if($feature -ne $null)
{
Write-Host $site.RootWeb.Url " - Activated"
}
if($feature -eq $null)
{
Write-Host $site.RootWeb.Url " - Deavtivated"
}
}
If an Answer is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.