├── .github ├── ISSUE_TEMPLATE │ ├── BUG_REPORT.md │ └── FEATURE_REQUEST.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .vscode └── settings.json ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── CmdletHelp ├── Add-PCAuthentication.md ├── Add-PCCustomerRoleMember.md ├── Get-PCAddressRulesByMarket.md ├── Get-PCAuditRecord.md ├── Get-PCAzureRateCard.md ├── Get-PCAzureResourceMonthlyUsageRecord.md ├── Get-PCBillingProfile.md ├── Get-PCCustomer.md ├── Get-PCCustomerBillingProfile.md ├── Get-PCCustomerCompanyProfile.md ├── Get-PCCustomerLicenseDeployment.md ├── Get-PCCustomerLicenseUsage.md ├── Get-PCCustomerRelationship.md ├── Get-PCCustomerRole.md ├── Get-PCCustomerRoleMember.md ├── Get-PCCustomerServiceCostSummary.md ├── Get-PCCustomerUsageSummary.md ├── Get-PCCustomerUser.md ├── Get-PCCustomerUserRole.md ├── Get-PCDomainAvailability.md ├── Get-PCIndirectReseller.md ├── Get-PCInvoice.md ├── Get-PCInvoiceLineItem.md ├── Get-PCLegalBusinessProfile.md ├── Get-PCLicenseDeployment.md ├── Get-PCLicenseUsage.md ├── Get-PCManagedService.md ├── Get-PCMpnProfile.md ├── Get-PCOffer.md ├── Get-PCOfferCategoriesByMarket.md ├── Get-PCOrder.md ├── Get-PCOrganizationProfile.md ├── Get-PCProduct.md ├── Get-PCResellerCustomer.md ├── Get-PCSR.md ├── Get-PCSRTopic.md ├── Get-PCSpendingBudget.md ├── Get-PCSubscribedSKU.md ├── Get-PCSubscription.md ├── Get-PCSupportProfile.md ├── Get-PCUsage.md ├── NA.md ├── New-PCAddress.md ├── New-PCCustomer.md ├── New-PCCustomerBillingProfile.md ├── New-PCCustomerCompanyProfile.md ├── New-PCCustomerDefaultAddress.md ├── New-PCCustomerUser.md ├── New-PCOrder.md ├── New-PCRelationshipRequest.md ├── New-PCSAToken.md ├── New-PCSR.md ├── Remove-PCCustomer.md ├── Remove-PCCustomerRelationship.md ├── Remove-PCCustomerRoleMember.md ├── Remove-PCCustomerUser.md ├── Restore-PCCustomerUser.md ├── Select-PCCustomer.md ├── Set-PCBillingProfile.md ├── Set-PCCustomerBillingProfile.md ├── Set-PCCustomerUser.md ├── Set-PCLegalBusinessProfile.md ├── Set-PCOrganizationProfile.md ├── Set-PCSR.md ├── Set-PCSpendingBudget.md ├── Set-PCSubscription.md ├── Set-PCSupportProfile.md └── Test-PCAddress.md ├── LICENSE ├── PartnerCenterModule ├── PartnerCenterAnalytics.psm1 ├── PartnerCenterAuthentication.psm1 ├── PartnerCenterCustomer.psm1 ├── PartnerCenterDirectory.psm1 ├── PartnerCenterInvoice.psm1 ├── PartnerCenterModule.psd1 ├── PartnerCenterModule.psm1 ├── PartnerCenterOffer.psm1 ├── PartnerCenterOrder.psm1 ├── PartnerCenterPartner.psm1 ├── PartnerCenterProfiles.psm1 ├── PartnerCenterServiceRequest.psm1 ├── PartnerCenterSubscription.psm1 ├── PartnerCenterUsage.psm1 ├── PartnerCenterUser.psm1 └── commons.ps1 ├── README.md └── tests ├── Reset-PCTests.ps1 └── Test-PCCmdlets.ps1 /.github/ISSUE_TEMPLATE/BUG_REPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/.github/ISSUE_TEMPLATE/BUG_REPORT.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CmdletHelp/Add-PCAuthentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/CmdletHelp/Add-PCAuthentication.md -------------------------------------------------------------------------------- /CmdletHelp/Add-PCCustomerRoleMember.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/CmdletHelp/Add-PCCustomerRoleMember.md -------------------------------------------------------------------------------- /CmdletHelp/Get-PCAddressRulesByMarket.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/CmdletHelp/Get-PCAddressRulesByMarket.md -------------------------------------------------------------------------------- /CmdletHelp/Get-PCAuditRecord.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/CmdletHelp/Get-PCAuditRecord.md -------------------------------------------------------------------------------- /CmdletHelp/Get-PCAzureRateCard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/CmdletHelp/Get-PCAzureRateCard.md -------------------------------------------------------------------------------- /CmdletHelp/Get-PCAzureResourceMonthlyUsageRecord.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/CmdletHelp/Get-PCAzureResourceMonthlyUsageRecord.md -------------------------------------------------------------------------------- /CmdletHelp/Get-PCBillingProfile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/CmdletHelp/Get-PCBillingProfile.md -------------------------------------------------------------------------------- /CmdletHelp/Get-PCCustomer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/CmdletHelp/Get-PCCustomer.md -------------------------------------------------------------------------------- /CmdletHelp/Get-PCCustomerBillingProfile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/CmdletHelp/Get-PCCustomerBillingProfile.md -------------------------------------------------------------------------------- /CmdletHelp/Get-PCCustomerCompanyProfile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/CmdletHelp/Get-PCCustomerCompanyProfile.md -------------------------------------------------------------------------------- /CmdletHelp/Get-PCCustomerLicenseDeployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/CmdletHelp/Get-PCCustomerLicenseDeployment.md -------------------------------------------------------------------------------- /CmdletHelp/Get-PCCustomerLicenseUsage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/CmdletHelp/Get-PCCustomerLicenseUsage.md -------------------------------------------------------------------------------- /CmdletHelp/Get-PCCustomerRelationship.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/CmdletHelp/Get-PCCustomerRelationship.md -------------------------------------------------------------------------------- /CmdletHelp/Get-PCCustomerRole.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/CmdletHelp/Get-PCCustomerRole.md -------------------------------------------------------------------------------- /CmdletHelp/Get-PCCustomerRoleMember.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/CmdletHelp/Get-PCCustomerRoleMember.md -------------------------------------------------------------------------------- /CmdletHelp/Get-PCCustomerServiceCostSummary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/CmdletHelp/Get-PCCustomerServiceCostSummary.md -------------------------------------------------------------------------------- /CmdletHelp/Get-PCCustomerUsageSummary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/CmdletHelp/Get-PCCustomerUsageSummary.md -------------------------------------------------------------------------------- /CmdletHelp/Get-PCCustomerUser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/CmdletHelp/Get-PCCustomerUser.md -------------------------------------------------------------------------------- /CmdletHelp/Get-PCCustomerUserRole.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/CmdletHelp/Get-PCCustomerUserRole.md -------------------------------------------------------------------------------- /CmdletHelp/Get-PCDomainAvailability.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/CmdletHelp/Get-PCDomainAvailability.md -------------------------------------------------------------------------------- /CmdletHelp/Get-PCIndirectReseller.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/CmdletHelp/Get-PCIndirectReseller.md -------------------------------------------------------------------------------- /CmdletHelp/Get-PCInvoice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/CmdletHelp/Get-PCInvoice.md -------------------------------------------------------------------------------- /CmdletHelp/Get-PCInvoiceLineItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/CmdletHelp/Get-PCInvoiceLineItem.md -------------------------------------------------------------------------------- /CmdletHelp/Get-PCLegalBusinessProfile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/CmdletHelp/Get-PCLegalBusinessProfile.md -------------------------------------------------------------------------------- /CmdletHelp/Get-PCLicenseDeployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/CmdletHelp/Get-PCLicenseDeployment.md -------------------------------------------------------------------------------- /CmdletHelp/Get-PCLicenseUsage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/CmdletHelp/Get-PCLicenseUsage.md -------------------------------------------------------------------------------- /CmdletHelp/Get-PCManagedService.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/CmdletHelp/Get-PCManagedService.md -------------------------------------------------------------------------------- /CmdletHelp/Get-PCMpnProfile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/CmdletHelp/Get-PCMpnProfile.md -------------------------------------------------------------------------------- /CmdletHelp/Get-PCOffer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/CmdletHelp/Get-PCOffer.md -------------------------------------------------------------------------------- /CmdletHelp/Get-PCOfferCategoriesByMarket.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/CmdletHelp/Get-PCOfferCategoriesByMarket.md -------------------------------------------------------------------------------- /CmdletHelp/Get-PCOrder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/CmdletHelp/Get-PCOrder.md -------------------------------------------------------------------------------- /CmdletHelp/Get-PCOrganizationProfile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/CmdletHelp/Get-PCOrganizationProfile.md -------------------------------------------------------------------------------- /CmdletHelp/Get-PCProduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/CmdletHelp/Get-PCProduct.md -------------------------------------------------------------------------------- /CmdletHelp/Get-PCResellerCustomer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/CmdletHelp/Get-PCResellerCustomer.md -------------------------------------------------------------------------------- /CmdletHelp/Get-PCSR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/CmdletHelp/Get-PCSR.md -------------------------------------------------------------------------------- /CmdletHelp/Get-PCSRTopic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/CmdletHelp/Get-PCSRTopic.md -------------------------------------------------------------------------------- /CmdletHelp/Get-PCSpendingBudget.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/CmdletHelp/Get-PCSpendingBudget.md -------------------------------------------------------------------------------- /CmdletHelp/Get-PCSubscribedSKU.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/CmdletHelp/Get-PCSubscribedSKU.md -------------------------------------------------------------------------------- /CmdletHelp/Get-PCSubscription.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/CmdletHelp/Get-PCSubscription.md -------------------------------------------------------------------------------- /CmdletHelp/Get-PCSupportProfile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/CmdletHelp/Get-PCSupportProfile.md -------------------------------------------------------------------------------- /CmdletHelp/Get-PCUsage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/CmdletHelp/Get-PCUsage.md -------------------------------------------------------------------------------- /CmdletHelp/NA.md: -------------------------------------------------------------------------------- 1 | # Cmdlet not yet available # 2 | -------------------------------------------------------------------------------- /CmdletHelp/New-PCAddress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/CmdletHelp/New-PCAddress.md -------------------------------------------------------------------------------- /CmdletHelp/New-PCCustomer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/CmdletHelp/New-PCCustomer.md -------------------------------------------------------------------------------- /CmdletHelp/New-PCCustomerBillingProfile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/CmdletHelp/New-PCCustomerBillingProfile.md -------------------------------------------------------------------------------- /CmdletHelp/New-PCCustomerCompanyProfile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/CmdletHelp/New-PCCustomerCompanyProfile.md -------------------------------------------------------------------------------- /CmdletHelp/New-PCCustomerDefaultAddress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/CmdletHelp/New-PCCustomerDefaultAddress.md -------------------------------------------------------------------------------- /CmdletHelp/New-PCCustomerUser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/CmdletHelp/New-PCCustomerUser.md -------------------------------------------------------------------------------- /CmdletHelp/New-PCOrder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/CmdletHelp/New-PCOrder.md -------------------------------------------------------------------------------- /CmdletHelp/New-PCRelationshipRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/CmdletHelp/New-PCRelationshipRequest.md -------------------------------------------------------------------------------- /CmdletHelp/New-PCSAToken.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/CmdletHelp/New-PCSAToken.md -------------------------------------------------------------------------------- /CmdletHelp/New-PCSR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/CmdletHelp/New-PCSR.md -------------------------------------------------------------------------------- /CmdletHelp/Remove-PCCustomer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/CmdletHelp/Remove-PCCustomer.md -------------------------------------------------------------------------------- /CmdletHelp/Remove-PCCustomerRelationship.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/CmdletHelp/Remove-PCCustomerRelationship.md -------------------------------------------------------------------------------- /CmdletHelp/Remove-PCCustomerRoleMember.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/CmdletHelp/Remove-PCCustomerRoleMember.md -------------------------------------------------------------------------------- /CmdletHelp/Remove-PCCustomerUser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/CmdletHelp/Remove-PCCustomerUser.md -------------------------------------------------------------------------------- /CmdletHelp/Restore-PCCustomerUser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/CmdletHelp/Restore-PCCustomerUser.md -------------------------------------------------------------------------------- /CmdletHelp/Select-PCCustomer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/CmdletHelp/Select-PCCustomer.md -------------------------------------------------------------------------------- /CmdletHelp/Set-PCBillingProfile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/CmdletHelp/Set-PCBillingProfile.md -------------------------------------------------------------------------------- /CmdletHelp/Set-PCCustomerBillingProfile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/CmdletHelp/Set-PCCustomerBillingProfile.md -------------------------------------------------------------------------------- /CmdletHelp/Set-PCCustomerUser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/CmdletHelp/Set-PCCustomerUser.md -------------------------------------------------------------------------------- /CmdletHelp/Set-PCLegalBusinessProfile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/CmdletHelp/Set-PCLegalBusinessProfile.md -------------------------------------------------------------------------------- /CmdletHelp/Set-PCOrganizationProfile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/CmdletHelp/Set-PCOrganizationProfile.md -------------------------------------------------------------------------------- /CmdletHelp/Set-PCSR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/CmdletHelp/Set-PCSR.md -------------------------------------------------------------------------------- /CmdletHelp/Set-PCSpendingBudget.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/CmdletHelp/Set-PCSpendingBudget.md -------------------------------------------------------------------------------- /CmdletHelp/Set-PCSubscription.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/CmdletHelp/Set-PCSubscription.md -------------------------------------------------------------------------------- /CmdletHelp/Set-PCSupportProfile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/CmdletHelp/Set-PCSupportProfile.md -------------------------------------------------------------------------------- /CmdletHelp/Test-PCAddress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/CmdletHelp/Test-PCAddress.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/LICENSE -------------------------------------------------------------------------------- /PartnerCenterModule/PartnerCenterAnalytics.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/PartnerCenterModule/PartnerCenterAnalytics.psm1 -------------------------------------------------------------------------------- /PartnerCenterModule/PartnerCenterAuthentication.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/PartnerCenterModule/PartnerCenterAuthentication.psm1 -------------------------------------------------------------------------------- /PartnerCenterModule/PartnerCenterCustomer.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/PartnerCenterModule/PartnerCenterCustomer.psm1 -------------------------------------------------------------------------------- /PartnerCenterModule/PartnerCenterDirectory.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/PartnerCenterModule/PartnerCenterDirectory.psm1 -------------------------------------------------------------------------------- /PartnerCenterModule/PartnerCenterInvoice.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/PartnerCenterModule/PartnerCenterInvoice.psm1 -------------------------------------------------------------------------------- /PartnerCenterModule/PartnerCenterModule.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/PartnerCenterModule/PartnerCenterModule.psd1 -------------------------------------------------------------------------------- /PartnerCenterModule/PartnerCenterModule.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/PartnerCenterModule/PartnerCenterModule.psm1 -------------------------------------------------------------------------------- /PartnerCenterModule/PartnerCenterOffer.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/PartnerCenterModule/PartnerCenterOffer.psm1 -------------------------------------------------------------------------------- /PartnerCenterModule/PartnerCenterOrder.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/PartnerCenterModule/PartnerCenterOrder.psm1 -------------------------------------------------------------------------------- /PartnerCenterModule/PartnerCenterPartner.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/PartnerCenterModule/PartnerCenterPartner.psm1 -------------------------------------------------------------------------------- /PartnerCenterModule/PartnerCenterProfiles.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/PartnerCenterModule/PartnerCenterProfiles.psm1 -------------------------------------------------------------------------------- /PartnerCenterModule/PartnerCenterServiceRequest.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/PartnerCenterModule/PartnerCenterServiceRequest.psm1 -------------------------------------------------------------------------------- /PartnerCenterModule/PartnerCenterSubscription.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/PartnerCenterModule/PartnerCenterSubscription.psm1 -------------------------------------------------------------------------------- /PartnerCenterModule/PartnerCenterUsage.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/PartnerCenterModule/PartnerCenterUsage.psm1 -------------------------------------------------------------------------------- /PartnerCenterModule/PartnerCenterUser.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/PartnerCenterModule/PartnerCenterUser.psm1 -------------------------------------------------------------------------------- /PartnerCenterModule/commons.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/PartnerCenterModule/commons.ps1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/README.md -------------------------------------------------------------------------------- /tests/Reset-PCTests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/tests/Reset-PCTests.ps1 -------------------------------------------------------------------------------- /tests/Test-PCCmdlets.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartnerCenterPowerShellModule/HEAD/tests/Test-PCCmdlets.ps1 --------------------------------------------------------------------------------