Hello @VaishnaviP ,
Thanks for the question and using MS Q&A platform.
Here is the script which get list of all Azure ADF SHIR across multiple subscriptions through PowerShell:
foreach($subscription in $subscriptions){
Select-AzSubscription -SubscriptionId $subscription.Id | Out-Null
$tResources = Get-AzResource -ResourceType Microsoft.DataFactory/factories | Select-Object Name, ResourceGroupName
$Resources | Foreach-Object {
Get-AzDataFactoryV2IntegrationRuntime -ResourceGroupName $_.ResourceGroupName -DataFactoryName $_.Name | Where-Object Type -eq "SelfHosted" | Format-Table
}
}
The above script is successfully working and able to get list of all Azure ADF SHIR across multiple subscriptions through PowerShell
Hope this will help. Please let us know if any further queries.
------------------------------
- Please don't forget to click on
or upvote
button whenever the information provided helps you. Original posters help the community find answers faster by identifying the correct answer. Here is how
- Want a reminder to come back and check responses? Here is how to subscribe to a notification
- If you are interested in joining the VM program and help shape the future of Q&A: Here is how you can be part of Q&A Volunteer Moderators