├── .github ├── CODE_OF_CONDUCT.md ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── SECURITY.md ├── azure-cosmosdb ├── common │ ├── ps-account-add-region.ps1 │ ├── ps-account-failover-priority-update.ps1 │ ├── ps-account-firewall-create.ps1 │ ├── ps-account-keys-connection-strings.ps1 │ └── ps-account-rbac-mirroring.ps1 └── nosql │ ├── ps-nosql-create.ps1 │ ├── ps-nosql-lock.ps1 │ └── ps-nosql-throughput-update.ps1 ├── azure-portal └── portal-dashboard-template-testvm.json ├── azure-sql ├── database │ └── failover-groups │ │ ├── add-elastic-pool-to-failover-group-az-ps.ps1 │ │ └── add-single-db-to-failover-group-az-ps.ps1 ├── managed-instance │ ├── create-and-configure-managed-instance.ps1 │ └── failover-groups │ │ └── add-managed-instance-to-failover-group-az-ps.ps1 └── virtual-machine │ └── create-sql-server-vm.ps1 ├── container-registry ├── README.md ├── service-principal-assign-role │ └── service-principal-assign-role.ps1 └── service-principal-create │ └── service-principal-create.ps1 ├── expressroute-gateway └── gateway-migration │ ├── README.md │ ├── commitmigration.ps1 │ ├── migration.ps1 │ └── preparemigration.ps1 ├── expressroute └── highAvailabilitySetup │ ├── Get-AzExpressRouteResilientLocations.md │ ├── Get-AzExpressRouteResilientLocations.ps1 │ ├── New-AzHighAvailabilityExpressRouteCircuits.md │ ├── New-AzHighAvailabilityExpressRouteCircuits.ps1 │ ├── New-AzHighAvailabilityVirtualNetworkGatewayConnections.md │ └── New-AzHighAvailabilityVirtualNetworkGatewayConnections.ps1 ├── hdinsight └── create-cluster │ └── create-cluster.ps1 ├── managed-disks └── create-managed-disks-from-vhd-in-different-subscription.ps1 ├── migration-assistant └── migration-assistant-workflow.ps1 ├── storage └── calculate-container-size │ └── calculate-container-sizes-in-account.ps1 └── virtual-network-manager └── automate-vnet-ip-address-management.ps1 /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-docs-powershell-samples/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-docs-powershell-samples/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-docs-powershell-samples/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-docs-powershell-samples/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-docs-powershell-samples/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-docs-powershell-samples/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-docs-powershell-samples/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-docs-powershell-samples/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-docs-powershell-samples/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-docs-powershell-samples/HEAD/SECURITY.md -------------------------------------------------------------------------------- /azure-cosmosdb/common/ps-account-add-region.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-docs-powershell-samples/HEAD/azure-cosmosdb/common/ps-account-add-region.ps1 -------------------------------------------------------------------------------- /azure-cosmosdb/common/ps-account-failover-priority-update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-docs-powershell-samples/HEAD/azure-cosmosdb/common/ps-account-failover-priority-update.ps1 -------------------------------------------------------------------------------- /azure-cosmosdb/common/ps-account-firewall-create.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-docs-powershell-samples/HEAD/azure-cosmosdb/common/ps-account-firewall-create.ps1 -------------------------------------------------------------------------------- /azure-cosmosdb/common/ps-account-keys-connection-strings.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-docs-powershell-samples/HEAD/azure-cosmosdb/common/ps-account-keys-connection-strings.ps1 -------------------------------------------------------------------------------- /azure-cosmosdb/common/ps-account-rbac-mirroring.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-docs-powershell-samples/HEAD/azure-cosmosdb/common/ps-account-rbac-mirroring.ps1 -------------------------------------------------------------------------------- /azure-cosmosdb/nosql/ps-nosql-create.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-docs-powershell-samples/HEAD/azure-cosmosdb/nosql/ps-nosql-create.ps1 -------------------------------------------------------------------------------- /azure-cosmosdb/nosql/ps-nosql-lock.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-docs-powershell-samples/HEAD/azure-cosmosdb/nosql/ps-nosql-lock.ps1 -------------------------------------------------------------------------------- /azure-cosmosdb/nosql/ps-nosql-throughput-update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-docs-powershell-samples/HEAD/azure-cosmosdb/nosql/ps-nosql-throughput-update.ps1 -------------------------------------------------------------------------------- /azure-portal/portal-dashboard-template-testvm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-docs-powershell-samples/HEAD/azure-portal/portal-dashboard-template-testvm.json -------------------------------------------------------------------------------- /azure-sql/database/failover-groups/add-elastic-pool-to-failover-group-az-ps.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-docs-powershell-samples/HEAD/azure-sql/database/failover-groups/add-elastic-pool-to-failover-group-az-ps.ps1 -------------------------------------------------------------------------------- /azure-sql/database/failover-groups/add-single-db-to-failover-group-az-ps.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-docs-powershell-samples/HEAD/azure-sql/database/failover-groups/add-single-db-to-failover-group-az-ps.ps1 -------------------------------------------------------------------------------- /azure-sql/managed-instance/create-and-configure-managed-instance.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-docs-powershell-samples/HEAD/azure-sql/managed-instance/create-and-configure-managed-instance.ps1 -------------------------------------------------------------------------------- /azure-sql/managed-instance/failover-groups/add-managed-instance-to-failover-group-az-ps.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-docs-powershell-samples/HEAD/azure-sql/managed-instance/failover-groups/add-managed-instance-to-failover-group-az-ps.ps1 -------------------------------------------------------------------------------- /azure-sql/virtual-machine/create-sql-server-vm.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-docs-powershell-samples/HEAD/azure-sql/virtual-machine/create-sql-server-vm.ps1 -------------------------------------------------------------------------------- /container-registry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-docs-powershell-samples/HEAD/container-registry/README.md -------------------------------------------------------------------------------- /container-registry/service-principal-assign-role/service-principal-assign-role.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-docs-powershell-samples/HEAD/container-registry/service-principal-assign-role/service-principal-assign-role.ps1 -------------------------------------------------------------------------------- /container-registry/service-principal-create/service-principal-create.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-docs-powershell-samples/HEAD/container-registry/service-principal-create/service-principal-create.ps1 -------------------------------------------------------------------------------- /expressroute-gateway/gateway-migration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-docs-powershell-samples/HEAD/expressroute-gateway/gateway-migration/README.md -------------------------------------------------------------------------------- /expressroute-gateway/gateway-migration/commitmigration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-docs-powershell-samples/HEAD/expressroute-gateway/gateway-migration/commitmigration.ps1 -------------------------------------------------------------------------------- /expressroute-gateway/gateway-migration/migration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-docs-powershell-samples/HEAD/expressroute-gateway/gateway-migration/migration.ps1 -------------------------------------------------------------------------------- /expressroute-gateway/gateway-migration/preparemigration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-docs-powershell-samples/HEAD/expressroute-gateway/gateway-migration/preparemigration.ps1 -------------------------------------------------------------------------------- /expressroute/highAvailabilitySetup/Get-AzExpressRouteResilientLocations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-docs-powershell-samples/HEAD/expressroute/highAvailabilitySetup/Get-AzExpressRouteResilientLocations.md -------------------------------------------------------------------------------- /expressroute/highAvailabilitySetup/Get-AzExpressRouteResilientLocations.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-docs-powershell-samples/HEAD/expressroute/highAvailabilitySetup/Get-AzExpressRouteResilientLocations.ps1 -------------------------------------------------------------------------------- /expressroute/highAvailabilitySetup/New-AzHighAvailabilityExpressRouteCircuits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-docs-powershell-samples/HEAD/expressroute/highAvailabilitySetup/New-AzHighAvailabilityExpressRouteCircuits.md -------------------------------------------------------------------------------- /expressroute/highAvailabilitySetup/New-AzHighAvailabilityExpressRouteCircuits.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-docs-powershell-samples/HEAD/expressroute/highAvailabilitySetup/New-AzHighAvailabilityExpressRouteCircuits.ps1 -------------------------------------------------------------------------------- /expressroute/highAvailabilitySetup/New-AzHighAvailabilityVirtualNetworkGatewayConnections.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-docs-powershell-samples/HEAD/expressroute/highAvailabilitySetup/New-AzHighAvailabilityVirtualNetworkGatewayConnections.md -------------------------------------------------------------------------------- /expressroute/highAvailabilitySetup/New-AzHighAvailabilityVirtualNetworkGatewayConnections.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-docs-powershell-samples/HEAD/expressroute/highAvailabilitySetup/New-AzHighAvailabilityVirtualNetworkGatewayConnections.ps1 -------------------------------------------------------------------------------- /hdinsight/create-cluster/create-cluster.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-docs-powershell-samples/HEAD/hdinsight/create-cluster/create-cluster.ps1 -------------------------------------------------------------------------------- /managed-disks/create-managed-disks-from-vhd-in-different-subscription.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-docs-powershell-samples/HEAD/managed-disks/create-managed-disks-from-vhd-in-different-subscription.ps1 -------------------------------------------------------------------------------- /migration-assistant/migration-assistant-workflow.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-docs-powershell-samples/HEAD/migration-assistant/migration-assistant-workflow.ps1 -------------------------------------------------------------------------------- /storage/calculate-container-size/calculate-container-sizes-in-account.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-docs-powershell-samples/HEAD/storage/calculate-container-size/calculate-container-sizes-in-account.ps1 -------------------------------------------------------------------------------- /virtual-network-manager/automate-vnet-ip-address-management.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-docs-powershell-samples/HEAD/virtual-network-manager/automate-vnet-ip-address-management.ps1 --------------------------------------------------------------------------------