Increase the resource capacity from 200 to more than that #108
peeyushverma256
started this conversation in
Ideas
Replies: 1 comment
-
Hi @PrateekKumarSingh , Thanks, |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi @PrateekKumarSingh ,
cant you increase the export resource number from 200 to more
I have wrote one PowerShell command which helps to download more than 200 resources.
$folder = '' ### Set you path !!!!!!!
Example whole resource group by looping in its resources
each EXPORTABLE resource will be exported in an individual json file
$ResourceGroupName = ""
$resources = Get-AzResource -ResourceGroupName $ResourceGroupName
foreach ($res in $resources) {
}
Thanks,
Peeyush
Beta Was this translation helpful? Give feedback.
All reactions