A family of Microsoft on-premises document management and storage systems.
Hi Shri-6058 ,
Please try the following PowerShell script:
Add-PSSnapin Microsoft.SharePoint.PowerShell -ErrorAction SilentlyContinue
$webApp = Get-SPWebApplication "http://yourwebappurl"
$ssrsSubMgr = $webApp.GetSSRSReportServerSubscriptionManager()
if ($ssrsSubMgr -ne $null)
{
Write-Host "Manage Subscription option for SSRS is available."
}
else
{
Write-Host "Manage Subscription option for SSRS is not available."
}
Note that you'll need to replace "http://yourwebappurl" with the URL of your SharePoint web application.
For more information, please refer to:
If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
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.