├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ └── config.yml └── workflows │ ├── AutoLabelAssign.yml │ ├── AutoLabelMsftContributor.yml │ ├── AutoPublish.yml │ ├── BackgroundTasks.yml │ ├── BuildValidation.yml │ ├── LiveMergeCheck.yml │ ├── PrFileCount.yml │ ├── ProtectedFiles.yml │ ├── Stale.yml │ ├── StaleBranch.yml │ └── TierManagement.yml ├── .gitignore ├── .openpublishing.publish.config.json ├── .openpublishing.redirection.exchange.json ├── .openpublishing.redirection.officewebapps.json ├── .openpublishing.redirection.skype.json ├── .openpublishing.redirection.spmt.json ├── .openpublishing.redirection.teams.json ├── .openpublishing.redirection.whiteboard.json ├── ContentOwners.txt ├── LICENSE ├── LICENSE-CODE ├── README.md ├── SECURITY.md ├── ThirdPartyNotices ├── cabgen-bootstrap.yml ├── exchange ├── docfx.json ├── docs-conceptual │ ├── app-only-auth-powershell-v2.md │ ├── client-advanced-settings.md │ ├── cmdlet-property-sets.md │ ├── connect-exo-powershell-managed-identity.md │ ├── connect-to-exchange-online-powershell.md │ ├── connect-to-exchange-servers-using-remote-powershell.md │ ├── connect-to-exo-powershell-c-sharp.md │ ├── connect-to-scc-powershell.md │ ├── control-remote-powershell-access-to-exchange-servers.md │ ├── disable-access-to-exchange-online-powershell.md │ ├── exchange-cmdlet-syntax.md │ ├── exchange-management-shell.md │ ├── exchange-online-powershell-v2.md │ ├── exchange-online-powershell.md │ ├── exchange-online-protection-powershell.md │ ├── filter-properties.md │ ├── filters-v2.md │ ├── find-exchange-cmdlet-permissions.md │ ├── index.yml │ ├── invoke-command-workarounds-rest-api.md │ ├── media │ │ ├── add-icon.png │ │ ├── connect-exo-mfa-verify-prompt.png │ │ ├── connect-exo-password-prompt.png │ │ ├── exo-app-only-auth-admin-consent-granted.png │ │ ├── exo-app-only-auth-admin-consent-removed-from-graph.png │ │ ├── exo-app-only-auth-api-permissions-add-a-permission.png │ │ ├── exo-app-only-auth-api-permissions-select-exchange-manageasapp.png │ │ ├── exo-app-only-auth-api-permissions-select-o365-exo.png │ │ ├── exo-app-only-auth-app-assigned-to-role-scc.png │ │ ├── exo-app-only-auth-app-assigned-to-role.png │ │ ├── exo-app-only-auth-app-registration-page.png │ │ ├── exo-app-only-auth-certificate-successfully-added.png │ │ ├── exo-app-only-auth-find-add-select-app-for-assignment.PNG │ │ ├── exo-app-only-auth-find-and-select-supported-role-scc.png │ │ ├── exo-app-only-auth-find-and-select-supported-role.png │ │ ├── exo-app-only-auth-find-app-registrations.png │ │ ├── exo-app-only-auth-find-roles-and-administrators.png │ │ ├── exo-app-only-auth-manifest-select-api-permissions.png │ │ ├── exo-app-only-auth-new-app-registration.png │ │ ├── exo-app-only-auth-original-permissions.png │ │ ├── exo-app-only-auth-register-app.png │ │ ├── exo-app-only-auth-role-assignments-click-add-assignments-scc.png │ │ ├── exo-app-only-auth-role-assignments-click-add-assignments.png │ │ ├── exo-app-only-auth-role-description-page-click-assignments.PNG │ │ ├── exo-app-only-auth-select-certificates-and-secrets.png │ │ ├── exo-app-only-auth-select-manifest.png │ │ ├── exo-app-only-auth-select-upload-certificate.png │ │ ├── exo-app-only-auth-upload-certificate-dialog.png │ │ ├── mi-add-exo-module.png │ │ └── search-icon.png │ ├── open-the-exchange-management-shell.md │ ├── recipient-filters.md │ ├── recipientfilter-properties.md │ ├── scc-powershell.md │ ├── toc.yml │ ├── values-for-custompropertynames-parameter.md │ └── whats-new-in-the-exo-module.md ├── exchange-ps │ └── ExchangePowerShell │ │ ├── Add-ADPermission.md │ │ ├── Add-AttachmentFilterEntry.md │ │ ├── Add-AvailabilityAddressSpace.md │ │ ├── Add-ComplianceCaseMember.md │ │ ├── Add-ContentFilterPhrase.md │ │ ├── Add-DatabaseAvailabilityGroupServer.md │ │ ├── Add-DistributionGroupMember.md │ │ ├── Add-FederatedDomain.md │ │ ├── Add-GlobalMonitoringOverride.md │ │ ├── Add-IPAllowListEntry.md │ │ ├── Add-IPAllowListProvider.md │ │ ├── Add-IPBlockListEntry.md │ │ ├── Add-IPBlockListProvider.md │ │ ├── Add-MailboxDatabaseCopy.md │ │ ├── Add-MailboxFolderPermission.md │ │ ├── Add-MailboxPermission.md │ │ ├── Add-ManagementRoleEntry.md │ │ ├── Add-PublicFolderAdministrativePermission.md │ │ ├── Add-PublicFolderClientPermission.md │ │ ├── Add-RecipientPermission.md │ │ ├── Add-ResubmitRequest.md │ │ ├── Add-RoleGroupMember.md │ │ ├── Add-ServerMonitoringOverride.md │ │ ├── Add-UnifiedGroupLinks.md │ │ ├── Add-VivaModuleFeaturePolicy.md │ │ ├── Add-VivaOrgInsightsDelegatedRole.md │ │ ├── Add-eDiscoveryCaseAdmin.md │ │ ├── Cancel-SensitiveInformationScan.md │ │ ├── Check-PurviewConfig.md │ │ ├── Clean-MailboxDatabase.md │ │ ├── Clear-ActiveSyncDevice.md │ │ ├── Clear-MobileDevice.md │ │ ├── Clear-TextMessagingAccount.md │ │ ├── Compare-TextMessagingVerificationCode.md │ │ ├── Complete-MigrationBatch.md │ │ ├── Connect-ExchangeOnline.md │ │ ├── Connect-IPPSSession.md │ │ ├── Connect-Mailbox.md │ │ ├── Delete-QuarantineMessage.md │ │ ├── Disable-ATPProtectionPolicyRule.md │ │ ├── Disable-AddressListPaging.md │ │ ├── Disable-AntiPhishRule.md │ │ ├── Disable-App.md │ │ ├── Disable-CmdletExtensionAgent.md │ │ ├── Disable-DistributionGroup.md │ │ ├── Disable-DnssecForVerifiedDomain.md │ │ ├── Disable-EOPProtectionPolicyRule.md │ │ ├── Disable-HostedContentFilterRule.md │ │ ├── Disable-HostedOutboundSpamFilterRule.md │ │ ├── Disable-IPv6ForAcceptedDomain.md │ │ ├── Disable-InboxRule.md │ │ ├── Disable-JournalArchiving.md │ │ ├── Disable-JournalRule.md │ │ ├── Disable-MailContact.md │ │ ├── Disable-MailPublicFolder.md │ │ ├── Disable-MailUser.md │ │ ├── Disable-Mailbox.md │ │ ├── Disable-MailboxQuarantine.md │ │ ├── Disable-MalwareFilterRule.md │ │ ├── Disable-MetaCacheDatabase.md │ │ ├── Disable-OutlookAnywhere.md │ │ ├── Disable-OutlookProtectionRule.md │ │ ├── Disable-PushNotificationProxy.md │ │ ├── Disable-RemoteMailbox.md │ │ ├── Disable-ReportSubmissionRule.md │ │ ├── Disable-SafeAttachmentRule.md │ │ ├── Disable-SafeLinksRule.md │ │ ├── Disable-ServiceEmailChannel.md │ │ ├── Disable-SmtpDaneInbound.md │ │ ├── Disable-SweepRule.md │ │ ├── Disable-TransportAgent.md │ │ ├── Disable-TransportRule.md │ │ ├── Disable-UMAutoAttendant.md │ │ ├── Disable-UMCallAnsweringRule.md │ │ ├── Disable-UMIPGateway.md │ │ ├── Disable-UMMailbox.md │ │ ├── Disable-UMServer.md │ │ ├── Disable-UMService.md │ │ ├── Disconnect-ExchangeOnline.md │ │ ├── Dismount-Database.md │ │ ├── Dump-ProvisioningCache.md │ │ ├── Enable-ATPProtectionPolicyRule.md │ │ ├── Enable-AddressListPaging.md │ │ ├── Enable-AntiPhishRule.md │ │ ├── Enable-AntispamUpdates.md │ │ ├── Enable-App.md │ │ ├── Enable-CmdletExtensionAgent.md │ │ ├── Enable-ComplianceTagStorage.md │ │ ├── Enable-DistributionGroup.md │ │ ├── Enable-DnssecForVerifiedDomain.md │ │ ├── Enable-EOPProtectionPolicyRule.md │ │ ├── Enable-ExchangeCertificate.md │ │ ├── Enable-HostedContentFilterRule.md │ │ ├── Enable-HostedOutboundSpamFilterRule.md │ │ ├── Enable-IPv6ForAcceptedDomain.md │ │ ├── Enable-InboxRule.md │ │ ├── Enable-JournalRule.md │ │ ├── Enable-MailContact.md │ │ ├── Enable-MailPublicFolder.md │ │ ├── Enable-MailUser.md │ │ ├── Enable-Mailbox.md │ │ ├── Enable-MailboxQuarantine.md │ │ ├── Enable-MalwareFilterRule.md │ │ ├── Enable-MetaCacheDatabase.md │ │ ├── Enable-OrganizationCustomization.md │ │ ├── Enable-OutlookAnywhere.md │ │ ├── Enable-OutlookProtectionRule.md │ │ ├── Enable-PushNotificationProxy.md │ │ ├── Enable-RemoteMailbox.md │ │ ├── Enable-ReportSubmissionRule.md │ │ ├── Enable-SafeAttachmentRule.md │ │ ├── Enable-SafeLinksRule.md │ │ ├── Enable-ServiceEmailChannel.md │ │ ├── Enable-SmtpDaneInbound.md │ │ ├── Enable-SweepRule.md │ │ ├── Enable-TransportAgent.md │ │ ├── Enable-TransportRule.md │ │ ├── Enable-UMAutoAttendant.md │ │ ├── Enable-UMCallAnsweringRule.md │ │ ├── Enable-UMIPGateway.md │ │ ├── Enable-UMMailbox.md │ │ ├── Enable-UMServer.md │ │ ├── Enable-UMService.md │ │ ├── ExchangePowerShell.md │ │ ├── Execute-AzureADLabelSync.md │ │ ├── Expedite-Delicensing.md │ │ ├── Export-ActiveSyncLog.md │ │ ├── Export-ActivityExplorerData.md │ │ ├── Export-AutoDiscoverConfig.md │ │ ├── Export-ContentExplorerData.md │ │ ├── Export-DlpPolicyCollection.md │ │ ├── Export-ExchangeCertificate.md │ │ ├── Export-FilePlanProperty.md │ │ ├── Export-JournalRuleCollection.md │ │ ├── Export-MailboxDiagnosticLogs.md │ │ ├── Export-Message.md │ │ ├── Export-MigrationReport.md │ │ ├── Export-QuarantineMessage.md │ │ ├── Export-RecipientDataProperty.md │ │ ├── Export-TransportRuleCollection.md │ │ ├── Export-UMCallDataRecord.md │ │ ├── Export-UMPrompt.md │ │ ├── Get-ADPermission.md │ │ ├── Get-ADServerSettings.md │ │ ├── Get-ADSite.md │ │ ├── Get-ADSiteLink.md │ │ ├── Get-ATPBuiltInProtectionRule.md │ │ ├── Get-ATPProtectionPolicyRule.md │ │ ├── Get-ATPTotalTrafficReport.md │ │ ├── Get-AcceptedDomain.md │ │ ├── Get-AccessToCustomerDataRequest.md │ │ ├── Get-ActiveSyncDevice.md │ │ ├── Get-ActiveSyncDeviceAccessRule.md │ │ ├── Get-ActiveSyncDeviceAutoblockThreshold.md │ │ ├── Get-ActiveSyncDeviceClass.md │ │ ├── Get-ActiveSyncDeviceStatistics.md │ │ ├── Get-ActiveSyncMailboxPolicy.md │ │ ├── Get-ActiveSyncOrganizationSettings.md │ │ ├── Get-ActiveSyncVirtualDirectory.md │ │ ├── Get-AdaptiveScope.md │ │ ├── Get-AddressBookPolicy.md │ │ ├── Get-AddressList.md │ │ ├── Get-AddressRewriteEntry.md │ │ ├── Get-AdminAuditLogConfig.md │ │ ├── Get-AdministrativeUnit.md │ │ ├── Get-AgentLog.md │ │ ├── Get-AggregateZapReport.md │ │ ├── Get-AntiPhishPolicy.md │ │ ├── Get-AntiPhishRule.md │ │ ├── Get-App.md │ │ ├── Get-AppRetentionCompliancePolicy.md │ │ ├── Get-AppRetentionComplianceRule.md │ │ ├── Get-ApplicationAccessPolicy.md │ │ ├── Get-ArcConfig.md │ │ ├── Get-AtpPolicyForO365.md │ │ ├── Get-AttachmentFilterEntry.md │ │ ├── Get-AttachmentFilterListConfig.md │ │ ├── Get-AuditConfig.md │ │ ├── Get-AuditLogSearch.md │ │ ├── Get-AuthConfig.md │ │ ├── Get-AuthRedirect.md │ │ ├── Get-AuthServer.md │ │ ├── Get-AuthenticationPolicy.md │ │ ├── Get-AutoSensitivityLabelPolicy.md │ │ ├── Get-AutoSensitivityLabelRule.md │ │ ├── Get-AutodiscoverVirtualDirectory.md │ │ ├── Get-AvailabilityAddressSpace.md │ │ ├── Get-AvailabilityConfig.md │ │ ├── Get-AvailabilityReportOutage.md │ │ ├── Get-BlockedConnector.md │ │ ├── Get-BlockedSenderAddress.md │ │ ├── Get-CASMailbox.md │ │ ├── Get-CASMailboxPlan.md │ │ ├── Get-CalendarDiagnosticAnalysis.md │ │ ├── Get-CalendarDiagnosticLog.md │ │ ├── Get-CalendarDiagnosticObjects.md │ │ ├── Get-CalendarNotification.md │ │ ├── Get-CalendarProcessing.md │ │ ├── Get-CaseHoldPolicy.md │ │ ├── Get-CaseHoldRule.md │ │ ├── Get-ClassificationRuleCollection.md │ │ ├── Get-ClientAccessArray.md │ │ ├── Get-ClientAccessRule.md │ │ ├── Get-ClientAccessServer.md │ │ ├── Get-ClientAccessService.md │ │ ├── Get-Clutter.md │ │ ├── Get-CmdletExtensionAgent.md │ │ ├── Get-ComplianceCase.md │ │ ├── Get-ComplianceCaseMember.md │ │ ├── Get-ComplianceRetentionEvent.md │ │ ├── Get-ComplianceRetentionEventType.md │ │ ├── Get-ComplianceSearch.md │ │ ├── Get-ComplianceSearchAction.md │ │ ├── Get-ComplianceSecurityFilter.md │ │ ├── Get-ComplianceTag.md │ │ ├── Get-ComplianceTagStorage.md │ │ ├── Get-CompromisedUserAggregateReport.md │ │ ├── Get-CompromisedUserDetailReport.md │ │ ├── Get-ConfigAnalyzerPolicyRecommendation.md │ │ ├── Get-ConnectionInformation.md │ │ ├── Get-Contact.md │ │ ├── Get-ContentFilterConfig.md │ │ ├── Get-ContentFilterPhrase.md │ │ ├── Get-ContentMalwareMdoAggregateReport.md │ │ ├── Get-ContentMalwareMdoDetailReport.md │ │ ├── Get-DataClassification.md │ │ ├── Get-DataClassificationConfig.md │ │ ├── Get-DataEncryptionPolicy.md │ │ ├── Get-DataRetentionReport.md │ │ ├── Get-DatabaseAvailabilityGroup.md │ │ ├── Get-DatabaseAvailabilityGroupNetwork.md │ │ ├── Get-DefaultTenantBriefingConfig.md │ │ ├── Get-DefaultTenantMyAnalyticsFeatureConfig.md │ │ ├── Get-DeliveryAgentConnector.md │ │ ├── Get-DetailZapReport.md │ │ ├── Get-DetailsTemplate.md │ │ ├── Get-DeviceConditionalAccessPolicy.md │ │ ├── Get-DeviceConditionalAccessRule.md │ │ ├── Get-DeviceConfigurationPolicy.md │ │ ├── Get-DeviceConfigurationRule.md │ │ ├── Get-DevicePolicy.md │ │ ├── Get-DeviceTenantPolicy.md │ │ ├── Get-DeviceTenantRule.md │ │ ├── Get-DistributionGroup.md │ │ ├── Get-DistributionGroupMember.md │ │ ├── Get-DkimSigningConfig.md │ │ ├── Get-DlpCompliancePolicy.md │ │ ├── Get-DlpComplianceRule.md │ │ ├── Get-DlpDetailReport.md │ │ ├── Get-DlpDetectionsReport.md │ │ ├── Get-DlpEdmSchema.md │ │ ├── Get-DlpIncidentDetailReport.md │ │ ├── Get-DlpKeywordDictionary.md │ │ ├── Get-DlpPolicy.md │ │ ├── Get-DlpPolicyTemplate.md │ │ ├── Get-DlpSensitiveInformationType.md │ │ ├── Get-DlpSensitiveInformationTypeRulePackage.md │ │ ├── Get-DlpSiDetectionsReport.md │ │ ├── Get-DnssecStatusForVerifiedDomain.md │ │ ├── Get-DomainController.md │ │ ├── Get-DynamicDistributionGroup.md │ │ ├── Get-DynamicDistributionGroupMember.md │ │ ├── Get-EOPProtectionPolicyRule.md │ │ ├── Get-EXOCasMailbox.md │ │ ├── Get-EXOMailbox.md │ │ ├── Get-EXOMailboxFolderPermission.md │ │ ├── Get-EXOMailboxFolderStatistics.md │ │ ├── Get-EXOMailboxPermission.md │ │ ├── Get-EXOMailboxStatistics.md │ │ ├── Get-EXOMobileDeviceStatistics.md │ │ ├── Get-EXORecipient.md │ │ ├── Get-EXORecipientPermission.md │ │ ├── Get-EcpVirtualDirectory.md │ │ ├── Get-EdgeSubscription.md │ │ ├── Get-EdgeSyncServiceConfig.md │ │ ├── Get-EligibleDistributionGroupForMigration.md │ │ ├── Get-EmailAddressPolicy.md │ │ ├── Get-EmailTenantSettings.md │ │ ├── Get-EtrLimits.md │ │ ├── Get-EventLogLevel.md │ │ ├── Get-EventsFromEmailConfiguration.md │ │ ├── Get-ExchangeAssistanceConfig.md │ │ ├── Get-ExchangeCertificate.md │ │ ├── Get-ExchangeDiagnosticInfo.md │ │ ├── Get-ExchangeFeature.md │ │ ├── Get-ExchangeServer.md │ │ ├── Get-ExchangeServerAccessLicense.md │ │ ├── Get-ExchangeServerAccessLicenseUser.md │ │ ├── Get-ExchangeSettings.md │ │ ├── Get-ExoInformationBarrierPolicy.md │ │ ├── Get-ExoInformationBarrierRelationship.md │ │ ├── Get-ExoInformationBarrierSegment.md │ │ ├── Get-ExoPhishSimOverrideRule.md │ │ ├── Get-ExoSecOpsOverrideRule.md │ │ ├── Get-ExternalInOutlook.md │ │ ├── Get-FailedContentIndexDocuments.md │ │ ├── Get-FeatureConfiguration.md │ │ ├── Get-FederatedDomainProof.md │ │ ├── Get-FederatedOrganizationIdentifier.md │ │ ├── Get-FederationInformation.md │ │ ├── Get-FederationTrust.md │ │ ├── Get-FilePlanPropertyAuthority.md │ │ ├── Get-FilePlanPropertyCategory.md │ │ ├── Get-FilePlanPropertyCitation.md │ │ ├── Get-FilePlanPropertyDepartment.md │ │ ├── Get-FilePlanPropertyReferenceId.md │ │ ├── Get-FilePlanPropertyStructure.md │ │ ├── Get-FilePlanPropertySubCategory.md │ │ ├── Get-FocusedInbox.md │ │ ├── Get-ForeignConnector.md │ │ ├── Get-FrontendTransportService.md │ │ ├── Get-GlobalAddressList.md │ │ ├── Get-GlobalMonitoringOverride.md │ │ ├── Get-Group.md │ │ ├── Get-HealthReport.md │ │ ├── Get-HistoricalSearch.md │ │ ├── Get-HoldCompliancePolicy.md │ │ ├── Get-HoldComplianceRule.md │ │ ├── Get-HostedConnectionFilterPolicy.md │ │ ├── Get-HostedContentFilterPolicy.md │ │ ├── Get-HostedContentFilterRule.md │ │ ├── Get-HostedOutboundSpamFilterPolicy.md │ │ ├── Get-HostedOutboundSpamFilterRule.md │ │ ├── Get-HybridConfiguration.md │ │ ├── Get-HybridMailflowDatacenterIPs.md │ │ ├── Get-IPAllowListConfig.md │ │ ├── Get-IPAllowListEntry.md │ │ ├── Get-IPAllowListProvider.md │ │ ├── Get-IPAllowListProvidersConfig.md │ │ ├── Get-IPBlockListConfig.md │ │ ├── Get-IPBlockListEntry.md │ │ ├── Get-IPBlockListProvider.md │ │ ├── Get-IPBlockListProvidersConfig.md │ │ ├── Get-IPv6StatusForAcceptedDomain.md │ │ ├── Get-IRMConfiguration.md │ │ ├── Get-ImapSettings.md │ │ ├── Get-InboundConnector.md │ │ ├── Get-InboxRule.md │ │ ├── Get-InformationBarrierPoliciesApplicationStatus.md │ │ ├── Get-InformationBarrierPolicy.md │ │ ├── Get-InformationBarrierRecipientStatus.md │ │ ├── Get-IntraOrganizationConfiguration.md │ │ ├── Get-IntraOrganizationConnector.md │ │ ├── Get-JournalRule.md │ │ ├── Get-Label.md │ │ ├── Get-LabelPolicy.md │ │ ├── Get-LinkedUser.md │ │ ├── Get-LogonStatistics.md │ │ ├── Get-M365DataAtRestEncryptionPolicy.md │ │ ├── Get-M365DataAtRestEncryptionPolicyAssignment.md │ │ ├── Get-MailContact.md │ │ ├── Get-MailDetailATPReport.md │ │ ├── Get-MailDetailDlpPolicyReport.md │ │ ├── Get-MailDetailEncryptionReport.md │ │ ├── Get-MailDetailTransportRuleReport.md │ │ ├── Get-MailFilterListReport.md │ │ ├── Get-MailFlowStatusReport.md │ │ ├── Get-MailPublicFolder.md │ │ ├── Get-MailTrafficATPReport.md │ │ ├── Get-MailTrafficEncryptionReport.md │ │ ├── Get-MailTrafficPolicyReport.md │ │ ├── Get-MailTrafficSummaryReport.md │ │ ├── Get-MailUser.md │ │ ├── Get-Mailbox.md │ │ ├── Get-MailboxAuditBypassAssociation.md │ │ ├── Get-MailboxAutoReplyConfiguration.md │ │ ├── Get-MailboxCalendarConfiguration.md │ │ ├── Get-MailboxCalendarFolder.md │ │ ├── Get-MailboxDatabase.md │ │ ├── Get-MailboxDatabaseCopyStatus.md │ │ ├── Get-MailboxExportRequest.md │ │ ├── Get-MailboxExportRequestStatistics.md │ │ ├── Get-MailboxFolder.md │ │ ├── Get-MailboxFolderPermission.md │ │ ├── Get-MailboxFolderStatistics.md │ │ ├── Get-MailboxIRMAccess.md │ │ ├── Get-MailboxImportRequest.md │ │ ├── Get-MailboxImportRequestStatistics.md │ │ ├── Get-MailboxJunkEmailConfiguration.md │ │ ├── Get-MailboxLocation.md │ │ ├── Get-MailboxMessageConfiguration.md │ │ ├── Get-MailboxPermission.md │ │ ├── Get-MailboxPlan.md │ │ ├── Get-MailboxRegionalConfiguration.md │ │ ├── Get-MailboxRepairRequest.md │ │ ├── Get-MailboxRestoreRequest.md │ │ ├── Get-MailboxRestoreRequestStatistics.md │ │ ├── Get-MailboxSearch.md │ │ ├── Get-MailboxSentItemsConfiguration.md │ │ ├── Get-MailboxServer.md │ │ ├── Get-MailboxSpellingConfiguration.md │ │ ├── Get-MailboxStatistics.md │ │ ├── Get-MailboxTransportService.md │ │ ├── Get-MailboxUserConfiguration.md │ │ ├── Get-MalwareFilterPolicy.md │ │ ├── Get-MalwareFilterRule.md │ │ ├── Get-MalwareFilteringServer.md │ │ ├── Get-ManagedContentSettings.md │ │ ├── Get-ManagedFolder.md │ │ ├── Get-ManagedFolderMailboxPolicy.md │ │ ├── Get-ManagementRole.md │ │ ├── Get-ManagementRoleAssignment.md │ │ ├── Get-ManagementRoleEntry.md │ │ ├── Get-ManagementScope.md │ │ ├── Get-MapiVirtualDirectory.md │ │ ├── Get-Message.md │ │ ├── Get-MessageCategory.md │ │ ├── Get-MessageClassification.md │ │ ├── Get-MessageTrace.md │ │ ├── Get-MessageTraceDetail.md │ │ ├── Get-MessageTraceDetailV2.md │ │ ├── Get-MessageTraceV2.md │ │ ├── Get-MessageTrackingLog.md │ │ ├── Get-MessageTrackingReport.md │ │ ├── Get-MigrationBatch.md │ │ ├── Get-MigrationConfig.md │ │ ├── Get-MigrationEndpoint.md │ │ ├── Get-MigrationStatistics.md │ │ ├── Get-MigrationUser.md │ │ ├── Get-MigrationUserStatistics.md │ │ ├── Get-MobileDevice.md │ │ ├── Get-MobileDeviceMailboxPolicy.md │ │ ├── Get-MobileDeviceStatistics.md │ │ ├── Get-MonitoringItemHelp.md │ │ ├── Get-MonitoringItemIdentity.md │ │ ├── Get-MoveRequest.md │ │ ├── Get-MoveRequestStatistics.md │ │ ├── Get-MxRecordReport.md │ │ ├── Get-MyAnalyticsFeatureConfig.md │ │ ├── Get-NetworkConnectionInfo.md │ │ ├── Get-Notification.md │ │ ├── Get-OMEConfiguration.md │ │ ├── Get-OMEMessageStatus.md │ │ ├── Get-OabVirtualDirectory.md │ │ ├── Get-OfflineAddressBook.md │ │ ├── Get-OnPremisesOrganization.md │ │ ├── Get-OnlineMeetingConfiguration.md │ │ ├── Get-OrganizationConfig.md │ │ ├── Get-OrganizationRelationship.md │ │ ├── Get-OrganizationSegment.md │ │ ├── Get-OrganizationalUnit.md │ │ ├── Get-OutboundConnector.md │ │ ├── Get-OutboundConnectorReport.md │ │ ├── Get-OutlookAnywhere.md │ │ ├── Get-OutlookProtectionRule.md │ │ ├── Get-OutlookProvider.md │ │ ├── Get-OwaMailboxPolicy.md │ │ ├── Get-OwaVirtualDirectory.md │ │ ├── Get-PartnerApplication.md │ │ ├── Get-PendingDelicenseUser.md │ │ ├── Get-PendingFederatedDomain.md │ │ ├── Get-PerimeterConfig.md │ │ ├── Get-PhishSimOverridePolicy.md │ │ ├── Get-Place.md │ │ ├── Get-PolicyConfig.md │ │ ├── Get-PolicyTipConfig.md │ │ ├── Get-PopSettings.md │ │ ├── Get-PowerShellVirtualDirectory.md │ │ ├── Get-ProtectionAlert.md │ │ ├── Get-PublicFolder.md │ │ ├── Get-PublicFolderAdministrativePermission.md │ │ ├── Get-PublicFolderClientPermission.md │ │ ├── Get-PublicFolderDatabase.md │ │ ├── Get-PublicFolderItemStatistics.md │ │ ├── Get-PublicFolderMailboxDiagnostics.md │ │ ├── Get-PublicFolderMailboxMigrationRequest.md │ │ ├── Get-PublicFolderMailboxMigrationRequestStatistics.md │ │ ├── Get-PublicFolderMigrationRequest.md │ │ ├── Get-PublicFolderMigrationRequestStatistics.md │ │ ├── Get-PublicFolderMoveRequest.md │ │ ├── Get-PublicFolderMoveRequestStatistics.md │ │ ├── Get-PublicFolderStatistics.md │ │ ├── Get-QuarantineMessage.md │ │ ├── Get-QuarantineMessageHeader.md │ │ ├── Get-QuarantinePolicy.md │ │ ├── Get-Queue.md │ │ ├── Get-QueueDigest.md │ │ ├── Get-RMSTemplate.md │ │ ├── Get-ReceiveConnector.md │ │ ├── Get-Recipient.md │ │ ├── Get-RecipientFilterConfig.md │ │ ├── Get-RecipientPermission.md │ │ ├── Get-RecipientStatisticsReport.md │ │ ├── Get-RecordReviewNotificationTemplateConfig.md │ │ ├── Get-RecoverableItems.md │ │ ├── Get-RegulatoryComplianceUI.md │ │ ├── Get-RemoteDomain.md │ │ ├── Get-RemoteMailbox.md │ │ ├── Get-ReportExecutionInstance.md │ │ ├── Get-ReportSubmissionPolicy.md │ │ ├── Get-ReportSubmissionRule.md │ │ ├── Get-ResourceConfig.md │ │ ├── Get-ResubmitRequest.md │ │ ├── Get-RetentionCompliancePolicy.md │ │ ├── Get-RetentionComplianceRule.md │ │ ├── Get-RetentionEvent.md │ │ ├── Get-RetentionPolicy.md │ │ ├── Get-RetentionPolicyTag.md │ │ ├── Get-ReviewItems.md │ │ ├── Get-RoleAssignmentPolicy.md │ │ ├── Get-RoleGroup.md │ │ ├── Get-RoleGroupMember.md │ │ ├── Get-RoutingGroupConnector.md │ │ ├── Get-RpcClientAccess.md │ │ ├── Get-SCInsights.md │ │ ├── Get-SafeAttachmentPolicy.md │ │ ├── Get-SafeAttachmentRule.md │ │ ├── Get-SafeLinksAggregateReport.md │ │ ├── Get-SafeLinksDetailReport.md │ │ ├── Get-SafeLinksPolicy.md │ │ ├── Get-SafeLinksRule.md │ │ ├── Get-SearchDocumentFormat.md │ │ ├── Get-SecOpsOverridePolicy.md │ │ ├── Get-SecurityPrincipal.md │ │ ├── Get-SendConnector.md │ │ ├── Get-SenderFilterConfig.md │ │ ├── Get-SenderIdConfig.md │ │ ├── Get-SenderReputationConfig.md │ │ ├── Get-SensitiveInformationScan.md │ │ ├── Get-SensitiveInformationScanRule.md │ │ ├── Get-ServerComponentState.md │ │ ├── Get-ServerHealth.md │ │ ├── Get-ServerMonitoringOverride.md │ │ ├── Get-ServiceDeliveryReport.md │ │ ├── Get-ServicePrincipal.md │ │ ├── Get-SettingOverride.md │ │ ├── Get-SharingPolicy.md │ │ ├── Get-SiteMailbox.md │ │ ├── Get-SiteMailboxDiagnostics.md │ │ ├── Get-SiteMailboxProvisioningPolicy.md │ │ ├── Get-SmimeConfig.md │ │ ├── Get-SmtpDaneInboundStatus.md │ │ ├── Get-SpoofIntelligenceInsight.md │ │ ├── Get-SpoofMailReport.md │ │ ├── Get-StoreUsageStatistics.md │ │ ├── Get-SupervisoryReviewActivity.md │ │ ├── Get-SupervisoryReviewOverallProgressReport.md │ │ ├── Get-SupervisoryReviewPolicyReport.md │ │ ├── Get-SupervisoryReviewPolicyV2.md │ │ ├── Get-SupervisoryReviewReport.md │ │ ├── Get-SupervisoryReviewRule.md │ │ ├── Get-SupervisoryReviewTopCasesReport.md │ │ ├── Get-SweepRule.md │ │ ├── Get-SystemMessage.md │ │ ├── Get-TeamsProtectionPolicy.md │ │ ├── Get-TeamsProtectionPolicyRule.md │ │ ├── Get-TenantAllowBlockListItems.md │ │ ├── Get-TenantAllowBlockListSpoofItems.md │ │ ├── Get-TextMessagingAccount.md │ │ ├── Get-ThrottlingPolicy.md │ │ ├── Get-ThrottlingPolicyAssociation.md │ │ ├── Get-TransportAgent.md │ │ ├── Get-TransportConfig.md │ │ ├── Get-TransportPipeline.md │ │ ├── Get-TransportRule.md │ │ ├── Get-TransportRuleAction.md │ │ ├── Get-TransportRulePredicate.md │ │ ├── Get-TransportServer.md │ │ ├── Get-TransportService.md │ │ ├── Get-Trust.md │ │ ├── Get-UMActiveCalls.md │ │ ├── Get-UMAutoAttendant.md │ │ ├── Get-UMCallAnsweringRule.md │ │ ├── Get-UMCallDataRecord.md │ │ ├── Get-UMCallRouterSettings.md │ │ ├── Get-UMCallSummaryReport.md │ │ ├── Get-UMDialPlan.md │ │ ├── Get-UMHuntGroup.md │ │ ├── Get-UMIPGateway.md │ │ ├── Get-UMMailbox.md │ │ ├── Get-UMMailboxPin.md │ │ ├── Get-UMMailboxPolicy.md │ │ ├── Get-UMServer.md │ │ ├── Get-UMService.md │ │ ├── Get-UnifiedAuditLogRetentionPolicy.md │ │ ├── Get-UnifiedGroup.md │ │ ├── Get-UnifiedGroupLinks.md │ │ ├── Get-User.md │ │ ├── Get-UserBriefingConfig.md │ │ ├── Get-UserPhoto.md │ │ ├── Get-UserPrincipalNamesSuffix.md │ │ ├── Get-VivaInsightsSettings.md │ │ ├── Get-VivaModuleFeature.md │ │ ├── Get-VivaModuleFeatureEnablement.md │ │ ├── Get-VivaModuleFeaturePolicy.md │ │ ├── Get-VivaOrgInsightsDelegatedRole.md │ │ ├── Get-WebServicesVirtualDirectory.md │ │ ├── Get-X400AuthoritativeDomain.md │ │ ├── Get-eDiscoveryCaseAdmin.md │ │ ├── Import-DlpPolicyCollection.md │ │ ├── Import-DlpPolicyTemplate.md │ │ ├── Import-ExchangeCertificate.md │ │ ├── Import-FilePlanProperty.md │ │ ├── Import-JournalRuleCollection.md │ │ ├── Import-RecipientDataProperty.md │ │ ├── Import-TransportRuleCollection.md │ │ ├── Import-UMPrompt.md │ │ ├── Install-TransportAgent.md │ │ ├── Install-UnifiedCompliancePrerequisite.md │ │ ├── Invoke-ComplianceSearchActionStep.md │ │ ├── Invoke-ComplianceSecurityFilterAction.md │ │ ├── Invoke-HoldRemovalAction.md │ │ ├── Invoke-MonitoringProbe.md │ │ ├── Mount-Database.md │ │ ├── Move-ActiveMailboxDatabase.md │ │ ├── Move-AddressList.md │ │ ├── Move-DatabasePath.md │ │ ├── Move-OfflineAddressBook.md │ │ ├── New-ATPBuiltInProtectionRule.md │ │ ├── New-ATPProtectionPolicyRule.md │ │ ├── New-AcceptedDomain.md │ │ ├── New-ActiveSyncDeviceAccessRule.md │ │ ├── New-ActiveSyncMailboxPolicy.md │ │ ├── New-ActiveSyncVirtualDirectory.md │ │ ├── New-AdaptiveScope.md │ │ ├── New-AddressBookPolicy.md │ │ ├── New-AddressList.md │ │ ├── New-AddressRewriteEntry.md │ │ ├── New-AdminAuditLogSearch.md │ │ ├── New-AntiPhishPolicy.md │ │ ├── New-AntiPhishRule.md │ │ ├── New-App.md │ │ ├── New-AppRetentionCompliancePolicy.md │ │ ├── New-AppRetentionComplianceRule.md │ │ ├── New-ApplicationAccessPolicy.md │ │ ├── New-AuthRedirect.md │ │ ├── New-AuthServer.md │ │ ├── New-AuthenticationPolicy.md │ │ ├── New-AutoSensitivityLabelPolicy.md │ │ ├── New-AutoSensitivityLabelRule.md │ │ ├── New-AutodiscoverVirtualDirectory.md │ │ ├── New-AvailabilityConfig.md │ │ ├── New-AvailabilityReportOutage.md │ │ ├── New-CaseHoldPolicy.md │ │ ├── New-CaseHoldRule.md │ │ ├── New-ClassificationRuleCollection.md │ │ ├── New-ClientAccessArray.md │ │ ├── New-ComplianceCase.md │ │ ├── New-ComplianceRetentionEvent.md │ │ ├── New-ComplianceRetentionEventType.md │ │ ├── New-ComplianceSearch.md │ │ ├── New-ComplianceSearchAction.md │ │ ├── New-ComplianceSecurityFilter.md │ │ ├── New-ComplianceTag.md │ │ ├── New-DataClassification.md │ │ ├── New-DataEncryptionPolicy.md │ │ ├── New-DatabaseAvailabilityGroup.md │ │ ├── New-DatabaseAvailabilityGroupNetwork.md │ │ ├── New-DeliveryAgentConnector.md │ │ ├── New-DeviceConditionalAccessPolicy.md │ │ ├── New-DeviceConditionalAccessRule.md │ │ ├── New-DeviceConfigurationPolicy.md │ │ ├── New-DeviceConfigurationRule.md │ │ ├── New-DeviceTenantPolicy.md │ │ ├── New-DeviceTenantRule.md │ │ ├── New-DistributionGroup.md │ │ ├── New-DkimSigningConfig.md │ │ ├── New-DlpCompliancePolicy.md │ │ ├── New-DlpComplianceRule.md │ │ ├── New-DlpEdmSchema.md │ │ ├── New-DlpFingerprint.md │ │ ├── New-DlpKeywordDictionary.md │ │ ├── New-DlpPolicy.md │ │ ├── New-DlpSensitiveInformationType.md │ │ ├── New-DlpSensitiveInformationTypeRulePackage.md │ │ ├── New-DynamicDistributionGroup.md │ │ ├── New-EOPProtectionPolicyRule.md │ │ ├── New-EcpVirtualDirectory.md │ │ ├── New-EdgeSubscription.md │ │ ├── New-EdgeSyncServiceConfig.md │ │ ├── New-EmailAddressPolicy.md │ │ ├── New-ExchangeCertificate.md │ │ ├── New-ExchangeSettings.md │ │ ├── New-ExoPhishSimOverrideRule.md │ │ ├── New-ExoSecOpsOverrideRule.md │ │ ├── New-FeatureConfiguration.md │ │ ├── New-FederationTrust.md │ │ ├── New-FilePlanPropertyAuthority.md │ │ ├── New-FilePlanPropertyCategory.md │ │ ├── New-FilePlanPropertyCitation.md │ │ ├── New-FilePlanPropertyDepartment.md │ │ ├── New-FilePlanPropertyReferenceId.md │ │ ├── New-FilePlanPropertySubCategory.md │ │ ├── New-Fingerprint.md │ │ ├── New-ForeignConnector.md │ │ ├── New-GlobalAddressList.md │ │ ├── New-HoldCompliancePolicy.md │ │ ├── New-HoldComplianceRule.md │ │ ├── New-HostedContentFilterPolicy.md │ │ ├── New-HostedContentFilterRule.md │ │ ├── New-HostedOutboundSpamFilterPolicy.md │ │ ├── New-HostedOutboundSpamFilterRule.md │ │ ├── New-HybridConfiguration.md │ │ ├── New-InboundConnector.md │ │ ├── New-InboxRule.md │ │ ├── New-InformationBarrierPolicy.md │ │ ├── New-IntraOrganizationConnector.md │ │ ├── New-JournalRule.md │ │ ├── New-Label.md │ │ ├── New-LabelPolicy.md │ │ ├── New-M365DataAtRestEncryptionPolicy.md │ │ ├── New-MailContact.md │ │ ├── New-MailMessage.md │ │ ├── New-MailUser.md │ │ ├── New-Mailbox.md │ │ ├── New-MailboxAuditLogSearch.md │ │ ├── New-MailboxDatabase.md │ │ ├── New-MailboxExportRequest.md │ │ ├── New-MailboxFolder.md │ │ ├── New-MailboxImportRequest.md │ │ ├── New-MailboxRepairRequest.md │ │ ├── New-MailboxRestoreRequest.md │ │ ├── New-MailboxSearch.md │ │ ├── New-MalwareFilterPolicy.md │ │ ├── New-MalwareFilterRule.md │ │ ├── New-ManagedContentSettings.md │ │ ├── New-ManagedFolder.md │ │ ├── New-ManagedFolderMailboxPolicy.md │ │ ├── New-ManagementRole.md │ │ ├── New-ManagementRoleAssignment.md │ │ ├── New-ManagementScope.md │ │ ├── New-MapiVirtualDirectory.md │ │ ├── New-MessageClassification.md │ │ ├── New-MigrationBatch.md │ │ ├── New-MigrationEndpoint.md │ │ ├── New-MobileDeviceMailboxPolicy.md │ │ ├── New-MoveRequest.md │ │ ├── New-OMEConfiguration.md │ │ ├── New-OabVirtualDirectory.md │ │ ├── New-OfflineAddressBook.md │ │ ├── New-OnPremisesOrganization.md │ │ ├── New-OrganizationRelationship.md │ │ ├── New-OrganizationSegment.md │ │ ├── New-OutboundConnector.md │ │ ├── New-OutlookProtectionRule.md │ │ ├── New-OutlookProvider.md │ │ ├── New-OwaMailboxPolicy.md │ │ ├── New-OwaVirtualDirectory.md │ │ ├── New-PartnerApplication.md │ │ ├── New-PhishSimOverridePolicy.md │ │ ├── New-PolicyTipConfig.md │ │ ├── New-PowerShellVirtualDirectory.md │ │ ├── New-ProtectionAlert.md │ │ ├── New-PublicFolder.md │ │ ├── New-PublicFolderDatabase.md │ │ ├── New-PublicFolderDatabaseRepairRequest.md │ │ ├── New-PublicFolderMigrationRequest.md │ │ ├── New-PublicFolderMoveRequest.md │ │ ├── New-QuarantinePermissions.md │ │ ├── New-QuarantinePolicy.md │ │ ├── New-ReceiveConnector.md │ │ ├── New-RemoteDomain.md │ │ ├── New-RemoteMailbox.md │ │ ├── New-ReportSubmissionPolicy.md │ │ ├── New-ReportSubmissionRule.md │ │ ├── New-RetentionCompliancePolicy.md │ │ ├── New-RetentionComplianceRule.md │ │ ├── New-RetentionPolicy.md │ │ ├── New-RetentionPolicyTag.md │ │ ├── New-RoleAssignmentPolicy.md │ │ ├── New-RoleGroup.md │ │ ├── New-RoutingGroupConnector.md │ │ ├── New-RpcClientAccess.md │ │ ├── New-SafeAttachmentPolicy.md │ │ ├── New-SafeAttachmentRule.md │ │ ├── New-SafeLinksPolicy.md │ │ ├── New-SafeLinksRule.md │ │ ├── New-SearchDocumentFormat.md │ │ ├── New-SecOpsOverridePolicy.md │ │ ├── New-SendConnector.md │ │ ├── New-SensitiveInformationScan.md │ │ ├── New-SensitiveInformationScanRule.md │ │ ├── New-ServicePrincipal.md │ │ ├── New-SettingOverride.md │ │ ├── New-SharingPolicy.md │ │ ├── New-SiteMailbox.md │ │ ├── New-SiteMailboxProvisioningPolicy.md │ │ ├── New-SupervisoryReviewPolicyV2.md │ │ ├── New-SupervisoryReviewRule.md │ │ ├── New-SweepRule.md │ │ ├── New-SyncMailPublicFolder.md │ │ ├── New-SystemMessage.md │ │ ├── New-TeamsProtectionPolicy.md │ │ ├── New-TeamsProtectionPolicyRule.md │ │ ├── New-TenantAllowBlockListItems.md │ │ ├── New-TenantAllowBlockListSpoofItems.md │ │ ├── New-ThrottlingPolicy.md │ │ ├── New-TransportRule.md │ │ ├── New-UMAutoAttendant.md │ │ ├── New-UMCallAnsweringRule.md │ │ ├── New-UMDialPlan.md │ │ ├── New-UMHuntGroup.md │ │ ├── New-UMIPGateway.md │ │ ├── New-UMMailboxPolicy.md │ │ ├── New-UnifiedAuditLogRetentionPolicy.md │ │ ├── New-UnifiedGroup.md │ │ ├── New-WebServicesVirtualDirectory.md │ │ ├── New-X400AuthoritativeDomain.md │ │ ├── Preview-QuarantineMessage.md │ │ ├── Redirect-Message.md │ │ ├── Release-QuarantineMessage.md │ │ ├── Remove-ADPermission.md │ │ ├── Remove-ATPProtectionPolicyRule.md │ │ ├── Remove-AcceptedDomain.md │ │ ├── Remove-ActiveSyncDevice.md │ │ ├── Remove-ActiveSyncDeviceAccessRule.md │ │ ├── Remove-ActiveSyncDeviceClass.md │ │ ├── Remove-ActiveSyncMailboxPolicy.md │ │ ├── Remove-ActiveSyncVirtualDirectory.md │ │ ├── Remove-AdaptiveScope.md │ │ ├── Remove-AddressBookPolicy.md │ │ ├── Remove-AddressList.md │ │ ├── Remove-AddressRewriteEntry.md │ │ ├── Remove-AntiPhishPolicy.md │ │ ├── Remove-AntiPhishRule.md │ │ ├── Remove-App.md │ │ ├── Remove-AppRetentionCompliancePolicy.md │ │ ├── Remove-AppRetentionComplianceRule.md │ │ ├── Remove-ApplicationAccessPolicy.md │ │ ├── Remove-AttachmentFilterEntry.md │ │ ├── Remove-AuthRedirect.md │ │ ├── Remove-AuthServer.md │ │ ├── Remove-AuthenticationPolicy.md │ │ ├── Remove-AutoSensitivityLabelPolicy.md │ │ ├── Remove-AutoSensitivityLabelRule.md │ │ ├── Remove-AutodiscoverVirtualDirectory.md │ │ ├── Remove-AvailabilityAddressSpace.md │ │ ├── Remove-AvailabilityConfig.md │ │ ├── Remove-AvailabilityReportOutage.md │ │ ├── Remove-BlockedConnector.md │ │ ├── Remove-BlockedSenderAddress.md │ │ ├── Remove-CalendarEvents.md │ │ ├── Remove-CaseHoldPolicy.md │ │ ├── Remove-CaseHoldRule.md │ │ ├── Remove-ClassificationRuleCollection.md │ │ ├── Remove-ClientAccessArray.md │ │ ├── Remove-ClientAccessRule.md │ │ ├── Remove-ComplianceCase.md │ │ ├── Remove-ComplianceCaseMember.md │ │ ├── Remove-ComplianceRetentionEventType.md │ │ ├── Remove-ComplianceSearch.md │ │ ├── Remove-ComplianceSearchAction.md │ │ ├── Remove-ComplianceSecurityFilter.md │ │ ├── Remove-ComplianceTag.md │ │ ├── Remove-ContentFilterPhrase.md │ │ ├── Remove-DataClassification.md │ │ ├── Remove-DatabaseAvailabilityGroup.md │ │ ├── Remove-DatabaseAvailabilityGroupNetwork.md │ │ ├── Remove-DatabaseAvailabilityGroupServer.md │ │ ├── Remove-DeliveryAgentConnector.md │ │ ├── Remove-DeviceConditionalAccessPolicy.md │ │ ├── Remove-DeviceConditionalAccessRule.md │ │ ├── Remove-DeviceConfigurationPolicy.md │ │ ├── Remove-DeviceConfigurationRule.md │ │ ├── Remove-DeviceTenantPolicy.md │ │ ├── Remove-DeviceTenantRule.md │ │ ├── Remove-DistributionGroup.md │ │ ├── Remove-DistributionGroupMember.md │ │ ├── Remove-DkimSigningConfig.md │ │ ├── Remove-DlpCompliancePolicy.md │ │ ├── Remove-DlpComplianceRule.md │ │ ├── Remove-DlpEdmSchema.md │ │ ├── Remove-DlpKeywordDictionary.md │ │ ├── Remove-DlpPolicy.md │ │ ├── Remove-DlpPolicyTemplate.md │ │ ├── Remove-DlpSensitiveInformationType.md │ │ ├── Remove-DlpSensitiveInformationTypeRulePackage.md │ │ ├── Remove-DynamicDistributionGroup.md │ │ ├── Remove-EOPProtectionPolicyRule.md │ │ ├── Remove-EcpVirtualDirectory.md │ │ ├── Remove-EdgeSubscription.md │ │ ├── Remove-EmailAddressPolicy.md │ │ ├── Remove-ExchangeCertificate.md │ │ ├── Remove-ExoPhishSimOverrideRule.md │ │ ├── Remove-ExoSecOpsOverrideRule.md │ │ ├── Remove-FeatureConfiguration.md │ │ ├── Remove-FederatedDomain.md │ │ ├── Remove-FederationTrust.md │ │ ├── Remove-FilePlanPropertyAuthority.md │ │ ├── Remove-FilePlanPropertyCategory.md │ │ ├── Remove-FilePlanPropertyCitation.md │ │ ├── Remove-FilePlanPropertyDepartment.md │ │ ├── Remove-FilePlanPropertyReferenceId.md │ │ ├── Remove-FilePlanPropertySubCategory.md │ │ ├── Remove-ForeignConnector.md │ │ ├── Remove-GlobalAddressList.md │ │ ├── Remove-GlobalMonitoringOverride.md │ │ ├── Remove-HoldCompliancePolicy.md │ │ ├── Remove-HoldComplianceRule.md │ │ ├── Remove-HostedContentFilterPolicy.md │ │ ├── Remove-HostedContentFilterRule.md │ │ ├── Remove-HostedOutboundSpamFilterPolicy.md │ │ ├── Remove-HostedOutboundSpamFilterRule.md │ │ ├── Remove-HybridConfiguration.md │ │ ├── Remove-IPAllowListEntry.md │ │ ├── Remove-IPAllowListProvider.md │ │ ├── Remove-IPBlockListEntry.md │ │ ├── Remove-IPBlockListProvider.md │ │ ├── Remove-InboundConnector.md │ │ ├── Remove-InboxRule.md │ │ ├── Remove-InformationBarrierPolicy.md │ │ ├── Remove-IntraOrganizationConnector.md │ │ ├── Remove-JournalRule.md │ │ ├── Remove-Label.md │ │ ├── Remove-LabelPolicy.md │ │ ├── Remove-MailContact.md │ │ ├── Remove-MailUser.md │ │ ├── Remove-Mailbox.md │ │ ├── Remove-MailboxDatabase.md │ │ ├── Remove-MailboxDatabaseCopy.md │ │ ├── Remove-MailboxExportRequest.md │ │ ├── Remove-MailboxFolderPermission.md │ │ ├── Remove-MailboxIRMAccess.md │ │ ├── Remove-MailboxImportRequest.md │ │ ├── Remove-MailboxPermission.md │ │ ├── Remove-MailboxRepairRequest.md │ │ ├── Remove-MailboxRestoreRequest.md │ │ ├── Remove-MailboxSearch.md │ │ ├── Remove-MailboxUserConfiguration.md │ │ ├── Remove-MalwareFilterPolicy.md │ │ ├── Remove-MalwareFilterRule.md │ │ ├── Remove-ManagedContentSettings.md │ │ ├── Remove-ManagedFolder.md │ │ ├── Remove-ManagedFolderMailboxPolicy.md │ │ ├── Remove-ManagementRole.md │ │ ├── Remove-ManagementRoleAssignment.md │ │ ├── Remove-ManagementRoleEntry.md │ │ ├── Remove-ManagementScope.md │ │ ├── Remove-MapiVirtualDirectory.md │ │ ├── Remove-Message.md │ │ ├── Remove-MessageClassification.md │ │ ├── Remove-MigrationBatch.md │ │ ├── Remove-MigrationEndpoint.md │ │ ├── Remove-MigrationUser.md │ │ ├── Remove-MobileDevice.md │ │ ├── Remove-MobileDeviceMailboxPolicy.md │ │ ├── Remove-MoveRequest.md │ │ ├── Remove-OMEConfiguration.md │ │ ├── Remove-OabVirtualDirectory.md │ │ ├── Remove-OfflineAddressBook.md │ │ ├── Remove-OnPremisesOrganization.md │ │ ├── Remove-OrganizationRelationship.md │ │ ├── Remove-OrganizationSegment.md │ │ ├── Remove-OutboundConnector.md │ │ ├── Remove-OutlookProtectionRule.md │ │ ├── Remove-OutlookProvider.md │ │ ├── Remove-OwaMailboxPolicy.md │ │ ├── Remove-OwaVirtualDirectory.md │ │ ├── Remove-PartnerApplication.md │ │ ├── Remove-PhishSimOverridePolicy.md │ │ ├── Remove-PolicyTipConfig.md │ │ ├── Remove-PowerShellVirtualDirectory.md │ │ ├── Remove-ProtectionAlert.md │ │ ├── Remove-PublicFolder.md │ │ ├── Remove-PublicFolderAdministrativePermission.md │ │ ├── Remove-PublicFolderClientPermission.md │ │ ├── Remove-PublicFolderDatabase.md │ │ ├── Remove-PublicFolderMailboxMigrationRequest.md │ │ ├── Remove-PublicFolderMigrationRequest.md │ │ ├── Remove-PublicFolderMoveRequest.md │ │ ├── Remove-QuarantinePolicy.md │ │ ├── Remove-ReceiveConnector.md │ │ ├── Remove-RecipientPermission.md │ │ ├── Remove-RemoteDomain.md │ │ ├── Remove-RemoteMailbox.md │ │ ├── Remove-ReportSubmissionPolicy.md │ │ ├── Remove-ReportSubmissionRule.md │ │ ├── Remove-ResubmitRequest.md │ │ ├── Remove-RetentionCompliancePolicy.md │ │ ├── Remove-RetentionComplianceRule.md │ │ ├── Remove-RetentionPolicy.md │ │ ├── Remove-RetentionPolicyTag.md │ │ ├── Remove-RoleAssignmentPolicy.md │ │ ├── Remove-RoleGroup.md │ │ ├── Remove-RoleGroupMember.md │ │ ├── Remove-RoutingGroupConnector.md │ │ ├── Remove-RpcClientAccess.md │ │ ├── Remove-SafeAttachmentPolicy.md │ │ ├── Remove-SafeAttachmentRule.md │ │ ├── Remove-SafeLinksPolicy.md │ │ ├── Remove-SafeLinksRule.md │ │ ├── Remove-SearchDocumentFormat.md │ │ ├── Remove-SecOpsOverridePolicy.md │ │ ├── Remove-SendConnector.md │ │ ├── Remove-SensitiveInformationScan.md │ │ ├── Remove-SensitiveInformationScanRule.md │ │ ├── Remove-ServerMonitoringOverride.md │ │ ├── Remove-ServicePrincipal.md │ │ ├── Remove-SettingOverride.md │ │ ├── Remove-SharingPolicy.md │ │ ├── Remove-SiteMailboxProvisioningPolicy.md │ │ ├── Remove-StoreMailbox.md │ │ ├── Remove-SupervisoryReviewPolicyV2.md │ │ ├── Remove-SweepRule.md │ │ ├── Remove-SyncMailPublicFolder.md │ │ ├── Remove-SystemMessage.md │ │ ├── Remove-TenantAllowBlockListItems.md │ │ ├── Remove-TenantAllowBlockListSpoofItems.md │ │ ├── Remove-ThrottlingPolicy.md │ │ ├── Remove-TransportRule.md │ │ ├── Remove-UMAutoAttendant.md │ │ ├── Remove-UMCallAnsweringRule.md │ │ ├── Remove-UMDialPlan.md │ │ ├── Remove-UMHuntGroup.md │ │ ├── Remove-UMIPGateway.md │ │ ├── Remove-UMMailboxPolicy.md │ │ ├── Remove-UnifiedAuditLogRetentionPolicy.md │ │ ├── Remove-UnifiedGroup.md │ │ ├── Remove-UnifiedGroupLinks.md │ │ ├── Remove-UserPhoto.md │ │ ├── Remove-VivaModuleFeaturePolicy.md │ │ ├── Remove-VivaOrgInsightsDelegatedRole.md │ │ ├── Remove-WebServicesVirtualDirectory.md │ │ ├── Remove-X400AuthoritativeDomain.md │ │ ├── Remove-eDiscoveryCaseAdmin.md │ │ ├── Reset-ProvisioningCache.md │ │ ├── Restore-DatabaseAvailabilityGroup.md │ │ ├── Restore-DetailsTemplate.md │ │ ├── Restore-Mailbox.md │ │ ├── Restore-RecoverableItems.md │ │ ├── Resume-MailboxDatabaseCopy.md │ │ ├── Resume-MailboxExportRequest.md │ │ ├── Resume-MailboxImportRequest.md │ │ ├── Resume-MailboxRestoreRequest.md │ │ ├── Resume-Message.md │ │ ├── Resume-MoveRequest.md │ │ ├── Resume-PublicFolderMigrationRequest.md │ │ ├── Resume-PublicFolderMoveRequest.md │ │ ├── Resume-PublicFolderReplication.md │ │ ├── Resume-Queue.md │ │ ├── Retry-Queue.md │ │ ├── Rotate-DkimSigningConfig.md │ │ ├── Search-AdminAuditLog.md │ │ ├── Search-Mailbox.md │ │ ├── Search-MailboxAuditLog.md │ │ ├── Search-MessageTrackingReport.md │ │ ├── Search-UnifiedAuditLog.md │ │ ├── Send-TextMessagingVerificationCode.md │ │ ├── Set-ADServerSettings.md │ │ ├── Set-ADSite.md │ │ ├── Set-ADSiteLink.md │ │ ├── Set-ATPBuiltInProtectionRule.md │ │ ├── Set-ATPProtectionPolicyRule.md │ │ ├── Set-AcceptedDomain.md │ │ ├── Set-AccessToCustomerDataRequest.md │ │ ├── Set-ActiveSyncDeviceAccessRule.md │ │ ├── Set-ActiveSyncDeviceAutoblockThreshold.md │ │ ├── Set-ActiveSyncMailboxPolicy.md │ │ ├── Set-ActiveSyncOrganizationSettings.md │ │ ├── Set-ActiveSyncVirtualDirectory.md │ │ ├── Set-AdaptiveScope.md │ │ ├── Set-AddressBookPolicy.md │ │ ├── Set-AddressList.md │ │ ├── Set-AddressRewriteEntry.md │ │ ├── Set-AdminAuditLogConfig.md │ │ ├── Set-AntiPhishPolicy.md │ │ ├── Set-AntiPhishRule.md │ │ ├── Set-App.md │ │ ├── Set-AppRetentionCompliancePolicy.md │ │ ├── Set-AppRetentionComplianceRule.md │ │ ├── Set-ApplicationAccessPolicy.md │ │ ├── Set-ArcConfig.md │ │ ├── Set-AtpPolicyForO365.md │ │ ├── Set-AttachmentFilterListConfig.md │ │ ├── Set-AuditConfig.md │ │ ├── Set-AuthConfig.md │ │ ├── Set-AuthRedirect.md │ │ ├── Set-AuthServer.md │ │ ├── Set-AuthenticationPolicy.md │ │ ├── Set-AutoSensitivityLabelPolicy.md │ │ ├── Set-AutoSensitivityLabelRule.md │ │ ├── Set-AutodiscoverVirtualDirectory.md │ │ ├── Set-AvailabilityConfig.md │ │ ├── Set-AvailabilityReportOutage.md │ │ ├── Set-CASMailbox.md │ │ ├── Set-CASMailboxPlan.md │ │ ├── Set-CalendarNotification.md │ │ ├── Set-CalendarProcessing.md │ │ ├── Set-CaseHoldPolicy.md │ │ ├── Set-CaseHoldRule.md │ │ ├── Set-ClassificationRuleCollection.md │ │ ├── Set-ClientAccessArray.md │ │ ├── Set-ClientAccessRule.md │ │ ├── Set-ClientAccessServer.md │ │ ├── Set-ClientAccessService.md │ │ ├── Set-Clutter.md │ │ ├── Set-CmdletExtensionAgent.md │ │ ├── Set-ComplianceCase.md │ │ ├── Set-ComplianceRetentionEventType.md │ │ ├── Set-ComplianceSearch.md │ │ ├── Set-ComplianceSearchAction.md │ │ ├── Set-ComplianceSecurityFilter.md │ │ ├── Set-ComplianceTag.md │ │ ├── Set-Contact.md │ │ ├── Set-ContentFilterConfig.md │ │ ├── Set-DataClassification.md │ │ ├── Set-DataEncryptionPolicy.md │ │ ├── Set-DatabaseAvailabilityGroup.md │ │ ├── Set-DatabaseAvailabilityGroupNetwork.md │ │ ├── Set-DefaultTenantBriefingConfig.md │ │ ├── Set-DefaultTenantMyAnalyticsFeatureConfig.md │ │ ├── Set-DeliveryAgentConnector.md │ │ ├── Set-DetailsTemplate.md │ │ ├── Set-DeviceConditionalAccessPolicy.md │ │ ├── Set-DeviceConditionalAccessRule.md │ │ ├── Set-DeviceConfigurationPolicy.md │ │ ├── Set-DeviceConfigurationRule.md │ │ ├── Set-DeviceTenantPolicy.md │ │ ├── Set-DeviceTenantRule.md │ │ ├── Set-DistributionGroup.md │ │ ├── Set-DkimSigningConfig.md │ │ ├── Set-DlpCompliancePolicy.md │ │ ├── Set-DlpComplianceRule.md │ │ ├── Set-DlpEdmSchema.md │ │ ├── Set-DlpKeywordDictionary.md │ │ ├── Set-DlpPolicy.md │ │ ├── Set-DlpSensitiveInformationType.md │ │ ├── Set-DlpSensitiveInformationTypeRulePackage.md │ │ ├── Set-DynamicDistributionGroup.md │ │ ├── Set-EOPProtectionPolicyRule.md │ │ ├── Set-EcpVirtualDirectory.md │ │ ├── Set-EdgeSyncServiceConfig.md │ │ ├── Set-EmailAddressPolicy.md │ │ ├── Set-EmailTenantSettings.md │ │ ├── Set-EventLogLevel.md │ │ ├── Set-EventsFromEmailConfiguration.md │ │ ├── Set-ExchangeAssistanceConfig.md │ │ ├── Set-ExchangeFeature.md │ │ ├── Set-ExchangeServer.md │ │ ├── Set-ExchangeSettings.md │ │ ├── Set-ExoPhishSimOverrideRule.md │ │ ├── Set-ExoSecOpsOverrideRule.md │ │ ├── Set-ExternalInOutlook.md │ │ ├── Set-FeatureConfiguration.md │ │ ├── Set-FederatedOrganizationIdentifier.md │ │ ├── Set-FederationTrust.md │ │ ├── Set-FilePlanPropertyAuthority.md │ │ ├── Set-FilePlanPropertyCategory.md │ │ ├── Set-FilePlanPropertyCitation.md │ │ ├── Set-FilePlanPropertyDepartment.md │ │ ├── Set-FilePlanPropertyReferenceId.md │ │ ├── Set-FilePlanPropertySubCategory.md │ │ ├── Set-FocusedInbox.md │ │ ├── Set-ForeignConnector.md │ │ ├── Set-FrontendTransportService.md │ │ ├── Set-GlobalAddressList.md │ │ ├── Set-Group.md │ │ ├── Set-HoldCompliancePolicy.md │ │ ├── Set-HoldComplianceRule.md │ │ ├── Set-HostedConnectionFilterPolicy.md │ │ ├── Set-HostedContentFilterPolicy.md │ │ ├── Set-HostedContentFilterRule.md │ │ ├── Set-HostedOutboundSpamFilterPolicy.md │ │ ├── Set-HostedOutboundSpamFilterRule.md │ │ ├── Set-HybridConfiguration.md │ │ ├── Set-IPAllowListConfig.md │ │ ├── Set-IPAllowListProvider.md │ │ ├── Set-IPAllowListProvidersConfig.md │ │ ├── Set-IPBlockListConfig.md │ │ ├── Set-IPBlockListProvider.md │ │ ├── Set-IPBlockListProvidersConfig.md │ │ ├── Set-IRMConfiguration.md │ │ ├── Set-ImapSettings.md │ │ ├── Set-InboundConnector.md │ │ ├── Set-InboxRule.md │ │ ├── Set-InformationBarrierPolicy.md │ │ ├── Set-IntraOrganizationConnector.md │ │ ├── Set-JournalRule.md │ │ ├── Set-Label.md │ │ ├── Set-LabelPolicy.md │ │ ├── Set-LinkedUser.md │ │ ├── Set-M365DataAtRestEncryptionPolicy.md │ │ ├── Set-M365DataAtRestEncryptionPolicyAssignment.md │ │ ├── Set-MailContact.md │ │ ├── Set-MailPublicFolder.md │ │ ├── Set-MailUser.md │ │ ├── Set-Mailbox.md │ │ ├── Set-MailboxAuditBypassAssociation.md │ │ ├── Set-MailboxAutoReplyConfiguration.md │ │ ├── Set-MailboxCalendarConfiguration.md │ │ ├── Set-MailboxCalendarFolder.md │ │ ├── Set-MailboxDatabase.md │ │ ├── Set-MailboxDatabaseCopy.md │ │ ├── Set-MailboxExportRequest.md │ │ ├── Set-MailboxFolderPermission.md │ │ ├── Set-MailboxIRMAccess.md │ │ ├── Set-MailboxImportRequest.md │ │ ├── Set-MailboxJunkEmailConfiguration.md │ │ ├── Set-MailboxMessageConfiguration.md │ │ ├── Set-MailboxPlan.md │ │ ├── Set-MailboxRegionalConfiguration.md │ │ ├── Set-MailboxRestoreRequest.md │ │ ├── Set-MailboxSearch.md │ │ ├── Set-MailboxSentItemsConfiguration.md │ │ ├── Set-MailboxServer.md │ │ ├── Set-MailboxSpellingConfiguration.md │ │ ├── Set-MailboxTransportService.md │ │ ├── Set-MalwareFilterPolicy.md │ │ ├── Set-MalwareFilterRule.md │ │ ├── Set-MalwareFilteringServer.md │ │ ├── Set-ManagedContentSettings.md │ │ ├── Set-ManagedFolder.md │ │ ├── Set-ManagedFolderMailboxPolicy.md │ │ ├── Set-ManagementRoleAssignment.md │ │ ├── Set-ManagementRoleEntry.md │ │ ├── Set-ManagementScope.md │ │ ├── Set-MapiVirtualDirectory.md │ │ ├── Set-MessageClassification.md │ │ ├── Set-MigrationBatch.md │ │ ├── Set-MigrationConfig.md │ │ ├── Set-MigrationEndpoint.md │ │ ├── Set-MigrationUser.md │ │ ├── Set-MobileDeviceMailboxPolicy.md │ │ ├── Set-MoveRequest.md │ │ ├── Set-MyAnalyticsFeatureConfig.md │ │ ├── Set-Notification.md │ │ ├── Set-OMEConfiguration.md │ │ ├── Set-OMEMessageRevocation.md │ │ ├── Set-OabVirtualDirectory.md │ │ ├── Set-OfflineAddressBook.md │ │ ├── Set-OnPremisesOrganization.md │ │ ├── Set-OrganizationConfig.md │ │ ├── Set-OrganizationRelationship.md │ │ ├── Set-OrganizationSegment.md │ │ ├── Set-OutboundConnector.md │ │ ├── Set-OutlookAnywhere.md │ │ ├── Set-OutlookProtectionRule.md │ │ ├── Set-OutlookProvider.md │ │ ├── Set-OwaMailboxPolicy.md │ │ ├── Set-OwaVirtualDirectory.md │ │ ├── Set-PartnerApplication.md │ │ ├── Set-PendingFederatedDomain.md │ │ ├── Set-PerimeterConfig.md │ │ ├── Set-PhishSimOverridePolicy.md │ │ ├── Set-Place.md │ │ ├── Set-PolicyConfig.md │ │ ├── Set-PolicyTipConfig.md │ │ ├── Set-PopSettings.md │ │ ├── Set-PowerShellVirtualDirectory.md │ │ ├── Set-ProtectionAlert.md │ │ ├── Set-PublicFolder.md │ │ ├── Set-PublicFolderDatabase.md │ │ ├── Set-PublicFolderMigrationRequest.md │ │ ├── Set-PublicFolderMoveRequest.md │ │ ├── Set-QuarantinePermissions.md │ │ ├── Set-QuarantinePolicy.md │ │ ├── Set-RMSTemplate.md │ │ ├── Set-ReceiveConnector.md │ │ ├── Set-RecipientFilterConfig.md │ │ ├── Set-RecordReviewNotificationTemplateConfig.md │ │ ├── Set-RegulatoryComplianceUI.md │ │ ├── Set-RemoteDomain.md │ │ ├── Set-RemoteMailbox.md │ │ ├── Set-ReportSubmissionPolicy.md │ │ ├── Set-ReportSubmissionRule.md │ │ ├── Set-ResourceConfig.md │ │ ├── Set-ResubmitRequest.md │ │ ├── Set-RetentionCompliancePolicy.md │ │ ├── Set-RetentionComplianceRule.md │ │ ├── Set-RetentionPolicy.md │ │ ├── Set-RetentionPolicyTag.md │ │ ├── Set-RoleAssignmentPolicy.md │ │ ├── Set-RoleGroup.md │ │ ├── Set-RoutingGroupConnector.md │ │ ├── Set-RpcClientAccess.md │ │ ├── Set-SafeAttachmentPolicy.md │ │ ├── Set-SafeAttachmentRule.md │ │ ├── Set-SafeLinksPolicy.md │ │ ├── Set-SafeLinksRule.md │ │ ├── Set-SearchDocumentFormat.md │ │ ├── Set-SecOpsOverridePolicy.md │ │ ├── Set-SendConnector.md │ │ ├── Set-SenderFilterConfig.md │ │ ├── Set-SenderIdConfig.md │ │ ├── Set-SenderReputationConfig.md │ │ ├── Set-SensitiveInformationScan.md │ │ ├── Set-SensitiveInformationScanRule.md │ │ ├── Set-ServerComponentState.md │ │ ├── Set-ServerMonitor.md │ │ ├── Set-ServicePrincipal.md │ │ ├── Set-SettingOverride.md │ │ ├── Set-SharingPolicy.md │ │ ├── Set-SiteMailbox.md │ │ ├── Set-SiteMailboxProvisioningPolicy.md │ │ ├── Set-SmimeConfig.md │ │ ├── Set-SupervisoryReviewPolicyV2.md │ │ ├── Set-SupervisoryReviewRule.md │ │ ├── Set-SweepRule.md │ │ ├── Set-SystemMessage.md │ │ ├── Set-TeamsProtectionPolicy.md │ │ ├── Set-TeamsProtectionPolicyRule.md │ │ ├── Set-TenantAllowBlockListItems.md │ │ ├── Set-TenantAllowBlockListSpoofItems.md │ │ ├── Set-TextMessagingAccount.md │ │ ├── Set-ThrottlingPolicy.md │ │ ├── Set-ThrottlingPolicyAssociation.md │ │ ├── Set-TransportAgent.md │ │ ├── Set-TransportConfig.md │ │ ├── Set-TransportRule.md │ │ ├── Set-TransportServer.md │ │ ├── Set-TransportService.md │ │ ├── Set-UMAutoAttendant.md │ │ ├── Set-UMCallAnsweringRule.md │ │ ├── Set-UMCallRouterSettings.md │ │ ├── Set-UMDialPlan.md │ │ ├── Set-UMIPGateway.md │ │ ├── Set-UMMailbox.md │ │ ├── Set-UMMailboxPIN.md │ │ ├── Set-UMMailboxPolicy.md │ │ ├── Set-UMServer.md │ │ ├── Set-UMService.md │ │ ├── Set-UnifiedAuditLogRetentionPolicy.md │ │ ├── Set-UnifiedGroup.md │ │ ├── Set-User.md │ │ ├── Set-UserBriefingConfig.md │ │ ├── Set-UserPhoto.md │ │ ├── Set-VivaInsightsSettings.md │ │ ├── Set-WebServicesVirtualDirectory.md │ │ ├── Set-X400AuthoritativeDomain.md │ │ ├── Start-ComplianceSearch.md │ │ ├── Start-DatabaseAvailabilityGroup.md │ │ ├── Start-EdgeSynchronization.md │ │ ├── Start-HistoricalSearch.md │ │ ├── Start-InformationBarrierPoliciesApplication.md │ │ ├── Start-MailboxAssistant.md │ │ ├── Start-MailboxSearch.md │ │ ├── Start-ManagedFolderAssistant.md │ │ ├── Start-MigrationBatch.md │ │ ├── Start-MigrationUser.md │ │ ├── Start-RetentionAutoTagLearning.md │ │ ├── Stop-ComplianceSearch.md │ │ ├── Stop-DatabaseAvailabilityGroup.md │ │ ├── Stop-HistoricalSearch.md │ │ ├── Stop-InformationBarrierPoliciesApplication.md │ │ ├── Stop-MailboxSearch.md │ │ ├── Stop-ManagedFolderAssistant.md │ │ ├── Stop-MigrationBatch.md │ │ ├── Stop-MigrationUser.md │ │ ├── Suspend-MailboxDatabaseCopy.md │ │ ├── Suspend-MailboxExportRequest.md │ │ ├── Suspend-MailboxImportRequest.md │ │ ├── Suspend-MailboxRestoreRequest.md │ │ ├── Suspend-Message.md │ │ ├── Suspend-MoveRequest.md │ │ ├── Suspend-PublicFolderMailboxMigrationRequest.md │ │ ├── Suspend-PublicFolderMigrationRequest.md │ │ ├── Suspend-PublicFolderMoveRequest.md │ │ ├── Suspend-PublicFolderReplication.md │ │ ├── Suspend-Queue.md │ │ ├── Test-ActiveSyncConnectivity.md │ │ ├── Test-ApplicationAccessPolicy.md │ │ ├── Test-ArchiveConnectivity.md │ │ ├── Test-AssistantHealth.md │ │ ├── Test-CalendarConnectivity.md │ │ ├── Test-ClientAccessRule.md │ │ ├── Test-DataClassification.md │ │ ├── Test-EcpConnectivity.md │ │ ├── Test-EdgeSynchronization.md │ │ ├── Test-ExchangeSearch.md │ │ ├── Test-FederationTrust.md │ │ ├── Test-FederationTrustCertificate.md │ │ ├── Test-IPAllowListProvider.md │ │ ├── Test-IPBlockListProvider.md │ │ ├── Test-IRMConfiguration.md │ │ ├── Test-ImapConnectivity.md │ │ ├── Test-M365DataAtRestEncryptionPolicy.md │ │ ├── Test-MAPIConnectivity.md │ │ ├── Test-MRSHealth.md │ │ ├── Test-Mailflow.md │ │ ├── Test-Message.md │ │ ├── Test-MigrationServerAvailability.md │ │ ├── Test-OAuthConnectivity.md │ │ ├── Test-OrganizationRelationship.md │ │ ├── Test-OutlookConnectivity.md │ │ ├── Test-OutlookWebServices.md │ │ ├── Test-OwaConnectivity.md │ │ ├── Test-PopConnectivity.md │ │ ├── Test-PowerShellConnectivity.md │ │ ├── Test-ReplicationHealth.md │ │ ├── Test-SenderId.md │ │ ├── Test-ServiceHealth.md │ │ ├── Test-ServicePrincipalAuthorization.md │ │ ├── Test-SiteMailbox.md │ │ ├── Test-SmtpConnectivity.md │ │ ├── Test-SystemHealth.md │ │ ├── Test-TextExtraction.md │ │ ├── Test-UMConnectivity.md │ │ ├── Test-WebServicesConnectivity.md │ │ ├── Undo-SoftDeletedMailbox.md │ │ ├── Undo-SoftDeletedUnifiedGroup.md │ │ ├── Uninstall-TransportAgent.md │ │ ├── Update-AddressList.md │ │ ├── Update-ComplianceCaseMember.md │ │ ├── Update-DatabaseSchema.md │ │ ├── Update-DistributionGroupMember.md │ │ ├── Update-EmailAddressPolicy.md │ │ ├── Update-ExchangeHelp.md │ │ ├── Update-FileDistributionService.md │ │ ├── Update-GlobalAddressList.md │ │ ├── Update-HybridConfiguration.md │ │ ├── Update-MailboxDatabaseCopy.md │ │ ├── Update-OfflineAddressBook.md │ │ ├── Update-PublicFolder.md │ │ ├── Update-PublicFolderHierarchy.md │ │ ├── Update-PublicFolderMailbox.md │ │ ├── Update-Recipient.md │ │ ├── Update-RoleGroupMember.md │ │ ├── Update-SafeList.md │ │ ├── Update-SiteMailbox.md │ │ ├── Update-StoreMailboxState.md │ │ ├── Update-VivaModuleFeaturePolicy.md │ │ ├── Update-eDiscoveryCaseAdmin.md │ │ ├── Upgrade-DistributionGroup.md │ │ ├── Validate-OutboundConnector.md │ │ ├── Validate-RetentionRuleQuery.md │ │ └── Write-AdminAuditLog.md └── mapping │ ├── monikerMapping.json │ └── serviceMapping.json ├── images ├── fork_button_on_github.png ├── github_flow.png ├── propose-file-change.png ├── quick-update-01-edit-button-on-learn-page.png ├── quick-update-02-edit-button-on-github-page.png ├── quick-update-03-fork-this-repository-page.png ├── quick-update-04-github-editor-page.png ├── quick-update-05-propose-changes-dialog.png ├── quick-update-06-comparing-changes-page.png ├── quick-update-07-open-a-pull-request-page.png ├── quick-update-icon-github-edit.png ├── quick-update-icon-learn-edit.png ├── upload_files.png └── view_your_forked_repos.png ├── ms-commerce ├── TOC.yml ├── breadcrumb │ └── toc.yml ├── docfx.json └── index.md ├── officewebapps ├── docfx.json ├── docs-conceptual │ ├── index.md │ ├── intro.md │ └── toc.yml ├── mapping │ └── monikerMapping.json └── officewebapps-ps │ └── officewebapps │ ├── Get-OfficeWebAppsExcelBIServer.md │ ├── Get-OfficeWebAppsExcelUserDefinedFunction.md │ ├── Get-OfficeWebAppsFarm.md │ ├── Get-OfficeWebAppsHost.md │ ├── Get-OfficeWebAppsMachine.md │ ├── New-OfficeWebAppsExcelBIServer.md │ ├── New-OfficeWebAppsExcelUserDefinedFunction.md │ ├── New-OfficeWebAppsFarm.md │ ├── New-OfficeWebAppsHost.md │ ├── New-OfficeWebAppsMachine.md │ ├── Remove-OfficeWebAppsExcelBIServer.md │ ├── Remove-OfficeWebAppsExcelUserDefinedFunction.md │ ├── Remove-OfficeWebAppsHost.md │ ├── Remove-OfficeWebAppsMachine.md │ ├── Repair-OfficeWebAppsFarm.md │ ├── Set-OfficeWebAppsExcelUserDefinedFunction.md │ ├── Set-OfficeWebAppsFarm.md │ ├── Set-OfficeWebAppsMachine.md │ └── officewebapps.md ├── repo_docs ├── ADVANCED.md ├── FAQ.md ├── NEW_CMDLETS.md └── UPDATE_CMDLETS.md ├── skype ├── docfx.json ├── docs-conceptual │ ├── index.md │ ├── intro.md │ └── toc.yml ├── mapping │ └── monikerMapping.json └── skype-ps │ └── SkypeForBusiness │ ├── Add-CsSlaDelegates.md │ ├── Approve-CsDeviceUpdateRule.md │ ├── Backup-CsPool.md │ ├── Clear-CsDeviceUpdateFile.md │ ├── Clear-CsDeviceUpdateLog.md │ ├── Clear-CsPersistentChatRoom.md │ ├── Convert-CsUserData.md │ ├── ConvertTo-JsonForPSWS.md │ ├── Copy-CsVoicePolicy.md │ ├── Debug-CsAddressBookReplication.md │ ├── Debug-CsDataConference.md │ ├── Debug-CsInterPoolReplication.md │ ├── Debug-CsIntraPoolReplication.md │ ├── Debug-CsLisConfiguration.md │ ├── Debug-CsStorageServiceFailures.md │ ├── Debug-CsUnifiedContactStore.md │ ├── Disable-CsAdDomain.md │ ├── Disable-CsAdForest.md │ ├── Disable-CsComputer.md │ ├── Disable-CsHostingProvider.md │ ├── Disable-CsMeetingRoom.md │ ├── Disable-CsPublicProvider.md │ ├── Disable-CsUser.md │ ├── Enable-CsAdDomain.md │ ├── Enable-CsAdForest.md │ ├── Enable-CsComputer.md │ ├── Enable-CsHostingProvider.md │ ├── Enable-CsMeetingRoom.md │ ├── Enable-CsPublicProvider.md │ ├── Enable-CsReplica.md │ ├── Enable-CsTopology.md │ ├── Enable-CsUser.md │ ├── Export-CsArchivingData.md │ ├── Export-CsConfiguration.md │ ├── Export-CsLisConfiguration.md │ ├── Export-CsPersistentChatData.md │ ├── Export-CsRgsConfiguration.md │ ├── Export-CsUserData.md │ ├── Get-CsAVEdgeConfiguration.md │ ├── Get-CsAccessEdgeConfiguration.md │ ├── Get-CsAdContact.md │ ├── Get-CsAdDomain.md │ ├── Get-CsAdForest.md │ ├── Get-CsAdPrincipal.md │ ├── Get-CsAdServerSchema.md │ ├── Get-CsAdUser.md │ ├── Get-CsAdditionalInternalDomain.md │ ├── Get-CsAddressBookConfiguration.md │ ├── Get-CsAddressBookNormalizationConfiguration.md │ ├── Get-CsAddressBookNormalizationRule.md │ ├── Get-CsAdminRole.md │ ├── Get-CsAdminRoleAssignment.md │ ├── Get-CsAllowedDomain.md │ ├── Get-CsAnalogDevice.md │ ├── Get-CsAnnouncement.md │ ├── Get-CsApplicationEndpoint.md │ ├── Get-CsArchivingConfiguration.md │ ├── Get-CsArchivingPolicy.md │ ├── Get-CsAudioConferencingProvider.md │ ├── Get-CsAudioTestServiceApplication.md │ ├── Get-CsAuthConfig.md │ ├── Get-CsAutodiscoverConfiguration.md │ ├── Get-CsBackupServiceConfiguration.md │ ├── Get-CsBackupServiceStatus.md │ ├── Get-CsBandwidthPolicyServiceConfiguration.md │ ├── Get-CsBlockedDomain.md │ ├── Get-CsBroadcastMeetingConfiguration.md │ ├── Get-CsBroadcastMeetingPolicy.md │ ├── Get-CsBusyOptions.md │ ├── Get-CsCallParkOrbit.md │ ├── Get-CsCallViaWorkPolicy.md │ ├── Get-CsCdrConfiguration.md │ ├── Get-CsCertificate.md │ ├── Get-CsClientAccessLicense.md │ ├── Get-CsClientCertificate.md │ ├── Get-CsClientPinInfo.md │ ├── Get-CsClientPolicy.md │ ├── Get-CsClientVersionConfiguration.md │ ├── Get-CsClientVersionPolicy.md │ ├── Get-CsClientVersionPolicyRule.md │ ├── Get-CsCloudCallDataConnector.md │ ├── Get-CsCloudCallDataConnectorConfiguration.md │ ├── Get-CsCloudMeetingPolicy.md │ ├── Get-CsClsAgentStatus.md │ ├── Get-CsClsConfiguration.md │ ├── Get-CsClsRegion.md │ ├── Get-CsClsScenario.md │ ├── Get-CsClsSearchTerm.md │ ├── Get-CsClsSecurityGroup.md │ ├── Get-CsCommonAreaPhone.md │ ├── Get-CsComputer.md │ ├── Get-CsConferenceDirectory.md │ ├── Get-CsConferenceDisclaimer.md │ ├── Get-CsConferencingConfiguration.md │ ├── Get-CsConferencingPolicy.md │ ├── Get-CsConfigurationStoreLocation.md │ ├── Get-CsConversationHistoryConfiguration.md │ ├── Get-CsCpsConfiguration.md │ ├── Get-CsDatabaseMirrorState.md │ ├── Get-CsDeviceUpdateConfiguration.md │ ├── Get-CsDeviceUpdateRule.md │ ├── Get-CsDiagnosticConfiguration.md │ ├── Get-CsDiagnosticHeaderConfiguration.md │ ├── Get-CsDialInConferencingAccessNumber.md │ ├── Get-CsDialInConferencingConfiguration.md │ ├── Get-CsDialInConferencingDtmfConfiguration.md │ ├── Get-CsDialInConferencingLanguageList.md │ ├── Get-CsDialPlan.md │ ├── Get-CsEffectivePolicy.md │ ├── Get-CsEnhancedEmergencyServiceDisclaimer.md │ ├── Get-CsExUmContact.md │ ├── Get-CsExternalAccessPolicy.md │ ├── Get-CsExternalUserCommunicationPolicy.md │ ├── Get-CsFIPSConfiguration.md │ ├── Get-CsFileTransferFilterConfiguration.md │ ├── Get-CsGraphPolicy.md │ ├── Get-CsGroupPickupUserOrbit.md │ ├── Get-CsHealthMonitoringConfiguration.md │ ├── Get-CsHostedVoicemailPolicy.md │ ├── Get-CsHostingProvider.md │ ├── Get-CsHybridApplicationEndpoint.md │ ├── Get-CsHybridMediationServer.md │ ├── Get-CsHybridPSTNAppliance.md │ ├── Get-CsHybridPSTNSite.md │ ├── Get-CsIPPhonePolicy.md │ ├── Get-CsImConfiguration.md │ ├── Get-CsImFilterConfiguration.md │ ├── Get-CsImTranslationConfiguration.md │ ├── Get-CsKerberosAccountAssignment.md │ ├── Get-CsLisCivicAddress.md │ ├── Get-CsLisLocation.md │ ├── Get-CsLisPort.md │ ├── Get-CsLisServiceProvider.md │ ├── Get-CsLisSubnet.md │ ├── Get-CsLisSwitch.md │ ├── Get-CsLisWirelessAccessPoint.md │ ├── Get-CsLocationPolicy.md │ ├── Get-CsManagementConnection.md │ ├── Get-CsManagementStoreReplicationStatus.md │ ├── Get-CsMcxConfiguration.md │ ├── Get-CsMediaConfiguration.md │ ├── Get-CsMeetingConfiguration.md │ ├── Get-CsMeetingRoom.md │ ├── Get-CsMobilityPolicy.md │ ├── Get-CsNetworkBandwidthPolicyProfile.md │ ├── Get-CsNetworkConfiguration.md │ ├── Get-CsNetworkInterRegionRoute.md │ ├── Get-CsNetworkInterSitePolicy.md │ ├── Get-CsNetworkInterface.md │ ├── Get-CsNetworkRegion.md │ ├── Get-CsNetworkRegionLink.md │ ├── Get-CsNetworkSite.md │ ├── Get-CsNetworkSubnet.md │ ├── Get-CsOAuthConfiguration.md │ ├── Get-CsOAuthServer.md │ ├── Get-CsOutboundCallingNumberTranslationRule.md │ ├── Get-CsOutboundTranslationRule.md │ ├── Get-CsPartnerApplication.md │ ├── Get-CsPersistentChatAddin.md │ ├── Get-CsPersistentChatCategory.md │ ├── Get-CsPersistentChatComplianceConfiguration.md │ ├── Get-CsPersistentChatConfiguration.md │ ├── Get-CsPersistentChatEligiblePrincipal.md │ ├── Get-CsPersistentChatEndpoint.md │ ├── Get-CsPersistentChatPolicy.md │ ├── Get-CsPersistentChatRoom.md │ ├── Get-CsPersistentChatState.md │ ├── Get-CsPinPolicy.md │ ├── Get-CsPlatformServiceSettings.md │ ├── Get-CsPool.md │ ├── Get-CsPoolBackupRelationship.md │ ├── Get-CsPoolFabricState.md │ ├── Get-CsPoolUpgradeReadinessState.md │ ├── Get-CsPresenceManagementState.md │ ├── Get-CsPresencePolicy.md │ ├── Get-CsPresenceProvider.md │ ├── Get-CsPrivacyConfiguration.md │ ├── Get-CsProxyConfiguration.md │ ├── Get-CsPstnUsage.md │ ├── Get-CsPublicProvider.md │ ├── Get-CsPushNotificationConfiguration.md │ ├── Get-CsQoEConfiguration.md │ ├── Get-CsRegistrarConfiguration.md │ ├── Get-CsReportingConfiguration.md │ ├── Get-CsRgsAgentGroup.md │ ├── Get-CsRgsConfiguration.md │ ├── Get-CsRgsHolidaySet.md │ ├── Get-CsRgsHoursOfBusiness.md │ ├── Get-CsRgsQueue.md │ ├── Get-CsRgsWorkflow.md │ ├── Get-CsRoutingConfiguration.md │ ├── Get-CsServerApplication.md │ ├── Get-CsServerPatchVersion.md │ ├── Get-CsServerVersion.md │ ├── Get-CsService.md │ ├── Get-CsSimpleUrlConfiguration.md │ ├── Get-CsSipDomain.md │ ├── Get-CsSipResponseCodeTranslationRule.md │ ├── Get-CsSite.md │ ├── Get-CsSlaConfiguration.md │ ├── Get-CsStaticRoutingConfiguration.md │ ├── Get-CsStorageServiceConfiguration.md │ ├── Get-CsTeamsUpgradeConfiguration.md │ ├── Get-CsTeamsUpgradePolicy.md │ ├── Get-CsTelemetryConfiguration.md │ ├── Get-CsTenantHybridConfiguration.md │ ├── Get-CsTenantUpdateTimeWindow.md │ ├── Get-CsTestDevice.md │ ├── Get-CsTestUserCredential.md │ ├── Get-CsThirdPartyVideoSystem.md │ ├── Get-CsThirdPartyVideoSystemPolicy.md │ ├── Get-CsTopology.md │ ├── Get-CsTrunk.md │ ├── Get-CsTrunkConfiguration.md │ ├── Get-CsTrustedApplication.md │ ├── Get-CsTrustedApplicationComputer.md │ ├── Get-CsTrustedApplicationEndpoint.md │ ├── Get-CsTrustedApplicationPool.md │ ├── Get-CsUCPhoneConfiguration.md │ ├── Get-CsUICulture.md │ ├── Get-CsUnassignedNumber.md │ ├── Get-CsUpgradeDomainInfo.md │ ├── Get-CsUser.md │ ├── Get-CsUserAcp.md │ ├── Get-CsUserCallForwardingSettings.md │ ├── Get-CsUserDatabaseState.md │ ├── Get-CsUserDelegates.md │ ├── Get-CsUserLocationStatus.md │ ├── Get-CsUserPoolInfo.md │ ├── Get-CsUserPstnSettings.md │ ├── Get-CsUserReplicatorConfiguration.md │ ├── Get-CsUserServicesConfiguration.md │ ├── Get-CsUserServicesPolicy.md │ ├── Get-CsUserSession.md │ ├── Get-CsUserSettingsPageConfiguration.md │ ├── Get-CsUserTeamMembers.md │ ├── Get-CsVideoInteropServerConfiguration.md │ ├── Get-CsVideoInteropServerSyntheticTransactionConfiguration.md │ ├── Get-CsVideoTrunk.md │ ├── Get-CsVideoTrunkConfiguration.md │ ├── Get-CsVoiceConfiguration.md │ ├── Get-CsVoiceNormalizationRule.md │ ├── Get-CsVoicePolicy.md │ ├── Get-CsVoiceRoute.md │ ├── Get-CsVoiceRoutingPolicy.md │ ├── Get-CsVoiceTestConfiguration.md │ ├── Get-CsVoicemailReroutingConfiguration.md │ ├── Get-CsWatcherNodeConfiguration.md │ ├── Get-CsWebServiceConfiguration.md │ ├── Get-CsWindowsService.md │ ├── Get-CsXmppAllowedPartner.md │ ├── Get-CsXmppGatewayConfiguration.md │ ├── Grant-CsArchivingPolicy.md │ ├── Grant-CsCallViaWorkPolicy.md │ ├── Grant-CsClientPolicy.md │ ├── Grant-CsClientVersionPolicy.md │ ├── Grant-CsConferencingPolicy.md │ ├── Grant-CsDialPlan.md │ ├── Grant-CsExternalAccessPolicy.md │ ├── Grant-CsGraphPolicy.md │ ├── Grant-CsHostedVoicemailPolicy.md │ ├── Grant-CsIPPhonePolicy.md │ ├── Grant-CsLocationPolicy.md │ ├── Grant-CsMobilityPolicy.md │ ├── Grant-CsOUPermission.md │ ├── Grant-CsPersistentChatPolicy.md │ ├── Grant-CsPinPolicy.md │ ├── Grant-CsPresencePolicy.md │ ├── Grant-CsSetupPermission.md │ ├── Grant-CsTeamsUpgradePolicy.md │ ├── Grant-CsThirdPartyVideoSystemPolicy.md │ ├── Grant-CsUserServicesPolicy.md │ ├── Grant-CsVoicePolicy.md │ ├── Grant-CsVoiceRoutingPolicy.md │ ├── Import-CSAnnouncementFile.md │ ├── Import-CsCertificate.md │ ├── Import-CsCompanyPhoneNormalizationRules.md │ ├── Import-CsConfiguration.md │ ├── Import-CsDeviceUpdate.md │ ├── Import-CsLegacyConferenceDirectory.md │ ├── Import-CsLegacyConfiguration.md │ ├── Import-CsLisConfiguration.md │ ├── Import-CsPersistentChatData.md │ ├── Import-CsRgsAudioFile.md │ ├── Import-CsRgsConfiguration.md │ ├── Import-CsUserData.md │ ├── Install-CsAdServerSchema.md │ ├── Install-CsDatabase.md │ ├── Install-CsMirrorDatabase.md │ ├── Invoke-CsArchivingDatabasePurge.md │ ├── Invoke-CsBackupServiceSync.md │ ├── Invoke-CsCdrDatabasePurge.md │ ├── Invoke-CsComputerFailBack.md │ ├── Invoke-CsComputerFailOver.md │ ├── Invoke-CsDatabaseFailover.md │ ├── Invoke-CsManagementServerFailover.md │ ├── Invoke-CsManagementStoreReplication.md │ ├── Invoke-CsPoolFailBack.md │ ├── Invoke-CsPoolFailOver.md │ ├── Invoke-CsQoEDatabasePurge.md │ ├── Invoke-CsRgsStoreReplicateData.md │ ├── Invoke-CsStorageServiceFlush.md │ ├── Invoke-CsUcsRollback.md │ ├── Lock-CsClientPin.md │ ├── Merge-CsLegacyTopology.md │ ├── Move-CsAnalogDevice.md │ ├── Move-CsApplicationEndpoint.md │ ├── Move-CsCommonAreaPhone.md │ ├── Move-CsConferenceDirectory.md │ ├── Move-CsExUmContact.md │ ├── Move-CsLegacyUser.md │ ├── Move-CsManagementServer.md │ ├── Move-CsMeetingRoom.md │ ├── Move-CsRgsConfiguration.md │ ├── Move-CsThirdPartyVideoSystem.md │ ├── Move-CsUser.md │ ├── New-CsAVEdgeConfiguration.md │ ├── New-CsAdditionalInternalDomain.md │ ├── New-CsAddressBookConfiguration.md │ ├── New-CsAddressBookNormalizationConfiguration.md │ ├── New-CsAddressBookNormalizationRule.md │ ├── New-CsAdminRole.md │ ├── New-CsAllowedDomain.md │ ├── New-CsAnalogDevice.md │ ├── New-CsAnnouncement.md │ ├── New-CsArchivingConfiguration.md │ ├── New-CsArchivingPolicy.md │ ├── New-CsAutodiscoverConfiguration.md │ ├── New-CsBandwidthPolicyServiceConfiguration.md │ ├── New-CsBlockedDomain.md │ ├── New-CsCallParkOrbit.md │ ├── New-CsCallViaWorkPolicy.md │ ├── New-CsCdrConfiguration.md │ ├── New-CsClientPolicy.md │ ├── New-CsClientPolicyEntry.md │ ├── New-CsClientVersionConfiguration.md │ ├── New-CsClientVersionPolicy.md │ ├── New-CsClientVersionPolicyRule.md │ ├── New-CsCloudCallDataConnectorConfiguration.md │ ├── New-CsClsConfiguration.md │ ├── New-CsClsProvider.md │ ├── New-CsClsRegion.md │ ├── New-CsClsScenario.md │ ├── New-CsClsSecurityGroup.md │ ├── New-CsCommonAreaPhone.md │ ├── New-CsConferenceDirectory.md │ ├── New-CsConferencingConfiguration.md │ ├── New-CsConferencingPolicy.md │ ├── New-CsCpsConfiguration.md │ ├── New-CsDeviceUpdateConfiguration.md │ ├── New-CsDiagnosticConfiguration.md │ ├── New-CsDiagnosticHeaderConfiguration.md │ ├── New-CsDiagnosticsFilter.md │ ├── New-CsDialInConferencingAccessNumber.md │ ├── New-CsDialInConferencingConfiguration.md │ ├── New-CsDialInConferencingDtmfConfiguration.md │ ├── New-CsDialPlan.md │ ├── New-CsEmergencyNumber.md │ ├── New-CsExUmContact.md │ ├── New-CsExtendedTest.md │ ├── New-CsExternalAccessPolicy.md │ ├── New-CsExternalUserCommunicationPolicy.md │ ├── New-CsFIPSConfiguration.md │ ├── New-CsFileTransferFilterConfiguration.md │ ├── New-CsGroupPickupUserOrbit.md │ ├── New-CsHealthMonitoringConfiguration.md │ ├── New-CsHostedVoicemailPolicy.md │ ├── New-CsHostingProvider.md │ ├── New-CsHybridApplicationEndpoint.md │ ├── New-CsHybridPSTNSite.md │ ├── New-CsImConfiguration.md │ ├── New-CsImFilterConfiguration.md │ ├── New-CsImTranslationConfiguration.md │ ├── New-CsIssuedCertId.md │ ├── New-CsKerberosAccount.md │ ├── New-CsKerberosAccountAssignment.md │ ├── New-CsLocationPolicy.md │ ├── New-CsMcxConfiguration.md │ ├── New-CsMediaConfiguration.md │ ├── New-CsMeetingConfiguration.md │ ├── New-CsMobilityPolicy.md │ ├── New-CsNetworkBWAlternatePath.md │ ├── New-CsNetworkBWPolicy.md │ ├── New-CsNetworkBandwidthPolicyProfile.md │ ├── New-CsNetworkInterRegionRoute.md │ ├── New-CsNetworkInterSitePolicy.md │ ├── New-CsNetworkMediaBypassConfiguration.md │ ├── New-CsNetworkRegion.md │ ├── New-CsNetworkRegionLink.md │ ├── New-CsNetworkSite.md │ ├── New-CsNetworkSubnet.md │ ├── New-CsOAuthServer.md │ ├── New-CsOutboundCallingNumberTranslationRule.md │ ├── New-CsOutboundTranslationRule.md │ ├── New-CsPartnerApplication.md │ ├── New-CsPersistentChatAddin.md │ ├── New-CsPersistentChatCategory.md │ ├── New-CsPersistentChatComplianceConfiguration.md │ ├── New-CsPersistentChatConfiguration.md │ ├── New-CsPersistentChatEndpoint.md │ ├── New-CsPersistentChatPolicy.md │ ├── New-CsPersistentChatRoom.md │ ├── New-CsPinPolicy.md │ ├── New-CsPlatformServiceSettings.md │ ├── New-CsPresencePolicy.md │ ├── New-CsPresenceProvider.md │ ├── New-CsPrivacyConfiguration.md │ ├── New-CsProxyConfiguration.md │ ├── New-CsPublicProvider.md │ ├── New-CsPushNotificationConfiguration.md │ ├── New-CsQoEConfiguration.md │ ├── New-CsRegistrarConfiguration.md │ ├── New-CsReportingConfiguration.md │ ├── New-CsRgsAgentGroup.md │ ├── New-CsRgsAnswer.md │ ├── New-CsRgsCallAction.md │ ├── New-CsRgsHoliday.md │ ├── New-CsRgsHolidaySet.md │ ├── New-CsRgsHoursOfBusiness.md │ ├── New-CsRgsPrompt.md │ ├── New-CsRgsQuestion.md │ ├── New-CsRgsQueue.md │ ├── New-CsRgsTimeRange.md │ ├── New-CsRgsWorkflow.md │ ├── New-CsRoutingConfiguration.md │ ├── New-CsServerApplication.md │ ├── New-CsSimpleUrl.md │ ├── New-CsSimpleUrlConfiguration.md │ ├── New-CsSimpleUrlEntry.md │ ├── New-CsSipDomain.md │ ├── New-CsSipProxyCustom.md │ ├── New-CsSipProxyRealm.md │ ├── New-CsSipProxyTCP.md │ ├── New-CsSipProxyTLS.md │ ├── New-CsSipProxyTransport.md │ ├── New-CsSipProxyUseDefault.md │ ├── New-CsSipProxyUseDefaultCert.md │ ├── New-CsSipResponseCodeTranslationRule.md │ ├── New-CsStaticRoute.md │ ├── New-CsStaticRoutingConfiguration.md │ ├── New-CsStorageServiceConfiguration.md │ ├── New-CsTeamsUpgradePolicy.md │ ├── New-CsTelemetryConfiguration.md │ ├── New-CsTenantUpdateTimeWindow.md │ ├── New-CsTestDevice.md │ ├── New-CsThirdPartyVideoSystem.md │ ├── New-CsThirdPartyVideoSystemPolicy.md │ ├── New-CsTrunkConfiguration.md │ ├── New-CsTrustedApplication.md │ ├── New-CsTrustedApplicationComputer.md │ ├── New-CsTrustedApplicationEndpoint.md │ ├── New-CsTrustedApplicationPool.md │ ├── New-CsUCPhoneConfiguration.md │ ├── New-CsUnassignedNumber.md │ ├── New-CsUserReplicatorConfiguration.md │ ├── New-CsUserServicesConfiguration.md │ ├── New-CsUserServicesPolicy.md │ ├── New-CsVideoInteropServerConfiguration.md │ ├── New-CsVideoInteropServerSyntheticTransactionConfiguration.md │ ├── New-CsVideoTrunkConfiguration.md │ ├── New-CsVoiceNormalizationRule.md │ ├── New-CsVoicePolicy.md │ ├── New-CsVoiceRegex.md │ ├── New-CsVoiceRoute.md │ ├── New-CsVoiceRoutingPolicy.md │ ├── New-CsVoiceTestConfiguration.md │ ├── New-CsVoicemailReroutingConfiguration.md │ ├── New-CsWatcherNodeConfiguration.md │ ├── New-CsWebLink.md │ ├── New-CsWebOrigin.md │ ├── New-CsWebServiceConfiguration.md │ ├── New-CsWebTrustedCACertificate.md │ ├── New-CsXmppAllowedPartner.md │ ├── Publish-CsLisConfiguration.md │ ├── Publish-CsTopology.md │ ├── Register-CsHybridPSTNAppliance.md │ ├── Remove-CsAVEdgeConfiguration.md │ ├── Remove-CsAdditionalInternalDomain.md │ ├── Remove-CsAddressBookConfiguration.md │ ├── Remove-CsAddressBookNormalizationConfiguration.md │ ├── Remove-CsAddressBookNormalizationRule.md │ ├── Remove-CsAdminRole.md │ ├── Remove-CsAllowedDomain.md │ ├── Remove-CsAnalogDevice.md │ ├── Remove-CsAnnouncement.md │ ├── Remove-CsArchivingConfiguration.md │ ├── Remove-CsArchivingPolicy.md │ ├── Remove-CsAutodiscoverConfiguration.md │ ├── Remove-CsBackupServiceConfiguration.md │ ├── Remove-CsBandwidthPolicyServiceConfiguration.md │ ├── Remove-CsBlockedDomain.md │ ├── Remove-CsBusyOptions.md │ ├── Remove-CsCallParkOrbit.md │ ├── Remove-CsCallViaWorkPolicy.md │ ├── Remove-CsCdrConfiguration.md │ ├── Remove-CsCertificate.md │ ├── Remove-CsClientPolicy.md │ ├── Remove-CsClientVersionConfiguration.md │ ├── Remove-CsClientVersionPolicy.md │ ├── Remove-CsClientVersionPolicyRule.md │ ├── Remove-CsClsConfiguration.md │ ├── Remove-CsClsRegion.md │ ├── Remove-CsClsScenario.md │ ├── Remove-CsClsSecurityGroup.md │ ├── Remove-CsCommonAreaPhone.md │ ├── Remove-CsConferenceDirectory.md │ ├── Remove-CsConferenceDisclaimer.md │ ├── Remove-CsConferencingConfiguration.md │ ├── Remove-CsConferencingPolicy.md │ ├── Remove-CsConfigurationStoreLocation.md │ ├── Remove-CsConversationHistoryConfiguration.md │ ├── Remove-CsCpsConfiguration.md │ ├── Remove-CsDeviceUpdateConfiguration.md │ ├── Remove-CsDeviceUpdateRule.md │ ├── Remove-CsDiagnosticConfiguration.md │ ├── Remove-CsDiagnosticHeaderConfiguration.md │ ├── Remove-CsDialInConferencingAccessNumber.md │ ├── Remove-CsDialInConferencingConfiguration.md │ ├── Remove-CsDialInConferencingDtmfConfiguration.md │ ├── Remove-CsDialPlan.md │ ├── Remove-CsEnhancedEmergencyServiceDisclaimer.md │ ├── Remove-CsExUmContact.md │ ├── Remove-CsExternalAccessPolicy.md │ ├── Remove-CsExternalUserCommunicationPolicy.md │ ├── Remove-CsFIPSConfiguration.md │ ├── Remove-CsFileTransferFilterConfiguration.md │ ├── Remove-CsGroupPickupUserOrbit.md │ ├── Remove-CsHealthMonitoringConfiguration.md │ ├── Remove-CsHostedVoicemailPolicy.md │ ├── Remove-CsHostingProvider.md │ ├── Remove-CsHybridApplicationEndpoint.md │ ├── Remove-CsHybridPSTNSite.md │ ├── Remove-CsImConfiguration.md │ ├── Remove-CsImFilterConfiguration.md │ ├── Remove-CsImTranslationConfiguration.md │ ├── Remove-CsKerberosAccountAssignment.md │ ├── Remove-CsLisLocation.md │ ├── Remove-CsLisPort.md │ ├── Remove-CsLisServiceProvider.md │ ├── Remove-CsLisSubnet.md │ ├── Remove-CsLisSwitch.md │ ├── Remove-CsLisWirelessAccessPoint.md │ ├── Remove-CsLocationPolicy.md │ ├── Remove-CsManagementConnection.md │ ├── Remove-CsMcxConfiguration.md │ ├── Remove-CsMediaConfiguration.md │ ├── Remove-CsMeetingConfiguration.md │ ├── Remove-CsMobilityPolicy.md │ ├── Remove-CsNetworkBandwidthPolicyProfile.md │ ├── Remove-CsNetworkConfiguration.md │ ├── Remove-CsNetworkInterRegionRoute.md │ ├── Remove-CsNetworkInterSitePolicy.md │ ├── Remove-CsNetworkRegion.md │ ├── Remove-CsNetworkRegionLink.md │ ├── Remove-CsNetworkSite.md │ ├── Remove-CsNetworkSubnet.md │ ├── Remove-CsOAuthServer.md │ ├── Remove-CsOutboundCallingNumberTranslationRule.md │ ├── Remove-CsOutboundTranslationRule.md │ ├── Remove-CsPartnerApplication.md │ ├── Remove-CsPersistentChatAddin.md │ ├── Remove-CsPersistentChatCategory.md │ ├── Remove-CsPersistentChatComplianceConfiguration.md │ ├── Remove-CsPersistentChatConfiguration.md │ ├── Remove-CsPersistentChatEndpoint.md │ ├── Remove-CsPersistentChatMessage.md │ ├── Remove-CsPersistentChatPolicy.md │ ├── Remove-CsPersistentChatRoom.md │ ├── Remove-CsPinPolicy.md │ ├── Remove-CsPlatformServiceSettings.md │ ├── Remove-CsPresencePolicy.md │ ├── Remove-CsPresenceProvider.md │ ├── Remove-CsPrivacyConfiguration.md │ ├── Remove-CsProxyConfiguration.md │ ├── Remove-CsPublicProvider.md │ ├── Remove-CsPushNotificationConfiguration.md │ ├── Remove-CsQoEConfiguration.md │ ├── Remove-CsRegistrarConfiguration.md │ ├── Remove-CsReportingConfiguration.md │ ├── Remove-CsRgsAgentGroup.md │ ├── Remove-CsRgsHolidaySet.md │ ├── Remove-CsRgsHoursOfBusiness.md │ ├── Remove-CsRgsQueue.md │ ├── Remove-CsRgsWorkflow.md │ ├── Remove-CsRoutingConfiguration.md │ ├── Remove-CsServerApplication.md │ ├── Remove-CsSimpleUrlConfiguration.md │ ├── Remove-CsSipDomain.md │ ├── Remove-CsSipResponseCodeTranslationRule.md │ ├── Remove-CsSlaConfiguration.md │ ├── Remove-CsSlaDelegates.md │ ├── Remove-CsStaticRoutingConfiguration.md │ ├── Remove-CsStorageServiceConfiguration.md │ ├── Remove-CsTeamsUpgradePolicy.md │ ├── Remove-CsTelemetryConfiguration.md │ ├── Remove-CsTenantUpdateTimeWindow.md │ ├── Remove-CsTestDevice.md │ ├── Remove-CsTestUserCredential.md │ ├── Remove-CsThirdPartyVideoSystem.md │ ├── Remove-CsThirdPartyVideoSystemPolicy.md │ ├── Remove-CsTrunkConfiguration.md │ ├── Remove-CsTrustedApplication.md │ ├── Remove-CsTrustedApplicationComputer.md │ ├── Remove-CsTrustedApplicationEndpoint.md │ ├── Remove-CsTrustedApplicationPool.md │ ├── Remove-CsUCPhoneConfiguration.md │ ├── Remove-CsUnassignedNumber.md │ ├── Remove-CsUserAcp.md │ ├── Remove-CsUserReplicatorConfiguration.md │ ├── Remove-CsUserServicesConfiguration.md │ ├── Remove-CsUserServicesPolicy.md │ ├── Remove-CsUserStoreBackupData.md │ ├── Remove-CsVideoInteropServerConfiguration.md │ ├── Remove-CsVideoInteropServerSyntheticTransactionConfiguration.md │ ├── Remove-CsVideoTrunkConfiguration.md │ ├── Remove-CsVoiceConfiguration.md │ ├── Remove-CsVoiceNormalizationRule.md │ ├── Remove-CsVoicePolicy.md │ ├── Remove-CsVoiceRoute.md │ ├── Remove-CsVoiceRoutingPolicy.md │ ├── Remove-CsVoiceTestConfiguration.md │ ├── Remove-CsVoicemailReroutingConfiguration.md │ ├── Remove-CsWatcherNodeConfiguration.md │ ├── Remove-CsWebServiceConfiguration.md │ ├── Remove-CsXmppAllowedPartner.md │ ├── Request-CsCertificate.md │ ├── Reset-CsDeviceUpdateRule.md │ ├── Reset-CsNotificationQueues.md │ ├── Reset-CsPoolRegistrarState.md │ ├── Reset-CsRoutingGroup.md │ ├── Restore-CsDeviceUpdateRule.md │ ├── Revoke-CsClientCertificate.md │ ├── Revoke-CsOUPermission.md │ ├── Revoke-CsSetupPermission.md │ ├── Search-CsClsLogging.md │ ├── Set-CsAVEdgeConfiguration.md │ ├── Set-CsAccessEdgeConfiguration.md │ ├── Set-CsAddressBookConfiguration.md │ ├── Set-CsAddressBookNormalizationConfiguration.md │ ├── Set-CsAddressBookNormalizationRule.md │ ├── Set-CsAdminRole.md │ ├── Set-CsAllowedDomain.md │ ├── Set-CsAnalogDevice.md │ ├── Set-CsAnnouncement.md │ ├── Set-CsApplicationServer.md │ ├── Set-CsArchivingConfiguration.md │ ├── Set-CsArchivingPolicy.md │ ├── Set-CsArchivingServer.md │ ├── Set-CsAudioTestServiceApplication.md │ ├── Set-CsAuthConfig.md │ ├── Set-CsAutodiscoverConfiguration.md │ ├── Set-CsBackupServiceConfiguration.md │ ├── Set-CsBandwidthPolicyServiceConfiguration.md │ ├── Set-CsBlockedDomain.md │ ├── Set-CsBroadcastMeetingConfiguration.md │ ├── Set-CsBusyOptions.md │ ├── Set-CsCallParkOrbit.md │ ├── Set-CsCallParkServiceMusicOnHoldFile.md │ ├── Set-CsCallViaWorkPolicy.md │ ├── Set-CsCceApplianceConfigurationReplicationStatus.md │ ├── Set-CsCceApplianceDeploymentStatus.md │ ├── Set-CsCceApplianceStatus.md │ ├── Set-CsCdrConfiguration.md │ ├── Set-CsCertificate.md │ ├── Set-CsClientPin.md │ ├── Set-CsClientPolicy.md │ ├── Set-CsClientVersionConfiguration.md │ ├── Set-CsClientVersionPolicy.md │ ├── Set-CsClientVersionPolicyRule.md │ ├── Set-CsCloudCallDataConnector.md │ ├── Set-CsCloudCallDataConnectorConfiguration.md │ ├── Set-CsClsConfiguration.md │ ├── Set-CsClsRegion.md │ ├── Set-CsClsScenario.md │ ├── Set-CsClsSearchTerm.md │ ├── Set-CsClsSecurityGroup.md │ ├── Set-CsCommonAreaPhone.md │ ├── Set-CsConferenceDisclaimer.md │ ├── Set-CsConferenceServer.md │ ├── Set-CsConferencingConfiguration.md │ ├── Set-CsConferencingPolicy.md │ ├── Set-CsConfigurationStoreLocation.md │ ├── Set-CsConversationHistoryConfiguration.md │ ├── Set-CsCpsConfiguration.md │ ├── Set-CsDeviceUpdateConfiguration.md │ ├── Set-CsDiagnosticConfiguration.md │ ├── Set-CsDiagnosticHeaderConfiguration.md │ ├── Set-CsDialInConferencingAccessNumber.md │ ├── Set-CsDialInConferencingConfiguration.md │ ├── Set-CsDialInConferencingDtmfConfiguration.md │ ├── Set-CsDialPlan.md │ ├── Set-CsDirector.md │ ├── Set-CsEdgeServer.md │ ├── Set-CsEnhancedEmergencyServiceDisclaimer.md │ ├── Set-CsExUmContact.md │ ├── Set-CsExternalAccessPolicy.md │ ├── Set-CsExternalUserCommunicationPolicy.md │ ├── Set-CsFIPSConfiguration.md │ ├── Set-CsFileTransferFilterConfiguration.md │ ├── Set-CsGroupPickupUserOrbit.md │ ├── Set-CsHealthMonitoringConfiguration.md │ ├── Set-CsHostedVoicemailPolicy.md │ ├── Set-CsHostingProvider.md │ ├── Set-CsHybridApplicationEndpoint.md │ ├── Set-CsHybridMediationServer.md │ ├── Set-CsHybridPSTNAppliance.md │ ├── Set-CsHybridPSTNSite.md │ ├── Set-CsIPPhonePolicy.md │ ├── Set-CsImConfiguration.md │ ├── Set-CsImFilterConfiguration.md │ ├── Set-CsImTranslationConfiguration.md │ ├── Set-CsKerberosAccountAssignment.md │ ├── Set-CsKerberosAccountPassword.md │ ├── Set-CsLisLocation.md │ ├── Set-CsLisPort.md │ ├── Set-CsLisServiceProvider.md │ ├── Set-CsLisSubnet.md │ ├── Set-CsLisSwitch.md │ ├── Set-CsLisWirelessAccessPoint.md │ ├── Set-CsLocationPolicy.md │ ├── Set-CsManagementConnection.md │ ├── Set-CsManagementServer.md │ ├── Set-CsMcxConfiguration.md │ ├── Set-CsMediaConfiguration.md │ ├── Set-CsMediationServer.md │ ├── Set-CsMeetingConfiguration.md │ ├── Set-CsMeetingRoom.md │ ├── Set-CsMobilityPolicy.md │ ├── Set-CsMonitoringServer.md │ ├── Set-CsNetworkBandwidthPolicyProfile.md │ ├── Set-CsNetworkConfiguration.md │ ├── Set-CsNetworkInterRegionRoute.md │ ├── Set-CsNetworkInterSitePolicy.md │ ├── Set-CsNetworkRegion.md │ ├── Set-CsNetworkRegionLink.md │ ├── Set-CsNetworkSite.md │ ├── Set-CsNetworkSubnet.md │ ├── Set-CsOAuthConfiguration.md │ ├── Set-CsOAuthServer.md │ ├── Set-CsOutboundCallingNumberTranslationRule.md │ ├── Set-CsOutboundTranslationRule.md │ ├── Set-CsPartnerApplication.md │ ├── Set-CsPersistentChatActiveServer.md │ ├── Set-CsPersistentChatAddin.md │ ├── Set-CsPersistentChatCategory.md │ ├── Set-CsPersistentChatComplianceConfiguration.md │ ├── Set-CsPersistentChatConfiguration.md │ ├── Set-CsPersistentChatPolicy.md │ ├── Set-CsPersistentChatRoom.md │ ├── Set-CsPersistentChatState.md │ ├── Set-CsPinPolicy.md │ ├── Set-CsPlatformServiceSettings.md │ ├── Set-CsPresenceManagementState.md │ ├── Set-CsPresencePolicy.md │ ├── Set-CsPresenceProvider.md │ ├── Set-CsPrivacyConfiguration.md │ ├── Set-CsProxyConfiguration.md │ ├── Set-CsPstnGateway.md │ ├── Set-CsPstnUsage.md │ ├── Set-CsPublicProvider.md │ ├── Set-CsPushNotificationConfiguration.md │ ├── Set-CsQoEConfiguration.md │ ├── Set-CsRegistrar.md │ ├── Set-CsRegistrarConfiguration.md │ ├── Set-CsReportingConfiguration.md │ ├── Set-CsRgsAgentGroup.md │ ├── Set-CsRgsConfiguration.md │ ├── Set-CsRgsHolidaySet.md │ ├── Set-CsRgsHoursOfBusiness.md │ ├── Set-CsRgsQueue.md │ ├── Set-CsRgsWorkflow.md │ ├── Set-CsRoutingConfiguration.md │ ├── Set-CsServerApplication.md │ ├── Set-CsSimpleUrlConfiguration.md │ ├── Set-CsSipDomain.md │ ├── Set-CsSipResponseCodeTranslationRule.md │ ├── Set-CsSite.md │ ├── Set-CsSlaConfiguration.md │ ├── Set-CsStaticRoutingConfiguration.md │ ├── Set-CsStorageServiceConfiguration.md │ ├── Set-CsTeamsUpgradeConfiguration.md │ ├── Set-CsTeamsUpgradePolicy.md │ ├── Set-CsTelemetryConfiguration.md │ ├── Set-CsTenantHybridConfiguration.md │ ├── Set-CsTenantUpdateTimeWindow.md │ ├── Set-CsTestDevice.md │ ├── Set-CsTestUserCredential.md │ ├── Set-CsThirdPartyVideoSystem.md │ ├── Set-CsThirdPartyVideoSystemPolicy.md │ ├── Set-CsTrunkConfiguration.md │ ├── Set-CsTrustedApplication.md │ ├── Set-CsTrustedApplicationEndpoint.md │ ├── Set-CsTrustedApplicationPool.md │ ├── Set-CsUCPhoneConfiguration.md │ ├── Set-CsUICulture.md │ ├── Set-CsUnassignedNumber.md │ ├── Set-CsUser.md │ ├── Set-CsUserAcp.md │ ├── Set-CsUserCallForwardingSettings.md │ ├── Set-CsUserDatabaseState.md │ ├── Set-CsUserDelegates.md │ ├── Set-CsUserPstnSettings.md │ ├── Set-CsUserReplicatorConfiguration.md │ ├── Set-CsUserServer.md │ ├── Set-CsUserServicesConfiguration.md │ ├── Set-CsUserServicesPolicy.md │ ├── Set-CsUserTeamMembers.md │ ├── Set-CsVideoGateway.md │ ├── Set-CsVideoInteropServer.md │ ├── Set-CsVideoInteropServerConfiguration.md │ ├── Set-CsVideoInteropServerSyntheticTransactionConfiguration.md │ ├── Set-CsVideoTrunkConfiguration.md │ ├── Set-CsVoiceConfiguration.md │ ├── Set-CsVoiceNormalizationRule.md │ ├── Set-CsVoicePolicy.md │ ├── Set-CsVoiceRoute.md │ ├── Set-CsVoiceRoutingPolicy.md │ ├── Set-CsVoiceTestConfiguration.md │ ├── Set-CsVoicemailReroutingConfiguration.md │ ├── Set-CsWatcherNodeConfiguration.md │ ├── Set-CsWebServer.md │ ├── Set-CsWebServiceConfiguration.md │ ├── Set-CsXmppAllowedPartner.md │ ├── Set-CsXmppGatewayConfiguration.md │ ├── Show-CsClsLogging.md │ ├── SkypeForBusiness.md │ ├── Start-CsClsLogging.md │ ├── Start-CsPool.md │ ├── Start-CsWindowsService.md │ ├── Stop-CsClsLogging.md │ ├── Stop-CsWindowsService.md │ ├── Sync-CsClsLogging.md │ ├── Sync-CsUserData.md │ ├── Test-CsASConference.md │ ├── Test-CsAVConference.md │ ├── Test-CsAVEdgeConnectivity.md │ ├── Test-CsAddressBookService.md │ ├── Test-CsAddressBookWebQuery.md │ ├── Test-CsAudioConferencingProvider.md │ ├── Test-CsCertificateConfiguration.md │ ├── Test-CsClientAuth.md │ ├── Test-CsClientAuthentication.md │ ├── Test-CsComputer.md │ ├── Test-CsDataConference.md │ ├── Test-CsDatabase.md │ ├── Test-CsDialInConferencing.md │ ├── Test-CsDialPlan.md │ ├── Test-CsExStorageConnectivity.md │ ├── Test-CsExStorageNotification.md │ ├── Test-CsExUMConnectivity.md │ ├── Test-CsExUMVoiceMail.md │ ├── Test-CsFederatedPartner.md │ ├── Test-CsGroupExpansion.md │ ├── Test-CsGroupIM.md │ ├── Test-CsIM.md │ ├── Test-CsInterTrunkRouting.md │ ├── Test-CsKerberosAccountAssignment.md │ ├── Test-CsLisCivicAddress.md │ ├── Test-CsLisConfiguration.md │ ├── Test-CsLocationPolicy.md │ ├── Test-CsManagementServer.md │ ├── Test-CsMcxConference.md │ ├── Test-CsMcxP2PIM.md │ ├── Test-CsMcxPushNotification.md │ ├── Test-CsOUPermission.md │ ├── Test-CsP2PAV.md │ ├── Test-CsP2PVideoInteropServerSipTrunkAV.md │ ├── Test-CsPersistentChatMessage.md │ ├── Test-CsPhoneBootstrap.md │ ├── Test-CsPresence.md │ ├── Test-CsPstnOutboundCall.md │ ├── Test-CsPstnPeerToPeerCall.md │ ├── Test-CsRegistration.md │ ├── Test-CsReplica.md │ ├── Test-CsSetupPermission.md │ ├── Test-CsTopology.md │ ├── Test-CsTrunkConfiguration.md │ ├── Test-CsUcwaConference.md │ ├── Test-CsUnifiedContactStore.md │ ├── Test-CsVoiceNormalizationRule.md │ ├── Test-CsVoicePolicy.md │ ├── Test-CsVoiceRoute.md │ ├── Test-CsVoiceTestConfiguration.md │ ├── Test-CsVoiceUser.md │ ├── Test-CsWatcherNodeConfiguration.md │ ├── Test-CsWebApp.md │ ├── Test-CsWebAppAnonymous.md │ ├── Test-CsWebScheduler.md │ ├── Test-CsXmppIM.md │ ├── Uninstall-CsDatabase.md │ ├── Uninstall-CsMirrorDatabase.md │ ├── Unlock-CsClientPin.md │ ├── Unpublish-CsLisConfiguration.md │ ├── Unregister-CsHybridPSTNAppliance.md │ ├── Update-CsAddressBook.md │ ├── Update-CsAdminRole.md │ ├── Update-CsClsLogging.md │ ├── Update-CsTenantMeetingUrl.md │ ├── Update-CsUserData.md │ └── Update-CsUserDatabase.md ├── spmt ├── docfx.json ├── docs-conceptual │ ├── index.md │ ├── intro.md │ ├── overview.md │ └── toc.yml ├── mapping │ └── monikerMapping.json └── spmt-ps │ └── Microsoft.SharePoint.MigrationTool.PowerShell │ ├── Add-SPMTTask.md │ ├── Get-SPMTMigration.md │ ├── Microsoft.SharePoint.MigrationTool.PowerShell.md │ ├── Register-SPMTMigration.md │ ├── Remove-SPMTTask.md │ ├── Show-SPMTMigration.md │ ├── Start-SPMTMigration.md │ ├── Stop-SPMTMigration.md │ └── Unregister-SPMTMigration.md ├── teams ├── LICENSE.txt ├── docfx.json ├── docs-conceptual │ ├── index.md │ ├── overview.md │ └── toc.yml ├── mapping │ └── monikerMapping.json └── teams-ps │ └── MicrosoftTeams │ ├── Add-TeamChannelUser.md │ ├── Add-TeamUser.md │ ├── Clear-CsOnlineTelephoneNumberOrder.md │ ├── Clear-TeamsEnvironmentConfig.md │ ├── Complete-CsOnlineTelephoneNumberOrder.md │ ├── Connect-MicrosoftTeams.md │ ├── Disable-CsOnlineSipDomain.md │ ├── Disable-CsTeamsShiftsConnectionErrorReport.md │ ├── Disconnect-MicrosoftTeams.md │ ├── Enable-CsOnlineSipDomain.md │ ├── Export-CsAcquiredPhoneNumber.md │ ├── Export-CsAutoAttendantHolidays.md │ ├── Export-CsOnlineAudioFile.md │ ├── Find-CsGroup.md │ ├── Find-CsOnlineApplicationInstance.md │ ├── Get-AllM365TeamsApps.md │ ├── Get-AssociatedTeam.md │ ├── Get-CsAiAgents.md │ ├── Get-CsApplicationAccessPolicy.md │ ├── Get-CsApplicationMeetingConfiguration.md │ ├── Get-CsAutoAttendant.md │ ├── Get-CsAutoAttendantHolidays.md │ ├── Get-CsAutoAttendantStatus.md │ ├── Get-CsAutoAttendantSupportedLanguage.md │ ├── Get-CsAutoAttendantSupportedTimeZone.md │ ├── Get-CsAutoAttendantTenantInformation.md │ ├── Get-CsBatchPolicyAssignmentOperation.md │ ├── Get-CsBatchTeamsDeploymentStatus.md │ ├── Get-CsCallQueue.md │ ├── Get-CsCallingLineIdentity.md │ ├── Get-CsCloudCallDataConnection.md │ ├── Get-CsComplianceRecordingForCallQueueTemplate.md │ ├── Get-CsEffectiveTenantDialPlan.md │ ├── Get-CsExportAcquiredPhoneNumberStatus.md │ ├── Get-CsExternalAccessPolicy.md │ ├── Get-CsGroupPolicyAssignment.md │ ├── Get-CsHybridTelephoneNumber.md │ ├── Get-CsInboundBlockedNumberPattern.md │ ├── Get-CsInboundExemptNumberPattern.md │ ├── Get-CsMainlineAttendantAppointmentBookingFlow.md │ ├── Get-CsMainlineAttendantFlow.md │ ├── Get-CsMainlineAttendantQuestionAnswerFlow.md │ ├── Get-CsMeetingMigrationStatus.md │ ├── Get-CsOnlineApplicationInstance.md │ ├── Get-CsOnlineApplicationInstanceAssociation.md │ ├── Get-CsOnlineApplicationInstanceAssociationStatus.md │ ├── Get-CsOnlineAudioConferencingRoutingPolicy.md │ ├── Get-CsOnlineAudioFile.md │ ├── Get-CsOnlineDialInConferencingBridge.md │ ├── Get-CsOnlineDialInConferencingLanguagesSupported.md │ ├── Get-CsOnlineDialInConferencingServiceNumber.md │ ├── Get-CsOnlineDialInConferencingTenantSettings.md │ ├── Get-CsOnlineDialInConferencingUser.md │ ├── Get-CsOnlineDialOutPolicy.md │ ├── Get-CsOnlineDialinConferencingPolicy.md │ ├── Get-CsOnlineDialinConferencingTenantConfiguration.md │ ├── Get-CsOnlineDirectoryTenant.md │ ├── Get-CsOnlineEnhancedEmergencyServiceDisclaimer.md │ ├── Get-CsOnlineLisCivicAddress.md │ ├── Get-CsOnlineLisLocation.md │ ├── Get-CsOnlineLisPort.md │ ├── Get-CsOnlineLisSubnet.md │ ├── Get-CsOnlineLisSwitch.md │ ├── Get-CsOnlineLisWirelessAccessPoint.md │ ├── Get-CsOnlinePSTNGateway.md │ ├── Get-CsOnlinePstnUsage.md │ ├── Get-CsOnlineSchedule.md │ ├── Get-CsOnlineSipDomain.md │ ├── Get-CsOnlineTelephoneNumber.md │ ├── Get-CsOnlineTelephoneNumberCountry.md │ ├── Get-CsOnlineTelephoneNumberOrder.md │ ├── Get-CsOnlineTelephoneNumberType.md │ ├── Get-CsOnlineUser.md │ ├── Get-CsOnlineVoiceRoute.md │ ├── Get-CsOnlineVoiceRoutingPolicy.md │ ├── Get-CsOnlineVoiceUser.md │ ├── Get-CsOnlineVoicemailPolicy.md │ ├── Get-CsOnlineVoicemailUserSettings.md │ ├── Get-CsPersonalAttendantSettings.md │ ├── Get-CsPhoneNumberAssignment.md │ ├── Get-CsPhoneNumberPolicyAssignment.md │ ├── Get-CsPhoneNumberTag.md │ ├── Get-CsPhoneNumberTenantConfiguration.md │ ├── Get-CsPolicyPackage.md │ ├── Get-CsSdgBulkSignInRequestStatus.md │ ├── Get-CsSdgBulkSignInRequestsSummary.md │ ├── Get-CsSharedCallQueueHistoryTemplate.md │ ├── Get-CsTagsTemplate.md │ ├── Get-CsTeamTemplate.md │ ├── Get-CsTeamTemplateList.md │ ├── Get-CsTeamsAIPolicy.md │ ├── Get-CsTeamsAcsFederationConfiguration.md │ ├── Get-CsTeamsAppPermissionPolicy.md │ ├── Get-CsTeamsAppSetupPolicy.md │ ├── Get-CsTeamsAudioConferencingPolicy.md │ ├── Get-CsTeamsCallHoldPolicy.md │ ├── Get-CsTeamsCallParkPolicy.md │ ├── Get-CsTeamsCallingPolicy.md │ ├── Get-CsTeamsChannelsPolicy.md │ ├── Get-CsTeamsClientConfiguration.md │ ├── Get-CsTeamsComplianceRecordingApplication.md │ ├── Get-CsTeamsComplianceRecordingPolicy.md │ ├── Get-CsTeamsCortanaPolicy.md │ ├── Get-CsTeamsCustomBannerText.md │ ├── Get-CsTeamsEducationAssignmentsAppPolicy.md │ ├── Get-CsTeamsEducationConfiguration.md │ ├── Get-CsTeamsEmergencyCallRoutingPolicy.md │ ├── Get-CsTeamsEmergencyCallingPolicy.md │ ├── Get-CsTeamsEnhancedEncryptionPolicy.md │ ├── Get-CsTeamsEventsPolicy.md │ ├── Get-CsTeamsExternalAccessConfiguration.md │ ├── Get-CsTeamsFeedbackPolicy.md │ ├── Get-CsTeamsFilesPolicy.md │ ├── Get-CsTeamsFirstPartyMeetingTemplateConfiguration.md │ ├── Get-CsTeamsGuestCallingConfiguration.md │ ├── Get-CsTeamsGuestMeetingConfiguration.md │ ├── Get-CsTeamsGuestMessagingConfiguration.md │ ├── Get-CsTeamsIPPhonePolicy.md │ ├── Get-CsTeamsMediaConnectivityPolicy.md │ ├── Get-CsTeamsMediaLoggingPolicy.md │ ├── Get-CsTeamsMeetingBrandingPolicy.md │ ├── Get-CsTeamsMeetingBroadcastConfiguration.md │ ├── Get-CsTeamsMeetingBroadcastPolicy.md │ ├── Get-CsTeamsMeetingConfiguration.md │ ├── Get-CsTeamsMeetingPolicy.md │ ├── Get-CsTeamsMeetingTemplateConfiguration.md │ ├── Get-CsTeamsMeetingTemplatePermissionPolicy.md │ ├── Get-CsTeamsMessagingConfiguration.md │ ├── Get-CsTeamsMessagingPolicy.md │ ├── Get-CsTeamsMobilityPolicy.md │ ├── Get-CsTeamsMultiTenantOrganizationConfiguration.md │ ├── Get-CsTeamsNetworkRoamingPolicy.md │ ├── Get-CsTeamsNotificationAndFeedsPolicy.md │ ├── Get-CsTeamsPersonalAttendantPolicy.md │ ├── Get-CsTeamsRecordingAndTranscriptionCustomMessage.md │ ├── Get-CsTeamsRemoteLogCollectionConfiguration.md │ ├── Get-CsTeamsRemoteLogCollectionDevice.md │ ├── Get-CsTeamsRoomVideoTeleConferencingPolicy.md │ ├── Get-CsTeamsSettingsCustomApp.md │ ├── Get-CsTeamsSharedCallingRoutingPolicy.md │ ├── Get-CsTeamsShiftsAppPolicy.md │ ├── Get-CsTeamsShiftsConnection.md │ ├── Get-CsTeamsShiftsConnectionConnector.md │ ├── Get-CsTeamsShiftsConnectionErrorReport.md │ ├── Get-CsTeamsShiftsConnectionInstance.md │ ├── Get-CsTeamsShiftsConnectionOperation.md │ ├── Get-CsTeamsShiftsConnectionSyncResult.md │ ├── Get-CsTeamsShiftsConnectionTeamMap.md │ ├── Get-CsTeamsShiftsConnectionWfmTeam.md │ ├── Get-CsTeamsShiftsConnectionWfmUser.md │ ├── Get-CsTeamsShiftsPolicy.md │ ├── Get-CsTeamsSipDevicesConfiguration.md │ ├── Get-CsTeamsSurvivableBranchAppliance.md │ ├── Get-CsTeamsSurvivableBranchAppliancePolicy.md │ ├── Get-CsTeamsTargetingPolicy.md │ ├── Get-CsTeamsTemplatePermissionPolicy.md │ ├── Get-CsTeamsTranslationRule.md │ ├── Get-CsTeamsUnassignedNumberTreatment.md │ ├── Get-CsTeamsUpdateManagementPolicy.md │ ├── Get-CsTeamsUpgradeConfiguration.md │ ├── Get-CsTeamsUpgradePolicy.md │ ├── Get-CsTeamsVdiPolicy.md │ ├── Get-CsTeamsVideoInteropServicePolicy.md │ ├── Get-CsTeamsVirtualAppointmentsPolicy.md │ ├── Get-CsTeamsVoiceApplicationsPolicy.md │ ├── Get-CsTeamsWorkLoadPolicy.md │ ├── Get-CsTeamsWorkLocationDetectionPolicy.md │ ├── Get-CsTenant.md │ ├── Get-CsTenantBlockedCallingNumbers.md │ ├── Get-CsTenantDialPlan.md │ ├── Get-CsTenantFederationConfiguration.md │ ├── Get-CsTenantLicensingConfiguration.md │ ├── Get-CsTenantMigrationConfiguration.md │ ├── Get-CsTenantNetworkConfiguration.md │ ├── Get-CsTenantNetworkRegion.md │ ├── Get-CsTenantNetworkSite.md │ ├── Get-CsTenantNetworkSubnet.md │ ├── Get-CsTenantTrustedIPAddress.md │ ├── Get-CsUserCallingSettings.md │ ├── Get-CsUserPolicyAssignment.md │ ├── Get-CsUserPolicyPackage.md │ ├── Get-CsUserPolicyPackageRecommendation.md │ ├── Get-CsVideoInteropServiceProvider.md │ ├── Get-DirectToGroupAssignmentsMigrationStatus.md │ ├── Get-GroupAssignmentRecommendationsPerPolicyName.md │ ├── Get-GroupAssignmentRecommendationsPerPolicyType.md │ ├── Get-GroupPolicyAssignmentConflict.md │ ├── Get-M365TeamsApp.md │ ├── Get-M365UnifiedCustomPendingApps.md │ ├── Get-M365UnifiedTenantSettings.md │ ├── Get-SharedWithTeam.md │ ├── Get-SharedWithTeamUser.md │ ├── Get-Team.md │ ├── Get-TeamAllChannel.md │ ├── Get-TeamChannel.md │ ├── Get-TeamChannelUser.md │ ├── Get-TeamIncomingChannel.md │ ├── Get-TeamTargetingHierarchyStatus.md │ ├── Get-TeamUser.md │ ├── Get-TeamsApp.md │ ├── Get-TeamsArtifacts.md │ ├── Get-TenantPrivateChannelMigrationStatus.md │ ├── Grant-CsApplicationAccessPolicy.md │ ├── Grant-CsCallingLineIdentity.md │ ├── Grant-CsDialoutPolicy.md │ ├── Grant-CsExternalAccessPolicy.md │ ├── Grant-CsGroupPolicyPackageAssignment.md │ ├── Grant-CsOnlineAudioConferencingRoutingPolicy.md │ ├── Grant-CsOnlineVoiceRoutingPolicy.md │ ├── Grant-CsOnlineVoicemailPolicy.md │ ├── Grant-CsTeamsAIPolicy.md │ ├── Grant-CsTeamsAppPermissionPolicy.md │ ├── Grant-CsTeamsAppSetupPolicy.md │ ├── Grant-CsTeamsAudioConferencingPolicy.md │ ├── Grant-CsTeamsCallHoldPolicy.md │ ├── Grant-CsTeamsCallParkPolicy.md │ ├── Grant-CsTeamsCallingPolicy.md │ ├── Grant-CsTeamsChannelsPolicy.md │ ├── Grant-CsTeamsComplianceRecordingPolicy.md │ ├── Grant-CsTeamsCortanaPolicy.md │ ├── Grant-CsTeamsEmergencyCallRoutingPolicy.md │ ├── Grant-CsTeamsEmergencyCallingPolicy.md │ ├── Grant-CsTeamsEnhancedEncryptionPolicy.md │ ├── Grant-CsTeamsEventsPolicy.md │ ├── Grant-CsTeamsFeedbackPolicy.md │ ├── Grant-CsTeamsFilesPolicy.md │ ├── Grant-CsTeamsIPPhonePolicy.md │ ├── Grant-CsTeamsMediaConnectivityPolicy.md │ ├── Grant-CsTeamsMediaLoggingPolicy.md │ ├── Grant-CsTeamsMeetingBrandingPolicy.md │ ├── Grant-CsTeamsMeetingBroadcastPolicy.md │ ├── Grant-CsTeamsMeetingPolicy.md │ ├── Grant-CsTeamsMeetingTemplatePermissionPolicy.md │ ├── Grant-CsTeamsMessagingPolicy.md │ ├── Grant-CsTeamsMobilityPolicy.md │ ├── Grant-CsTeamsPersonalAttendantPolicy.md │ ├── Grant-CsTeamsRoomVideoTeleConferencingPolicy.md │ ├── Grant-CsTeamsSharedCallingRoutingPolicy.md │ ├── Grant-CsTeamsShiftsPolicy.md │ ├── Grant-CsTeamsSurvivableBranchAppliancePolicy.md │ ├── Grant-CsTeamsUpdateManagementPolicy.md │ ├── Grant-CsTeamsUpgradePolicy.md │ ├── Grant-CsTeamsVdiPolicy.md │ ├── Grant-CsTeamsVideoInteropServicePolicy.md │ ├── Grant-CsTeamsVirtualAppointmentsPolicy.md │ ├── Grant-CsTeamsVoiceApplicationsPolicy.md │ ├── Grant-CsTeamsWorkLoadPolicy.md │ ├── Grant-CsTeamsWorkLocationDetectionPolicy.md │ ├── Grant-CsTenantDialPlan.md │ ├── Grant-CsUserPolicyPackage.md │ ├── Import-CsAutoAttendantHolidays.md │ ├── Import-CsOnlineAudioFile.md │ ├── Invoke-ClearDirectToGroupAssignmentMigration.md │ ├── Invoke-StartDirectToGroupAssignmentMigration.md │ ├── MicrosoftTeams.md │ ├── New-CsApplicationAccessPolicy.md │ ├── New-CsAutoAttendant.md │ ├── New-CsAutoAttendantCallFlow.md │ ├── New-CsAutoAttendantCallHandlingAssociation.md │ ├── New-CsAutoAttendantCallableEntity.md │ ├── New-CsAutoAttendantDialScope.md │ ├── New-CsAutoAttendantMenu.md │ ├── New-CsAutoAttendantMenuOption.md │ ├── New-CsAutoAttendantPrompt.md │ ├── New-CsBatchPolicyAssignmentOperation.md │ ├── New-CsBatchPolicyPackageAssignmentOperation.md │ ├── New-CsBatchTeamsDeployment.md │ ├── New-CsCallQueue.md │ ├── New-CsCallingLineIdentity.md │ ├── New-CsCloudCallDataConnection.md │ ├── New-CsComplianceRecordingForCallQueueTemplate.md │ ├── New-CsCustomPolicyPackage.md │ ├── New-CsEdgeAllowAllKnownDomains.md │ ├── New-CsEdgeAllowList.md │ ├── New-CsEdgeDomainPattern.md │ ├── New-CsExternalAccessPolicy.md │ ├── New-CsGroupPolicyAssignment.md │ ├── New-CsHybridTelephoneNumber.md │ ├── New-CsInboundBlockedNumberPattern.md │ ├── New-CsInboundExemptNumberPattern.md │ ├── New-CsMainlineAttendantAppointmentBookingFlow.md │ ├── New-CsMainlineAttendantQuestionAnswerFlow.md │ ├── New-CsOnlineApplicationInstance.md │ ├── New-CsOnlineApplicationInstanceAssociation.md │ ├── New-CsOnlineAudioConferencingRoutingPolicy.md │ ├── New-CsOnlineDateTimeRange.md │ ├── New-CsOnlineDirectRoutingTelephoneNumberUploadOrder.md │ ├── New-CsOnlineLisCivicAddress.md │ ├── New-CsOnlineLisLocation.md │ ├── New-CsOnlinePSTNGateway.md │ ├── New-CsOnlineSchedule.md │ ├── New-CsOnlineTelephoneNumberOrder.md │ ├── New-CsOnlineTelephoneNumberReleaseOrder.md │ ├── New-CsOnlineTimeRange.md │ ├── New-CsOnlineVoiceRoute.md │ ├── New-CsOnlineVoiceRoutingPolicy.md │ ├── New-CsOnlineVoicemailPolicy.md │ ├── New-CsPhoneNumberBulkUpdateTagsOrder.md │ ├── New-CsSdgBulkSignInRequest.md │ ├── New-CsSharedCallQueueHistoryTemplate.md │ ├── New-CsTag.md │ ├── New-CsTagsTemplate.md │ ├── New-CsTeamTemplate.md │ ├── New-CsTeamsAIPolicy.md │ ├── New-CsTeamsAppPermissionPolicy.md │ ├── New-CsTeamsAppSetupPolicy.md │ ├── New-CsTeamsAudioConferencingPolicy.md │ ├── New-CsTeamsCallHoldPolicy.md │ ├── New-CsTeamsCallParkPolicy.md │ ├── New-CsTeamsCallingPolicy.md │ ├── New-CsTeamsChannelsPolicy.md │ ├── New-CsTeamsComplianceRecordingApplication.md │ ├── New-CsTeamsComplianceRecordingPairedApplication.md │ ├── New-CsTeamsComplianceRecordingPolicy.md │ ├── New-CsTeamsCortanaPolicy.md │ ├── New-CsTeamsCustomBannerText.md │ ├── New-CsTeamsEmergencyCallRoutingPolicy.md │ ├── New-CsTeamsEmergencyCallingExtendedNotification.md │ ├── New-CsTeamsEmergencyCallingPolicy.md │ ├── New-CsTeamsEmergencyNumber.md │ ├── New-CsTeamsEnhancedEncryptionPolicy.md │ ├── New-CsTeamsEventsPolicy.md │ ├── New-CsTeamsFeedbackPolicy.md │ ├── New-CsTeamsFilesPolicy.md │ ├── New-CsTeamsHiddenMeetingTemplate.md │ ├── New-CsTeamsHiddenTemplate.md │ ├── New-CsTeamsIPPhonePolicy.md │ ├── New-CsTeamsMediaConnectivityPolicy.md │ ├── New-CsTeamsMeetingBrandingPolicy.md │ ├── New-CsTeamsMeetingBroadcastPolicy.md │ ├── New-CsTeamsMeetingPolicy.md │ ├── New-CsTeamsMeetingTemplatePermissionPolicy.md │ ├── New-CsTeamsMessagingPolicy.md │ ├── New-CsTeamsMobilityPolicy.md │ ├── New-CsTeamsNetworkRoamingPolicy.md │ ├── New-CsTeamsPersonalAttendantPolicy.md │ ├── New-CsTeamsRecordingAndTranscriptionCustomMessage.md │ ├── New-CsTeamsRecordingAndTranscriptionLocalizationCustomMessage.md │ ├── New-CsTeamsRemoteLogCollectionDevice.md │ ├── New-CsTeamsRoomVideoTeleConferencingPolicy.md │ ├── New-CsTeamsSharedCallingRoutingPolicy.md │ ├── New-CsTeamsShiftsConnection.md │ ├── New-CsTeamsShiftsConnectionBatchTeamMap.md │ ├── New-CsTeamsShiftsConnectionInstance.md │ ├── New-CsTeamsShiftsPolicy.md │ ├── New-CsTeamsSurvivableBranchAppliance.md │ ├── New-CsTeamsSurvivableBranchAppliancePolicy.md │ ├── New-CsTeamsTemplatePermissionPolicy.md │ ├── New-CsTeamsTranslationRule.md │ ├── New-CsTeamsUnassignedNumberTreatment.md │ ├── New-CsTeamsUpdateManagementPolicy.md │ ├── New-CsTeamsVdiPolicy.md │ ├── New-CsTeamsVirtualAppointmentsPolicy.md │ ├── New-CsTeamsVoiceApplicationsPolicy.md │ ├── New-CsTeamsWorkLoadPolicy.md │ ├── New-CsTeamsWorkLocationDetectionPolicy.md │ ├── New-CsTenantDialPlan.md │ ├── New-CsTenantNetworkRegion.md │ ├── New-CsTenantNetworkSite.md │ ├── New-CsTenantNetworkSubnet.md │ ├── New-CsTenantTrustedIPAddress.md │ ├── New-CsUserCallingDelegate.md │ ├── New-CsVideoInteropServiceProvider.md │ ├── New-CsVoiceNormalizationRule.md │ ├── New-Team.md │ ├── New-TeamChannel.md │ ├── New-TeamsApp.md │ ├── Register-CsOnlineDialInConferencingServiceNumber.md │ ├── Remove-CsApplicationAccessPolicy.md │ ├── Remove-CsAutoAttendant.md │ ├── Remove-CsCallQueue.md │ ├── Remove-CsCallingLineIdentity.md │ ├── Remove-CsComplianceRecordingForCallQueueTemplate.md │ ├── Remove-CsCustomPolicyPackage.md │ ├── Remove-CsExternalAccessPolicy.md │ ├── Remove-CsGroupPolicyAssignment.md │ ├── Remove-CsHybridTelephoneNumber.md │ ├── Remove-CsInboundBlockedNumberPattern.md │ ├── Remove-CsInboundExemptNumberPattern.md │ ├── Remove-CsMainlineAttendantAppointmentBookingFlow.md │ ├── Remove-CsMainlineAttendantQuestionAnswerFlow.md │ ├── Remove-CsOnlineApplicationInstanceAssociation.md │ ├── Remove-CsOnlineAudioConferencingRoutingPolicy.md │ ├── Remove-CsOnlineAudioFile.md │ ├── Remove-CsOnlineDialInConferencingTenantSettings.md │ ├── Remove-CsOnlineLisCivicAddress.md │ ├── Remove-CsOnlineLisLocation.md │ ├── Remove-CsOnlineLisPort.md │ ├── Remove-CsOnlineLisSubnet.md │ ├── Remove-CsOnlineLisSwitch.md │ ├── Remove-CsOnlineLisWirelessAccessPoint.md │ ├── Remove-CsOnlinePSTNGateway.md │ ├── Remove-CsOnlineSchedule.md │ ├── Remove-CsOnlineTelephoneNumber.md │ ├── Remove-CsOnlineVoiceRoute.md │ ├── Remove-CsOnlineVoiceRoutingPolicy.md │ ├── Remove-CsOnlineVoicemailPolicy.md │ ├── Remove-CsPhoneNumberAssignment.md │ ├── Remove-CsPhoneNumberAssignmentBlock.md │ ├── Remove-CsPhoneNumberTag.md │ ├── Remove-CsPhoneNumberTenantConfiguration.md │ ├── Remove-CsSharedCallQueueHistoryTemplate.md │ ├── Remove-CsTagsTemplate.md │ ├── Remove-CsTeamTemplate.md │ ├── Remove-CsTeamsAIPolicy.md │ ├── Remove-CsTeamsAppPermissionPolicy.md │ ├── Remove-CsTeamsAppSetupPolicy.md │ ├── Remove-CsTeamsAudioConferencingPolicy.md │ ├── Remove-CsTeamsCallHoldPolicy.md │ ├── Remove-CsTeamsCallParkPolicy.md │ ├── Remove-CsTeamsCallingPolicy.md │ ├── Remove-CsTeamsChannelsPolicy.md │ ├── Remove-CsTeamsComplianceRecordingApplication.md │ ├── Remove-CsTeamsComplianceRecordingPolicy.md │ ├── Remove-CsTeamsCortanaPolicy.md │ ├── Remove-CsTeamsCustomBannerText.md │ ├── Remove-CsTeamsEmergencyCallRoutingPolicy.md │ ├── Remove-CsTeamsEmergencyCallingPolicy.md │ ├── Remove-CsTeamsEnhancedEncryptionPolicy.md │ ├── Remove-CsTeamsEventsPolicy.md │ ├── Remove-CsTeamsFeedbackPolicy.md │ ├── Remove-CsTeamsFilesPolicy.md │ ├── Remove-CsTeamsIPPhonePolicy.md │ ├── Remove-CsTeamsMediaConnectivityPolicy.md │ ├── Remove-CsTeamsMeetingBrandingPolicy.md │ ├── Remove-CsTeamsMeetingBroadcastPolicy.md │ ├── Remove-CsTeamsMeetingPolicy.md │ ├── Remove-CsTeamsMeetingTemplatePermissionPolicy.md │ ├── Remove-CsTeamsMessagingPolicy.md │ ├── Remove-CsTeamsMobilityPolicy.md │ ├── Remove-CsTeamsNetworkRoamingPolicy.md │ ├── Remove-CsTeamsNotificationAndFeedsPolicy.md │ ├── Remove-CsTeamsPersonalAttendantPolicy.md │ ├── Remove-CsTeamsRecordingAndTranscriptionCustomMessage.md │ ├── Remove-CsTeamsRemoteLogCollectionDevice.md │ ├── Remove-CsTeamsRoomVideoTeleConferencingPolicy.md │ ├── Remove-CsTeamsSharedCallingRoutingPolicy.md │ ├── Remove-CsTeamsShiftsConnection.md │ ├── Remove-CsTeamsShiftsConnectionInstance.md │ ├── Remove-CsTeamsShiftsConnectionTeamMap.md │ ├── Remove-CsTeamsShiftsPolicy.md │ ├── Remove-CsTeamsShiftsScheduleRecord.md │ ├── Remove-CsTeamsSurvivableBranchAppliance.md │ ├── Remove-CsTeamsSurvivableBranchAppliancePolicy.md │ ├── Remove-CsTeamsTargetingPolicy.md │ ├── Remove-CsTeamsTemplatePermissionPolicy.md │ ├── Remove-CsTeamsTranslationRule.md │ ├── Remove-CsTeamsUnassignedNumberTreatment.md │ ├── Remove-CsTeamsUpdateManagementPolicy.md │ ├── Remove-CsTeamsVdiPolicy.md │ ├── Remove-CsTeamsVirtualAppointmentsPolicy.md │ ├── Remove-CsTeamsVoiceApplicationsPolicy.md │ ├── Remove-CsTeamsWorkLoadPolicy.md │ ├── Remove-CsTeamsWorkLocationDetectionPolicy.md │ ├── Remove-CsTenantDialPlan.md │ ├── Remove-CsTenantNetworkRegion.md │ ├── Remove-CsTenantNetworkSite.md │ ├── Remove-CsTenantNetworkSubnet.md │ ├── Remove-CsTenantTrustedIPAddress.md │ ├── Remove-CsUserCallingDelegate.md │ ├── Remove-CsUserLicenseGracePeriod.md │ ├── Remove-CsVideoInteropServiceProvider.md │ ├── Remove-SharedWithTeam.md │ ├── Remove-Team.md │ ├── Remove-TeamChannel.md │ ├── Remove-TeamChannelUser.md │ ├── Remove-TeamTargetingHierarchy.md │ ├── Remove-TeamUser.md │ ├── Remove-TeamsApp.md │ ├── Set-CsApplicationAccessPolicy.md │ ├── Set-CsApplicationMeetingConfiguration.md │ ├── Set-CsAutoAttendant.md │ ├── Set-CsCallQueue.md │ ├── Set-CsCallingLineIdentity.md │ ├── Set-CsComplianceRecordingForCallQueueTemplate.md │ ├── Set-CsExternalAccessPolicy.md │ ├── Set-CsInboundBlockedNumberPattern.md │ ├── Set-CsInboundExemptNumberPattern.md │ ├── Set-CsMainlineAttendantAppointmentBookingFlow.md │ ├── Set-CsMainlineAttendantQuestionAnswerFlow.md │ ├── Set-CsOnlineApplicationInstance.md │ ├── Set-CsOnlineAudioConferencingRoutingPolicy.md │ ├── Set-CsOnlineDialInConferencingBridge.md │ ├── Set-CsOnlineDialInConferencingServiceNumber.md │ ├── Set-CsOnlineDialInConferencingTenantSettings.md │ ├── Set-CsOnlineDialInConferencingUser.md │ ├── Set-CsOnlineEnhancedEmergencyServiceDisclaimer.md │ ├── Set-CsOnlineLisCivicAddress.md │ ├── Set-CsOnlineLisLocation.md │ ├── Set-CsOnlineLisPort.md │ ├── Set-CsOnlineLisSubnet.md │ ├── Set-CsOnlineLisSwitch.md │ ├── Set-CsOnlineLisWirelessAccessPoint.md │ ├── Set-CsOnlinePSTNGateway.md │ ├── Set-CsOnlinePstnUsage.md │ ├── Set-CsOnlineSchedule.md │ ├── Set-CsOnlineVoiceApplicationInstance.md │ ├── Set-CsOnlineVoiceRoute.md │ ├── Set-CsOnlineVoiceRoutingPolicy.md │ ├── Set-CsOnlineVoiceUser.md │ ├── Set-CsOnlineVoicemailPolicy.md │ ├── Set-CsOnlineVoicemailUserSettings.md │ ├── Set-CsPersonalAttendantSettings.md │ ├── Set-CsPhoneNumberAssignment.md │ ├── Set-CsPhoneNumberAssignmentBlock.md │ ├── Set-CsPhoneNumberPolicyAssignment.md │ ├── Set-CsPhoneNumberTag.md │ ├── Set-CsPhoneNumberTenantConfiguration.md │ ├── Set-CsSharedCallQueueHistoryTemplate.md │ ├── Set-CsTagsTemplate.md │ ├── Set-CsTeamsAIPolicy.md │ ├── Set-CsTeamsAcsFederationConfiguration.md │ ├── Set-CsTeamsAppPermissionPolicy.md │ ├── Set-CsTeamsAppSetupPolicy.md │ ├── Set-CsTeamsAudioConferencingPolicy.md │ ├── Set-CsTeamsCallHoldPolicy.md │ ├── Set-CsTeamsCallParkPolicy.md │ ├── Set-CsTeamsCallingPolicy.md │ ├── Set-CsTeamsChannelsPolicy.md │ ├── Set-CsTeamsClientConfiguration.md │ ├── Set-CsTeamsComplianceRecordingApplication.md │ ├── Set-CsTeamsComplianceRecordingPolicy.md │ ├── Set-CsTeamsCortanaPolicy.md │ ├── Set-CsTeamsCustomBannerText.md │ ├── Set-CsTeamsEducationAssignmentsAppPolicy.md │ ├── Set-CsTeamsEducationConfiguration.md │ ├── Set-CsTeamsEmergencyCallRoutingPolicy.md │ ├── Set-CsTeamsEmergencyCallingPolicy.md │ ├── Set-CsTeamsEnhancedEncryptionPolicy.md │ ├── Set-CsTeamsEventsPolicy.md │ ├── Set-CsTeamsExternalAccessConfiguration.md │ ├── Set-CsTeamsFeedbackPolicy.md │ ├── Set-CsTeamsFilesPolicy.md │ ├── Set-CsTeamsGuestCallingConfiguration.md │ ├── Set-CsTeamsGuestMeetingConfiguration.md │ ├── Set-CsTeamsGuestMessagingConfiguration.md │ ├── Set-CsTeamsIPPhonePolicy.md │ ├── Set-CsTeamsMediaConnectivityPolicy.md │ ├── Set-CsTeamsMeetingBrandingPolicy.md │ ├── Set-CsTeamsMeetingBroadcastConfiguration.md │ ├── Set-CsTeamsMeetingBroadcastPolicy.md │ ├── Set-CsTeamsMeetingConfiguration.md │ ├── Set-CsTeamsMeetingPolicy.md │ ├── Set-CsTeamsMeetingTemplatePermissionPolicy.md │ ├── Set-CsTeamsMessagingConfiguration.md │ ├── Set-CsTeamsMessagingPolicy.md │ ├── Set-CsTeamsMobilityPolicy.md │ ├── Set-CsTeamsMultiTenantOrganizationConfiguration.md │ ├── Set-CsTeamsNetworkRoamingPolicy.md │ ├── Set-CsTeamsNotificationAndFeedsPolicy.md │ ├── Set-CsTeamsPersonalAttendantPolicy.md │ ├── Set-CsTeamsRecordingAndTranscriptionCustomMessage.md │ ├── Set-CsTeamsRemoteLogCollectionDevice.md │ ├── Set-CsTeamsRoomVideoTeleConferencingPolicy.md │ ├── Set-CsTeamsSettingsCustomApp.md │ ├── Set-CsTeamsSharedCallingRoutingPolicy.md │ ├── Set-CsTeamsShiftsAppPolicy.md │ ├── Set-CsTeamsShiftsConnection.md │ ├── Set-CsTeamsShiftsConnectionInstance.md │ ├── Set-CsTeamsShiftsPolicy.md │ ├── Set-CsTeamsSipDevicesConfiguration.md │ ├── Set-CsTeamsSurvivableBranchAppliance.md │ ├── Set-CsTeamsSurvivableBranchAppliancePolicy.md │ ├── Set-CsTeamsTargetingPolicy.md │ ├── Set-CsTeamsTemplatePermissionPolicy.md │ ├── Set-CsTeamsTranslationRule.md │ ├── Set-CsTeamsUnassignedNumberTreatment.md │ ├── Set-CsTeamsUpdateManagementPolicy.md │ ├── Set-CsTeamsUpgradeConfiguration.md │ ├── Set-CsTeamsVdiPolicy.md │ ├── Set-CsTeamsVirtualAppointmentsPolicy.md │ ├── Set-CsTeamsVoiceApplicationsPolicy.md │ ├── Set-CsTeamsWorkLoadPolicy.md │ ├── Set-CsTeamsWorkLocationDetectionPolicy.md │ ├── Set-CsTenantBlockedCallingNumbers.md │ ├── Set-CsTenantDialPlan.md │ ├── Set-CsTenantFederationConfiguration.md │ ├── Set-CsTenantMigrationConfiguration.md │ ├── Set-CsTenantNetworkRegion.md │ ├── Set-CsTenantNetworkSite.md │ ├── Set-CsTenantNetworkSubnet.md │ ├── Set-CsTenantTrustedIPAddress.md │ ├── Set-CsUser.md │ ├── Set-CsUserCallingDelegate.md │ ├── Set-CsUserCallingSettings.md │ ├── Set-CsVideoInteropServiceProvider.md │ ├── Set-Team.md │ ├── Set-TeamArchivedState.md │ ├── Set-TeamChannel.md │ ├── Set-TeamPicture.md │ ├── Set-TeamTargetingHierarchy.md │ ├── Set-TeamsApp.md │ ├── Set-TeamsEnvironmentConfig.md │ ├── Start-CsExMeetingMigration.md │ ├── Sync-CsOnlineApplicationInstance.md │ ├── Test-CsEffectiveTenantDialPlan.md │ ├── Test-CsInboundBlockedNumberPattern.md │ ├── Test-CsTeamsShiftsConnectionValidate.md │ ├── Test-CsTeamsTranslationRule.md │ ├── Test-CsTeamsUnassignedNumberTreatment.md │ ├── Test-CsVoiceNormalizationRule.md │ ├── Unregister-CsOnlineDialInConferencingServiceNumber.md │ ├── Update-CsAutoAttendant.md │ ├── Update-CsCustomPolicyPackage.md │ ├── Update-CsPhoneNumberTag.md │ ├── Update-CsTeamTemplate.md │ ├── Update-CsTeamsShiftsConnection.md │ ├── Update-CsTeamsShiftsConnectionInstance.md │ ├── Update-M365TeamsApp.md │ ├── Update-M365UnifiedCustomPendingApp.md │ └── Update-M365UnifiedTenantSettings.md ├── test └── MicrosoftTeams │ └── Set-CsTeamsEdcuationConfiguration.yml ├── tools ├── README.md └── office-cmdlet-updater │ ├── .eslintrc │ ├── .gitignore │ ├── .prettierrc │ ├── README.md │ ├── config │ └── default.json │ ├── constants │ ├── commands.js │ ├── errors.js │ └── logs.js │ ├── controllers │ ├── cli.controller.js │ ├── github.controller.js │ ├── logs.controller.js │ ├── markdown.controller.js │ ├── module.controller.js │ └── notification.controller.js │ ├── helpers │ ├── colors.js │ ├── di.container.js │ ├── os.js │ └── strings.js │ ├── index.js │ ├── package.json │ └── services │ ├── cli.service.js │ ├── cmdlet.dependencies.service.js │ ├── cmdlet.service.js │ ├── config.service.js │ ├── git.service.js │ ├── github.service.js │ ├── log.parse.service.js │ ├── log.store.service.js │ ├── mail.notification.service.js │ ├── module.service.js │ └── power.shell.service.js └── whiteboard ├── docfx.json ├── docs-conceptual ├── LICENSE.txt ├── index.md ├── overview.md └── toc.yml ├── mapping └── monikerMapping.json └── whiteboard-ps └── WhiteboardAdmin ├── Get-OriginalFluidWhiteboards.md ├── Get-OriginalFluidWhiteboardsForTenant.md ├── Get-Whiteboard.md ├── Get-WhiteboardOwners.md ├── Get-WhiteboardSettings.md ├── Get-WhiteboardsForTenant.md ├── Get-WhiteboardsForTenantMigrated.md ├── Get-WhiteboardsMigrated.md ├── Invoke-TransferAllWhiteboards.md ├── Remove-Whiteboard.md ├── Restore-Whiteboard.md ├── Set-WhiteboardOwner.md ├── Set-WhiteboardSettings.md └── WhiteboardAdmin.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/workflows/AutoLabelAssign.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/.github/workflows/AutoLabelAssign.yml -------------------------------------------------------------------------------- /.github/workflows/AutoLabelMsftContributor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/.github/workflows/AutoLabelMsftContributor.yml -------------------------------------------------------------------------------- /.github/workflows/AutoPublish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/.github/workflows/AutoPublish.yml -------------------------------------------------------------------------------- /.github/workflows/BackgroundTasks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/.github/workflows/BackgroundTasks.yml -------------------------------------------------------------------------------- /.github/workflows/BuildValidation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/.github/workflows/BuildValidation.yml -------------------------------------------------------------------------------- /.github/workflows/LiveMergeCheck.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/.github/workflows/LiveMergeCheck.yml -------------------------------------------------------------------------------- /.github/workflows/PrFileCount.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/.github/workflows/PrFileCount.yml -------------------------------------------------------------------------------- /.github/workflows/ProtectedFiles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/.github/workflows/ProtectedFiles.yml -------------------------------------------------------------------------------- /.github/workflows/Stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/.github/workflows/Stale.yml -------------------------------------------------------------------------------- /.github/workflows/StaleBranch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/.github/workflows/StaleBranch.yml -------------------------------------------------------------------------------- /.github/workflows/TierManagement.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/.github/workflows/TierManagement.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/.gitignore -------------------------------------------------------------------------------- /.openpublishing.publish.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/.openpublishing.publish.config.json -------------------------------------------------------------------------------- /.openpublishing.redirection.exchange.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/.openpublishing.redirection.exchange.json -------------------------------------------------------------------------------- /.openpublishing.redirection.officewebapps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/.openpublishing.redirection.officewebapps.json -------------------------------------------------------------------------------- /.openpublishing.redirection.skype.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/.openpublishing.redirection.skype.json -------------------------------------------------------------------------------- /.openpublishing.redirection.spmt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/.openpublishing.redirection.spmt.json -------------------------------------------------------------------------------- /.openpublishing.redirection.teams.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/.openpublishing.redirection.teams.json -------------------------------------------------------------------------------- /.openpublishing.redirection.whiteboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/.openpublishing.redirection.whiteboard.json -------------------------------------------------------------------------------- /ContentOwners.txt: -------------------------------------------------------------------------------- 1 | * @tiburd @yogkumgit 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE-CODE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/LICENSE-CODE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/SECURITY.md -------------------------------------------------------------------------------- /ThirdPartyNotices: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/ThirdPartyNotices -------------------------------------------------------------------------------- /cabgen-bootstrap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/cabgen-bootstrap.yml -------------------------------------------------------------------------------- /exchange/docfx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/docfx.json -------------------------------------------------------------------------------- /exchange/docs-conceptual/app-only-auth-powershell-v2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/docs-conceptual/app-only-auth-powershell-v2.md -------------------------------------------------------------------------------- /exchange/docs-conceptual/client-advanced-settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/docs-conceptual/client-advanced-settings.md -------------------------------------------------------------------------------- /exchange/docs-conceptual/cmdlet-property-sets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/docs-conceptual/cmdlet-property-sets.md -------------------------------------------------------------------------------- /exchange/docs-conceptual/connect-to-scc-powershell.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/docs-conceptual/connect-to-scc-powershell.md -------------------------------------------------------------------------------- /exchange/docs-conceptual/exchange-cmdlet-syntax.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/docs-conceptual/exchange-cmdlet-syntax.md -------------------------------------------------------------------------------- /exchange/docs-conceptual/exchange-management-shell.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/docs-conceptual/exchange-management-shell.md -------------------------------------------------------------------------------- /exchange/docs-conceptual/exchange-online-powershell-v2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/docs-conceptual/exchange-online-powershell-v2.md -------------------------------------------------------------------------------- /exchange/docs-conceptual/exchange-online-powershell.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/docs-conceptual/exchange-online-powershell.md -------------------------------------------------------------------------------- /exchange/docs-conceptual/filter-properties.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/docs-conceptual/filter-properties.md -------------------------------------------------------------------------------- /exchange/docs-conceptual/filters-v2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/docs-conceptual/filters-v2.md -------------------------------------------------------------------------------- /exchange/docs-conceptual/index.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/docs-conceptual/index.yml -------------------------------------------------------------------------------- /exchange/docs-conceptual/media/add-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/docs-conceptual/media/add-icon.png -------------------------------------------------------------------------------- /exchange/docs-conceptual/media/mi-add-exo-module.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/docs-conceptual/media/mi-add-exo-module.png -------------------------------------------------------------------------------- /exchange/docs-conceptual/media/search-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/docs-conceptual/media/search-icon.png -------------------------------------------------------------------------------- /exchange/docs-conceptual/recipient-filters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/docs-conceptual/recipient-filters.md -------------------------------------------------------------------------------- /exchange/docs-conceptual/recipientfilter-properties.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/docs-conceptual/recipientfilter-properties.md -------------------------------------------------------------------------------- /exchange/docs-conceptual/scc-powershell.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/docs-conceptual/scc-powershell.md -------------------------------------------------------------------------------- /exchange/docs-conceptual/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/docs-conceptual/toc.yml -------------------------------------------------------------------------------- /exchange/docs-conceptual/whats-new-in-the-exo-module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/docs-conceptual/whats-new-in-the-exo-module.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Connect-Mailbox.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Connect-Mailbox.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Disable-App.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Disable-App.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Disable-Mailbox.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Disable-Mailbox.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Enable-App.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Enable-App.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Enable-MailUser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Enable-MailUser.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Enable-Mailbox.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Enable-Mailbox.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Enable-UMServer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Enable-UMServer.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Export-Message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Export-Message.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Export-UMPrompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Export-UMPrompt.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Get-ADSite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Get-ADSite.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Get-ADSiteLink.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Get-ADSiteLink.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Get-AddressList.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Get-AddressList.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Get-AgentLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Get-AgentLog.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Get-App.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Get-App.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Get-ArcConfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Get-ArcConfig.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Get-AuditConfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Get-AuditConfig.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Get-AuthConfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Get-AuthConfig.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Get-AuthServer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Get-AuthServer.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Get-CASMailbox.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Get-CASMailbox.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Get-Clutter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Get-Clutter.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Get-Contact.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Get-Contact.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Get-DlpPolicy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Get-DlpPolicy.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Get-EXOMailbox.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Get-EXOMailbox.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Get-EtrLimits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Get-EtrLimits.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Get-Group.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Get-Group.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Get-InboxRule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Get-InboxRule.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Get-JournalRule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Get-JournalRule.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Get-Label.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Get-Label.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Get-LabelPolicy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Get-LabelPolicy.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Get-LinkedUser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Get-LinkedUser.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Get-MailContact.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Get-MailContact.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Get-MailUser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Get-MailUser.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Get-Mailbox.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Get-Mailbox.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Get-MailboxPlan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Get-MailboxPlan.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Get-Message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Get-Message.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Get-MoveRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Get-MoveRequest.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Get-Place.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Get-Place.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Get-PopSettings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Get-PopSettings.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Get-Queue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Get-Queue.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Get-QueueDigest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Get-QueueDigest.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Get-RMSTemplate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Get-RMSTemplate.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Get-Recipient.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Get-Recipient.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Get-ReviewItems.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Get-ReviewItems.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Get-RoleGroup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Get-RoleGroup.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Get-SCInsights.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Get-SCInsights.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Get-SiteMailbox.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Get-SiteMailbox.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Get-SmimeConfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Get-SmimeConfig.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Get-SweepRule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Get-SweepRule.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Get-Trust.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Get-Trust.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Get-UMDialPlan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Get-UMDialPlan.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Get-UMHuntGroup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Get-UMHuntGroup.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Get-UMIPGateway.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Get-UMIPGateway.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Get-UMMailbox.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Get-UMMailbox.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Get-UMServer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Get-UMServer.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Get-UMService.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Get-UMService.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Get-User.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Get-User.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Get-UserPhoto.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Get-UserPhoto.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Import-UMPrompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Import-UMPrompt.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Mount-Database.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Mount-Database.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/New-AddressList.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/New-AddressList.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/New-App.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/New-App.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/New-AuthServer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/New-AuthServer.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/New-DlpPolicy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/New-DlpPolicy.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/New-Fingerprint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/New-Fingerprint.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/New-InboxRule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/New-InboxRule.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/New-JournalRule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/New-JournalRule.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/New-Label.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/New-Label.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/New-LabelPolicy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/New-LabelPolicy.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/New-MailContact.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/New-MailContact.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/New-MailMessage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/New-MailMessage.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/New-MailUser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/New-MailUser.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/New-Mailbox.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/New-Mailbox.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/New-MoveRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/New-MoveRequest.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/New-RoleGroup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/New-RoleGroup.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/New-SiteMailbox.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/New-SiteMailbox.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/New-SweepRule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/New-SweepRule.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/New-UMDialPlan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/New-UMDialPlan.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/New-UMHuntGroup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/New-UMHuntGroup.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/New-UMIPGateway.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/New-UMIPGateway.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Remove-App.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Remove-App.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Remove-Label.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Remove-Label.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Remove-MailUser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Remove-MailUser.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Remove-Mailbox.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Remove-Mailbox.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Remove-Message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Remove-Message.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Restore-Mailbox.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Restore-Mailbox.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Resume-Message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Resume-Message.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Resume-Queue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Resume-Queue.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Retry-Queue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Retry-Queue.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Search-Mailbox.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Search-Mailbox.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Set-ADSite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Set-ADSite.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Set-ADSiteLink.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Set-ADSiteLink.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Set-AddressList.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Set-AddressList.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Set-App.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Set-App.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Set-ArcConfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Set-ArcConfig.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Set-AuditConfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Set-AuditConfig.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Set-AuthConfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Set-AuthConfig.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Set-AuthServer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Set-AuthServer.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Set-CASMailbox.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Set-CASMailbox.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Set-Clutter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Set-Clutter.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Set-Contact.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Set-Contact.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Set-DlpPolicy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Set-DlpPolicy.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Set-Group.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Set-Group.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Set-InboxRule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Set-InboxRule.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Set-JournalRule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Set-JournalRule.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Set-Label.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Set-Label.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Set-LabelPolicy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Set-LabelPolicy.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Set-LinkedUser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Set-LinkedUser.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Set-MailContact.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Set-MailContact.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Set-MailUser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Set-MailUser.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Set-Mailbox.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Set-Mailbox.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Set-MailboxPlan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Set-MailboxPlan.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Set-MoveRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Set-MoveRequest.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Set-Place.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Set-Place.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Set-PopSettings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Set-PopSettings.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Set-RMSTemplate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Set-RMSTemplate.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Set-RoleGroup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Set-RoleGroup.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Set-SiteMailbox.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Set-SiteMailbox.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Set-SmimeConfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Set-SmimeConfig.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Set-SweepRule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Set-SweepRule.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Set-UMDialPlan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Set-UMDialPlan.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Set-UMIPGateway.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Set-UMIPGateway.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Set-UMMailbox.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Set-UMMailbox.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Set-UMServer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Set-UMServer.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Set-UMService.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Set-UMService.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Set-User.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Set-User.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Set-UserPhoto.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Set-UserPhoto.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Suspend-Message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Suspend-Message.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Suspend-Queue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Suspend-Queue.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Test-MRSHealth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Test-MRSHealth.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Test-Mailflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Test-Mailflow.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Test-Message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Test-Message.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Test-SenderId.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Test-SenderId.md -------------------------------------------------------------------------------- /exchange/exchange-ps/ExchangePowerShell/Update-SafeList.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/exchange-ps/ExchangePowerShell/Update-SafeList.md -------------------------------------------------------------------------------- /exchange/mapping/monikerMapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/mapping/monikerMapping.json -------------------------------------------------------------------------------- /exchange/mapping/serviceMapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/exchange/mapping/serviceMapping.json -------------------------------------------------------------------------------- /images/fork_button_on_github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/images/fork_button_on_github.png -------------------------------------------------------------------------------- /images/github_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/images/github_flow.png -------------------------------------------------------------------------------- /images/propose-file-change.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/images/propose-file-change.png -------------------------------------------------------------------------------- /images/quick-update-01-edit-button-on-learn-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/images/quick-update-01-edit-button-on-learn-page.png -------------------------------------------------------------------------------- /images/quick-update-02-edit-button-on-github-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/images/quick-update-02-edit-button-on-github-page.png -------------------------------------------------------------------------------- /images/quick-update-03-fork-this-repository-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/images/quick-update-03-fork-this-repository-page.png -------------------------------------------------------------------------------- /images/quick-update-04-github-editor-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/images/quick-update-04-github-editor-page.png -------------------------------------------------------------------------------- /images/quick-update-05-propose-changes-dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/images/quick-update-05-propose-changes-dialog.png -------------------------------------------------------------------------------- /images/quick-update-06-comparing-changes-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/images/quick-update-06-comparing-changes-page.png -------------------------------------------------------------------------------- /images/quick-update-07-open-a-pull-request-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/images/quick-update-07-open-a-pull-request-page.png -------------------------------------------------------------------------------- /images/quick-update-icon-github-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/images/quick-update-icon-github-edit.png -------------------------------------------------------------------------------- /images/quick-update-icon-learn-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/images/quick-update-icon-learn-edit.png -------------------------------------------------------------------------------- /images/upload_files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/images/upload_files.png -------------------------------------------------------------------------------- /images/view_your_forked_repos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/images/view_your_forked_repos.png -------------------------------------------------------------------------------- /ms-commerce/TOC.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/ms-commerce/TOC.yml -------------------------------------------------------------------------------- /ms-commerce/breadcrumb/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/ms-commerce/breadcrumb/toc.yml -------------------------------------------------------------------------------- /ms-commerce/docfx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/ms-commerce/docfx.json -------------------------------------------------------------------------------- /ms-commerce/index.md: -------------------------------------------------------------------------------- 1 | # Welcome to ms-commerce! -------------------------------------------------------------------------------- /officewebapps/docfx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/officewebapps/docfx.json -------------------------------------------------------------------------------- /officewebapps/docs-conceptual/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/officewebapps/docs-conceptual/index.md -------------------------------------------------------------------------------- /officewebapps/docs-conceptual/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/officewebapps/docs-conceptual/intro.md -------------------------------------------------------------------------------- /officewebapps/docs-conceptual/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/officewebapps/docs-conceptual/toc.yml -------------------------------------------------------------------------------- /officewebapps/mapping/monikerMapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/officewebapps/mapping/monikerMapping.json -------------------------------------------------------------------------------- /repo_docs/ADVANCED.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/repo_docs/ADVANCED.md -------------------------------------------------------------------------------- /repo_docs/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/repo_docs/FAQ.md -------------------------------------------------------------------------------- /repo_docs/NEW_CMDLETS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/repo_docs/NEW_CMDLETS.md -------------------------------------------------------------------------------- /repo_docs/UPDATE_CMDLETS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/repo_docs/UPDATE_CMDLETS.md -------------------------------------------------------------------------------- /skype/docfx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/docfx.json -------------------------------------------------------------------------------- /skype/docs-conceptual/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/docs-conceptual/index.md -------------------------------------------------------------------------------- /skype/docs-conceptual/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/docs-conceptual/intro.md -------------------------------------------------------------------------------- /skype/docs-conceptual/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/docs-conceptual/toc.yml -------------------------------------------------------------------------------- /skype/mapping/monikerMapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/mapping/monikerMapping.json -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Add-CsSlaDelegates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Add-CsSlaDelegates.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Backup-CsPool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Backup-CsPool.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Clear-CsDeviceUpdateLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Clear-CsDeviceUpdateLog.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Convert-CsUserData.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Convert-CsUserData.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/ConvertTo-JsonForPSWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/ConvertTo-JsonForPSWS.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Copy-CsVoicePolicy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Copy-CsVoicePolicy.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Debug-CsDataConference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Debug-CsDataConference.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Disable-CsAdDomain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Disable-CsAdDomain.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Disable-CsAdForest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Disable-CsAdForest.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Disable-CsComputer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Disable-CsComputer.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Disable-CsMeetingRoom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Disable-CsMeetingRoom.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Disable-CsUser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Disable-CsUser.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Enable-CsAdDomain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Enable-CsAdDomain.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Enable-CsAdForest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Enable-CsAdForest.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Enable-CsComputer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Enable-CsComputer.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Enable-CsMeetingRoom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Enable-CsMeetingRoom.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Enable-CsPublicProvider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Enable-CsPublicProvider.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Enable-CsReplica.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Enable-CsReplica.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Enable-CsTopology.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Enable-CsTopology.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Enable-CsUser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Enable-CsUser.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Export-CsArchivingData.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Export-CsArchivingData.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Export-CsConfiguration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Export-CsConfiguration.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Export-CsUserData.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Export-CsUserData.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Get-CsAdContact.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Get-CsAdContact.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Get-CsAdDomain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Get-CsAdDomain.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Get-CsAdForest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Get-CsAdForest.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Get-CsAdPrincipal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Get-CsAdPrincipal.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Get-CsAdServerSchema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Get-CsAdServerSchema.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Get-CsAdUser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Get-CsAdUser.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Get-CsAdminRole.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Get-CsAdminRole.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Get-CsAllowedDomain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Get-CsAllowedDomain.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Get-CsAnalogDevice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Get-CsAnalogDevice.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Get-CsAnnouncement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Get-CsAnnouncement.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Get-CsArchivingPolicy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Get-CsArchivingPolicy.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Get-CsAuthConfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Get-CsAuthConfig.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Get-CsBlockedDomain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Get-CsBlockedDomain.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Get-CsBusyOptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Get-CsBusyOptions.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Get-CsCallParkOrbit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Get-CsCallParkOrbit.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Get-CsCallViaWorkPolicy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Get-CsCallViaWorkPolicy.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Get-CsCdrConfiguration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Get-CsCdrConfiguration.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Get-CsCertificate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Get-CsCertificate.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Get-CsClientCertificate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Get-CsClientCertificate.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Get-CsClientPinInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Get-CsClientPinInfo.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Get-CsClientPolicy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Get-CsClientPolicy.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Get-CsClsAgentStatus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Get-CsClsAgentStatus.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Get-CsClsConfiguration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Get-CsClsConfiguration.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Get-CsClsRegion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Get-CsClsRegion.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Get-CsClsScenario.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Get-CsClsScenario.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Get-CsClsSearchTerm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Get-CsClsSearchTerm.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Get-CsClsSecurityGroup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Get-CsClsSecurityGroup.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Get-CsCommonAreaPhone.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Get-CsCommonAreaPhone.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Get-CsComputer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Get-CsComputer.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Get-CsCpsConfiguration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Get-CsCpsConfiguration.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Get-CsDeviceUpdateRule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Get-CsDeviceUpdateRule.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Get-CsDialPlan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Get-CsDialPlan.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Get-CsEffectivePolicy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Get-CsEffectivePolicy.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Get-CsExUmContact.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Get-CsExUmContact.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Get-CsFIPSConfiguration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Get-CsFIPSConfiguration.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Get-CsGraphPolicy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Get-CsGraphPolicy.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Get-CsHostingProvider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Get-CsHostingProvider.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Get-CsHybridPSTNSite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Get-CsHybridPSTNSite.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Get-CsIPPhonePolicy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Get-CsIPPhonePolicy.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Get-CsImConfiguration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Get-CsImConfiguration.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Get-CsLisCivicAddress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Get-CsLisCivicAddress.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Get-CsLisLocation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Get-CsLisLocation.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Get-CsLisPort.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Get-CsLisPort.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Get-CsLisSubnet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Get-CsLisSubnet.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Get-CsLisSwitch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Get-CsLisSwitch.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Get-CsLocationPolicy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Get-CsLocationPolicy.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Get-CsMcxConfiguration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Get-CsMcxConfiguration.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Get-CsMeetingRoom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Get-CsMeetingRoom.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Get-CsMobilityPolicy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Get-CsMobilityPolicy.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Get-CsNetworkInterface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Get-CsNetworkInterface.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Get-CsNetworkRegion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Get-CsNetworkRegion.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Get-CsNetworkRegionLink.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Get-CsNetworkRegionLink.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Get-CsNetworkSite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Get-CsNetworkSite.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Get-CsNetworkSubnet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Get-CsNetworkSubnet.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Get-CsOAuthServer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Get-CsOAuthServer.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Get-CsPinPolicy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Get-CsPinPolicy.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Get-CsPool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Get-CsPool.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Get-CsPoolFabricState.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Get-CsPoolFabricState.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Get-CsPresencePolicy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Get-CsPresencePolicy.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Get-CsPresenceProvider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Get-CsPresenceProvider.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Get-CsPstnUsage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Get-CsPstnUsage.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Get-CsPublicProvider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Get-CsPublicProvider.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Get-CsQoEConfiguration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Get-CsQoEConfiguration.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Get-CsRgsAgentGroup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Get-CsRgsAgentGroup.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Get-CsRgsConfiguration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Get-CsRgsConfiguration.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Get-CsRgsHolidaySet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Get-CsRgsHolidaySet.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Get-CsRgsQueue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Get-CsRgsQueue.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Get-CsRgsWorkflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Get-CsRgsWorkflow.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Get-CsServerApplication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Get-CsServerApplication.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Get-CsServerVersion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Get-CsServerVersion.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Get-CsService.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Get-CsService.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Get-CsSipDomain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Get-CsSipDomain.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Get-CsSite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Get-CsSite.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Get-CsSlaConfiguration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Get-CsSlaConfiguration.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Get-CsTestDevice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Get-CsTestDevice.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Get-CsTopology.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Get-CsTopology.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Get-CsTrunk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Get-CsTrunk.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Get-CsUICulture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Get-CsUICulture.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Get-CsUnassignedNumber.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Get-CsUnassignedNumber.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Get-CsUpgradeDomainInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Get-CsUpgradeDomainInfo.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Get-CsUser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Get-CsUser.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Get-CsUserAcp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Get-CsUserAcp.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Get-CsUserDatabaseState.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Get-CsUserDatabaseState.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Get-CsUserDelegates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Get-CsUserDelegates.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Get-CsUserPoolInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Get-CsUserPoolInfo.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Get-CsUserPstnSettings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Get-CsUserPstnSettings.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Get-CsUserSession.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Get-CsUserSession.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Get-CsUserTeamMembers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Get-CsUserTeamMembers.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Get-CsVideoTrunk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Get-CsVideoTrunk.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Get-CsVoicePolicy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Get-CsVoicePolicy.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Get-CsVoiceRoute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Get-CsVoiceRoute.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Get-CsWindowsService.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Get-CsWindowsService.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Grant-CsArchivingPolicy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Grant-CsArchivingPolicy.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Grant-CsClientPolicy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Grant-CsClientPolicy.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Grant-CsDialPlan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Grant-CsDialPlan.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Grant-CsGraphPolicy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Grant-CsGraphPolicy.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Grant-CsIPPhonePolicy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Grant-CsIPPhonePolicy.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Grant-CsLocationPolicy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Grant-CsLocationPolicy.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Grant-CsMobilityPolicy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Grant-CsMobilityPolicy.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Grant-CsOUPermission.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Grant-CsOUPermission.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Grant-CsPinPolicy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Grant-CsPinPolicy.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Grant-CsPresencePolicy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Grant-CsPresencePolicy.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Grant-CsSetupPermission.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Grant-CsSetupPermission.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Grant-CsVoicePolicy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Grant-CsVoicePolicy.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Import-CsCertificate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Import-CsCertificate.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Import-CsConfiguration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Import-CsConfiguration.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Import-CsDeviceUpdate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Import-CsDeviceUpdate.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Import-CsRgsAudioFile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Import-CsRgsAudioFile.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Import-CsUserData.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Import-CsUserData.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Install-CsDatabase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Install-CsDatabase.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Invoke-CsPoolFailBack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Invoke-CsPoolFailBack.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Invoke-CsPoolFailOver.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Invoke-CsPoolFailOver.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Invoke-CsUcsRollback.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Invoke-CsUcsRollback.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Lock-CsClientPin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Lock-CsClientPin.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Merge-CsLegacyTopology.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Merge-CsLegacyTopology.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Move-CsAnalogDevice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Move-CsAnalogDevice.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Move-CsCommonAreaPhone.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Move-CsCommonAreaPhone.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Move-CsExUmContact.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Move-CsExUmContact.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Move-CsLegacyUser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Move-CsLegacyUser.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Move-CsManagementServer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Move-CsManagementServer.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Move-CsMeetingRoom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Move-CsMeetingRoom.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Move-CsRgsConfiguration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Move-CsRgsConfiguration.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Move-CsUser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Move-CsUser.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/New-CsAdminRole.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/New-CsAdminRole.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/New-CsAllowedDomain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/New-CsAllowedDomain.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/New-CsAnalogDevice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/New-CsAnalogDevice.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/New-CsAnnouncement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/New-CsAnnouncement.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/New-CsArchivingPolicy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/New-CsArchivingPolicy.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/New-CsBlockedDomain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/New-CsBlockedDomain.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/New-CsCallParkOrbit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/New-CsCallParkOrbit.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/New-CsCallViaWorkPolicy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/New-CsCallViaWorkPolicy.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/New-CsCdrConfiguration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/New-CsCdrConfiguration.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/New-CsClientPolicy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/New-CsClientPolicy.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/New-CsClientPolicyEntry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/New-CsClientPolicyEntry.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/New-CsClsConfiguration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/New-CsClsConfiguration.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/New-CsClsProvider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/New-CsClsProvider.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/New-CsClsRegion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/New-CsClsRegion.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/New-CsClsScenario.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/New-CsClsScenario.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/New-CsClsSecurityGroup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/New-CsClsSecurityGroup.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/New-CsCommonAreaPhone.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/New-CsCommonAreaPhone.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/New-CsCpsConfiguration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/New-CsCpsConfiguration.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/New-CsDiagnosticsFilter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/New-CsDiagnosticsFilter.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/New-CsDialPlan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/New-CsDialPlan.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/New-CsEmergencyNumber.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/New-CsEmergencyNumber.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/New-CsExUmContact.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/New-CsExUmContact.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/New-CsExtendedTest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/New-CsExtendedTest.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/New-CsFIPSConfiguration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/New-CsFIPSConfiguration.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/New-CsHostingProvider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/New-CsHostingProvider.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/New-CsHybridPSTNSite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/New-CsHybridPSTNSite.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/New-CsImConfiguration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/New-CsImConfiguration.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/New-CsIssuedCertId.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/New-CsIssuedCertId.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/New-CsKerberosAccount.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/New-CsKerberosAccount.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/New-CsLocationPolicy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/New-CsLocationPolicy.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/New-CsMcxConfiguration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/New-CsMcxConfiguration.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/New-CsMobilityPolicy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/New-CsMobilityPolicy.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/New-CsNetworkBWPolicy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/New-CsNetworkBWPolicy.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/New-CsNetworkRegion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/New-CsNetworkRegion.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/New-CsNetworkRegionLink.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/New-CsNetworkRegionLink.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/New-CsNetworkSite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/New-CsNetworkSite.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/New-CsNetworkSubnet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/New-CsNetworkSubnet.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/New-CsOAuthServer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/New-CsOAuthServer.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/New-CsPinPolicy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/New-CsPinPolicy.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/New-CsPresencePolicy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/New-CsPresencePolicy.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/New-CsPresenceProvider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/New-CsPresenceProvider.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/New-CsPublicProvider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/New-CsPublicProvider.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/New-CsQoEConfiguration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/New-CsQoEConfiguration.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/New-CsRgsAgentGroup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/New-CsRgsAgentGroup.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/New-CsRgsAnswer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/New-CsRgsAnswer.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/New-CsRgsCallAction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/New-CsRgsCallAction.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/New-CsRgsHoliday.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/New-CsRgsHoliday.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/New-CsRgsHolidaySet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/New-CsRgsHolidaySet.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/New-CsRgsPrompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/New-CsRgsPrompt.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/New-CsRgsQuestion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/New-CsRgsQuestion.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/New-CsRgsQueue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/New-CsRgsQueue.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/New-CsRgsTimeRange.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/New-CsRgsTimeRange.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/New-CsRgsWorkflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/New-CsRgsWorkflow.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/New-CsServerApplication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/New-CsServerApplication.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/New-CsSimpleUrl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/New-CsSimpleUrl.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/New-CsSimpleUrlEntry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/New-CsSimpleUrlEntry.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/New-CsSipDomain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/New-CsSipDomain.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/New-CsSipProxyCustom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/New-CsSipProxyCustom.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/New-CsSipProxyRealm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/New-CsSipProxyRealm.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/New-CsSipProxyTCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/New-CsSipProxyTCP.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/New-CsSipProxyTLS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/New-CsSipProxyTLS.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/New-CsSipProxyTransport.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/New-CsSipProxyTransport.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/New-CsStaticRoute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/New-CsStaticRoute.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/New-CsTestDevice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/New-CsTestDevice.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/New-CsUnassignedNumber.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/New-CsUnassignedNumber.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/New-CsVoicePolicy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/New-CsVoicePolicy.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/New-CsVoiceRegex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/New-CsVoiceRegex.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/New-CsVoiceRoute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/New-CsVoiceRoute.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/New-CsWebLink.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/New-CsWebLink.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/New-CsWebOrigin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/New-CsWebOrigin.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Publish-CsTopology.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Publish-CsTopology.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Remove-CsAdminRole.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Remove-CsAdminRole.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Remove-CsAllowedDomain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Remove-CsAllowedDomain.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Remove-CsAnalogDevice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Remove-CsAnalogDevice.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Remove-CsAnnouncement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Remove-CsAnnouncement.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Remove-CsBlockedDomain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Remove-CsBlockedDomain.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Remove-CsBusyOptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Remove-CsBusyOptions.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Remove-CsCallParkOrbit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Remove-CsCallParkOrbit.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Remove-CsCertificate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Remove-CsCertificate.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Remove-CsClientPolicy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Remove-CsClientPolicy.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Remove-CsClsRegion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Remove-CsClsRegion.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Remove-CsClsScenario.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Remove-CsClsScenario.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Remove-CsDialPlan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Remove-CsDialPlan.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Remove-CsExUmContact.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Remove-CsExUmContact.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Remove-CsHybridPSTNSite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Remove-CsHybridPSTNSite.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Remove-CsLisLocation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Remove-CsLisLocation.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Remove-CsLisPort.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Remove-CsLisPort.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Remove-CsLisSubnet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Remove-CsLisSubnet.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Remove-CsLisSwitch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Remove-CsLisSwitch.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Remove-CsLocationPolicy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Remove-CsLocationPolicy.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Remove-CsMobilityPolicy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Remove-CsMobilityPolicy.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Remove-CsNetworkRegion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Remove-CsNetworkRegion.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Remove-CsNetworkSite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Remove-CsNetworkSite.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Remove-CsNetworkSubnet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Remove-CsNetworkSubnet.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Remove-CsOAuthServer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Remove-CsOAuthServer.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Remove-CsPinPolicy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Remove-CsPinPolicy.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Remove-CsPresencePolicy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Remove-CsPresencePolicy.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Remove-CsPublicProvider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Remove-CsPublicProvider.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Remove-CsRgsAgentGroup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Remove-CsRgsAgentGroup.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Remove-CsRgsHolidaySet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Remove-CsRgsHolidaySet.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Remove-CsRgsQueue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Remove-CsRgsQueue.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Remove-CsRgsWorkflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Remove-CsRgsWorkflow.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Remove-CsSipDomain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Remove-CsSipDomain.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Remove-CsSlaDelegates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Remove-CsSlaDelegates.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Remove-CsTestDevice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Remove-CsTestDevice.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Remove-CsUserAcp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Remove-CsUserAcp.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Remove-CsVoicePolicy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Remove-CsVoicePolicy.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Remove-CsVoiceRoute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Remove-CsVoiceRoute.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Request-CsCertificate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Request-CsCertificate.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Reset-CsRoutingGroup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Reset-CsRoutingGroup.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Revoke-CsOUPermission.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Revoke-CsOUPermission.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Search-CsClsLogging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Search-CsClsLogging.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Set-CsAdminRole.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Set-CsAdminRole.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Set-CsAllowedDomain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Set-CsAllowedDomain.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Set-CsAnalogDevice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Set-CsAnalogDevice.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Set-CsAnnouncement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Set-CsAnnouncement.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Set-CsApplicationServer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Set-CsApplicationServer.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Set-CsArchivingPolicy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Set-CsArchivingPolicy.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Set-CsArchivingServer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Set-CsArchivingServer.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Set-CsAuthConfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Set-CsAuthConfig.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Set-CsBlockedDomain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Set-CsBlockedDomain.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Set-CsBusyOptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Set-CsBusyOptions.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Set-CsCallParkOrbit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Set-CsCallParkOrbit.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Set-CsCallViaWorkPolicy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Set-CsCallViaWorkPolicy.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Set-CsCdrConfiguration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Set-CsCdrConfiguration.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Set-CsCertificate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Set-CsCertificate.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Set-CsClientPin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Set-CsClientPin.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Set-CsClientPolicy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Set-CsClientPolicy.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Set-CsClsConfiguration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Set-CsClsConfiguration.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Set-CsClsRegion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Set-CsClsRegion.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Set-CsClsScenario.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Set-CsClsScenario.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Set-CsClsSearchTerm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Set-CsClsSearchTerm.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Set-CsClsSecurityGroup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Set-CsClsSecurityGroup.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Set-CsCommonAreaPhone.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Set-CsCommonAreaPhone.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Set-CsConferenceServer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Set-CsConferenceServer.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Set-CsCpsConfiguration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Set-CsCpsConfiguration.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Set-CsDialPlan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Set-CsDialPlan.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Set-CsDirector.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Set-CsDirector.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Set-CsEdgeServer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Set-CsEdgeServer.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Set-CsExUmContact.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Set-CsExUmContact.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Set-CsFIPSConfiguration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Set-CsFIPSConfiguration.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Set-CsHostingProvider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Set-CsHostingProvider.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Set-CsHybridPSTNSite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Set-CsHybridPSTNSite.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Set-CsIPPhonePolicy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Set-CsIPPhonePolicy.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Set-CsImConfiguration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Set-CsImConfiguration.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Set-CsLisLocation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Set-CsLisLocation.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Set-CsLisPort.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Set-CsLisPort.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Set-CsLisSubnet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Set-CsLisSubnet.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Set-CsLisSwitch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Set-CsLisSwitch.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Set-CsLocationPolicy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Set-CsLocationPolicy.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Set-CsManagementServer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Set-CsManagementServer.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Set-CsMcxConfiguration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Set-CsMcxConfiguration.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Set-CsMediationServer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Set-CsMediationServer.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Set-CsMeetingRoom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Set-CsMeetingRoom.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Set-CsMobilityPolicy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Set-CsMobilityPolicy.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Set-CsMonitoringServer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Set-CsMonitoringServer.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Set-CsNetworkRegion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Set-CsNetworkRegion.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Set-CsNetworkRegionLink.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Set-CsNetworkRegionLink.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Set-CsNetworkSite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Set-CsNetworkSite.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Set-CsNetworkSubnet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Set-CsNetworkSubnet.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Set-CsOAuthServer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Set-CsOAuthServer.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Set-CsPinPolicy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Set-CsPinPolicy.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Set-CsPresencePolicy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Set-CsPresencePolicy.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Set-CsPresenceProvider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Set-CsPresenceProvider.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Set-CsPstnGateway.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Set-CsPstnGateway.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Set-CsPstnUsage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Set-CsPstnUsage.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Set-CsPublicProvider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Set-CsPublicProvider.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Set-CsQoEConfiguration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Set-CsQoEConfiguration.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Set-CsRegistrar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Set-CsRegistrar.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Set-CsRgsAgentGroup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Set-CsRgsAgentGroup.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Set-CsRgsConfiguration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Set-CsRgsConfiguration.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Set-CsRgsHolidaySet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Set-CsRgsHolidaySet.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Set-CsRgsQueue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Set-CsRgsQueue.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Set-CsRgsWorkflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Set-CsRgsWorkflow.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Set-CsServerApplication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Set-CsServerApplication.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Set-CsSipDomain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Set-CsSipDomain.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Set-CsSite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Set-CsSite.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Set-CsSlaConfiguration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Set-CsSlaConfiguration.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Set-CsTestDevice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Set-CsTestDevice.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Set-CsUICulture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Set-CsUICulture.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Set-CsUser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Set-CsUser.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Set-CsUserAcp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Set-CsUserAcp.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Set-CsUserDelegates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Set-CsUserDelegates.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Set-CsUserServer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Set-CsUserServer.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Set-CsVideoGateway.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Set-CsVideoGateway.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Set-CsVoicePolicy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Set-CsVoicePolicy.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Set-CsVoiceRoute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Set-CsVoiceRoute.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Set-CsWebServer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Set-CsWebServer.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Show-CsClsLogging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Show-CsClsLogging.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/SkypeForBusiness.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/SkypeForBusiness.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Start-CsClsLogging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Start-CsClsLogging.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Start-CsPool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Start-CsPool.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Stop-CsClsLogging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Stop-CsClsLogging.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Sync-CsClsLogging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Sync-CsClsLogging.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Sync-CsUserData.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Sync-CsUserData.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Test-CsASConference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Test-CsASConference.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Test-CsAVConference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Test-CsAVConference.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Test-CsClientAuth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Test-CsClientAuth.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Test-CsComputer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Test-CsComputer.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Test-CsDatabase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Test-CsDatabase.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Test-CsDialPlan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Test-CsDialPlan.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Test-CsExUMVoiceMail.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Test-CsExUMVoiceMail.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Test-CsGroupIM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Test-CsGroupIM.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Test-CsIM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Test-CsIM.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Test-CsMcxConference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Test-CsMcxConference.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Test-CsMcxP2PIM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Test-CsMcxP2PIM.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Test-CsOUPermission.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Test-CsOUPermission.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Test-CsP2PAV.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Test-CsP2PAV.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Test-CsPresence.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Test-CsPresence.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Test-CsRegistration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Test-CsRegistration.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Test-CsReplica.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Test-CsReplica.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Test-CsTopology.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Test-CsTopology.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Test-CsVoicePolicy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Test-CsVoicePolicy.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Test-CsVoiceRoute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Test-CsVoiceRoute.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Test-CsVoiceUser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Test-CsVoiceUser.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Test-CsWebApp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Test-CsWebApp.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Test-CsWebScheduler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Test-CsWebScheduler.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Test-CsXmppIM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Test-CsXmppIM.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Uninstall-CsDatabase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Uninstall-CsDatabase.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Unlock-CsClientPin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Unlock-CsClientPin.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Update-CsAddressBook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Update-CsAddressBook.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Update-CsAdminRole.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Update-CsAdminRole.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Update-CsClsLogging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Update-CsClsLogging.md -------------------------------------------------------------------------------- /skype/skype-ps/SkypeForBusiness/Update-CsUserData.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/skype/skype-ps/SkypeForBusiness/Update-CsUserData.md -------------------------------------------------------------------------------- /spmt/docfx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/spmt/docfx.json -------------------------------------------------------------------------------- /spmt/docs-conceptual/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/spmt/docs-conceptual/index.md -------------------------------------------------------------------------------- /spmt/docs-conceptual/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/spmt/docs-conceptual/intro.md -------------------------------------------------------------------------------- /spmt/docs-conceptual/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/spmt/docs-conceptual/overview.md -------------------------------------------------------------------------------- /spmt/docs-conceptual/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/spmt/docs-conceptual/toc.yml -------------------------------------------------------------------------------- /spmt/mapping/monikerMapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/spmt/mapping/monikerMapping.json -------------------------------------------------------------------------------- /teams/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/LICENSE.txt -------------------------------------------------------------------------------- /teams/docfx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/docfx.json -------------------------------------------------------------------------------- /teams/docs-conceptual/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/docs-conceptual/index.md -------------------------------------------------------------------------------- /teams/docs-conceptual/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/docs-conceptual/overview.md -------------------------------------------------------------------------------- /teams/docs-conceptual/toc.yml: -------------------------------------------------------------------------------- 1 | - name: Overview 2 | href: index.md 3 | -------------------------------------------------------------------------------- /teams/mapping/monikerMapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/mapping/monikerMapping.json -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/Add-TeamChannelUser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/Add-TeamChannelUser.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/Add-TeamUser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/Add-TeamUser.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/Connect-MicrosoftTeams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/Connect-MicrosoftTeams.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/Find-CsGroup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/Find-CsGroup.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/Get-AllM365TeamsApps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/Get-AllM365TeamsApps.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/Get-AssociatedTeam.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/Get-AssociatedTeam.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/Get-CsAiAgents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/Get-CsAiAgents.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/Get-CsAutoAttendant.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/Get-CsAutoAttendant.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/Get-CsCallQueue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/Get-CsCallQueue.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/Get-CsOnlineAudioFile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/Get-CsOnlineAudioFile.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/Get-CsOnlineLisPort.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/Get-CsOnlineLisPort.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/Get-CsOnlineLisSubnet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/Get-CsOnlineLisSubnet.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/Get-CsOnlineLisSwitch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/Get-CsOnlineLisSwitch.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/Get-CsOnlinePstnUsage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/Get-CsOnlinePstnUsage.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/Get-CsOnlineSchedule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/Get-CsOnlineSchedule.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/Get-CsOnlineSipDomain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/Get-CsOnlineSipDomain.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/Get-CsOnlineUser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/Get-CsOnlineUser.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/Get-CsOnlineVoiceRoute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/Get-CsOnlineVoiceRoute.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/Get-CsOnlineVoiceUser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/Get-CsOnlineVoiceUser.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/Get-CsPhoneNumberTag.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/Get-CsPhoneNumberTag.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/Get-CsPolicyPackage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/Get-CsPolicyPackage.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/Get-CsTagsTemplate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/Get-CsTagsTemplate.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/Get-CsTeamTemplate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/Get-CsTeamTemplate.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/Get-CsTeamTemplateList.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/Get-CsTeamTemplateList.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/Get-CsTeamsAIPolicy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/Get-CsTeamsAIPolicy.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/Get-CsTeamsFilesPolicy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/Get-CsTeamsFilesPolicy.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/Get-CsTeamsVdiPolicy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/Get-CsTeamsVdiPolicy.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/Get-CsTenant.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/Get-CsTenant.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/Get-CsTenantDialPlan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/Get-CsTenantDialPlan.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/Get-M365TeamsApp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/Get-M365TeamsApp.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/Get-SharedWithTeam.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/Get-SharedWithTeam.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/Get-SharedWithTeamUser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/Get-SharedWithTeamUser.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/Get-Team.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/Get-Team.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/Get-TeamAllChannel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/Get-TeamAllChannel.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/Get-TeamChannel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/Get-TeamChannel.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/Get-TeamChannelUser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/Get-TeamChannelUser.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/Get-TeamUser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/Get-TeamUser.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/Get-TeamsApp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/Get-TeamsApp.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/Get-TeamsArtifacts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/Get-TeamsArtifacts.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/Grant-CsDialoutPolicy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/Grant-CsDialoutPolicy.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/Grant-CsTeamsAIPolicy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/Grant-CsTeamsAIPolicy.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/Grant-CsTeamsVdiPolicy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/Grant-CsTeamsVdiPolicy.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/Grant-CsTenantDialPlan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/Grant-CsTenantDialPlan.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/MicrosoftTeams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/MicrosoftTeams.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/New-CsAutoAttendant.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/New-CsAutoAttendant.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/New-CsCallQueue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/New-CsCallQueue.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/New-CsEdgeAllowList.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/New-CsEdgeAllowList.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/New-CsOnlineSchedule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/New-CsOnlineSchedule.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/New-CsOnlineTimeRange.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/New-CsOnlineTimeRange.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/New-CsOnlineVoiceRoute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/New-CsOnlineVoiceRoute.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/New-CsTag.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/New-CsTag.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/New-CsTagsTemplate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/New-CsTagsTemplate.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/New-CsTeamTemplate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/New-CsTeamTemplate.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/New-CsTeamsAIPolicy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/New-CsTeamsAIPolicy.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/New-CsTeamsFilesPolicy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/New-CsTeamsFilesPolicy.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/New-CsTeamsVdiPolicy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/New-CsTeamsVdiPolicy.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/New-CsTenantDialPlan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/New-CsTenantDialPlan.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/New-Team.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/New-Team.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/New-TeamChannel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/New-TeamChannel.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/New-TeamsApp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/New-TeamsApp.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/Remove-CsAutoAttendant.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/Remove-CsAutoAttendant.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/Remove-CsCallQueue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/Remove-CsCallQueue.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/Remove-CsOnlineLisPort.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/Remove-CsOnlineLisPort.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/Remove-CsTagsTemplate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/Remove-CsTagsTemplate.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/Remove-CsTeamTemplate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/Remove-CsTeamTemplate.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/Remove-CsTeamsAIPolicy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/Remove-CsTeamsAIPolicy.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/Remove-SharedWithTeam.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/Remove-SharedWithTeam.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/Remove-Team.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/Remove-Team.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/Remove-TeamChannel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/Remove-TeamChannel.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/Remove-TeamChannelUser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/Remove-TeamChannelUser.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/Remove-TeamUser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/Remove-TeamUser.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/Remove-TeamsApp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/Remove-TeamsApp.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/Set-CsAutoAttendant.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/Set-CsAutoAttendant.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/Set-CsCallQueue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/Set-CsCallQueue.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/Set-CsOnlineLisPort.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/Set-CsOnlineLisPort.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/Set-CsOnlineLisSubnet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/Set-CsOnlineLisSubnet.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/Set-CsOnlineLisSwitch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/Set-CsOnlineLisSwitch.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/Set-CsOnlinePstnUsage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/Set-CsOnlinePstnUsage.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/Set-CsOnlineSchedule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/Set-CsOnlineSchedule.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/Set-CsOnlineVoiceRoute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/Set-CsOnlineVoiceRoute.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/Set-CsOnlineVoiceUser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/Set-CsOnlineVoiceUser.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/Set-CsPhoneNumberTag.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/Set-CsPhoneNumberTag.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/Set-CsTagsTemplate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/Set-CsTagsTemplate.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/Set-CsTeamsAIPolicy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/Set-CsTeamsAIPolicy.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/Set-CsTeamsFilesPolicy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/Set-CsTeamsFilesPolicy.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/Set-CsTeamsVdiPolicy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/Set-CsTeamsVdiPolicy.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/Set-CsTenantDialPlan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/Set-CsTenantDialPlan.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/Set-CsUser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/Set-CsUser.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/Set-Team.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/Set-Team.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/Set-TeamArchivedState.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/Set-TeamArchivedState.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/Set-TeamChannel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/Set-TeamChannel.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/Set-TeamPicture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/Set-TeamPicture.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/Set-TeamsApp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/Set-TeamsApp.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/Update-CsAutoAttendant.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/Update-CsAutoAttendant.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/Update-CsTeamTemplate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/Update-CsTeamTemplate.md -------------------------------------------------------------------------------- /teams/teams-ps/MicrosoftTeams/Update-M365TeamsApp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/teams/teams-ps/MicrosoftTeams/Update-M365TeamsApp.md -------------------------------------------------------------------------------- /tools/README.md: -------------------------------------------------------------------------------- 1 | This folder contains tools for working with cmdlets. -------------------------------------------------------------------------------- /tools/office-cmdlet-updater/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/tools/office-cmdlet-updater/.eslintrc -------------------------------------------------------------------------------- /tools/office-cmdlet-updater/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/tools/office-cmdlet-updater/.gitignore -------------------------------------------------------------------------------- /tools/office-cmdlet-updater/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/tools/office-cmdlet-updater/.prettierrc -------------------------------------------------------------------------------- /tools/office-cmdlet-updater/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/tools/office-cmdlet-updater/README.md -------------------------------------------------------------------------------- /tools/office-cmdlet-updater/config/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/tools/office-cmdlet-updater/config/default.json -------------------------------------------------------------------------------- /tools/office-cmdlet-updater/constants/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/tools/office-cmdlet-updater/constants/commands.js -------------------------------------------------------------------------------- /tools/office-cmdlet-updater/constants/errors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/tools/office-cmdlet-updater/constants/errors.js -------------------------------------------------------------------------------- /tools/office-cmdlet-updater/constants/logs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/tools/office-cmdlet-updater/constants/logs.js -------------------------------------------------------------------------------- /tools/office-cmdlet-updater/helpers/colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/tools/office-cmdlet-updater/helpers/colors.js -------------------------------------------------------------------------------- /tools/office-cmdlet-updater/helpers/di.container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/tools/office-cmdlet-updater/helpers/di.container.js -------------------------------------------------------------------------------- /tools/office-cmdlet-updater/helpers/os.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/tools/office-cmdlet-updater/helpers/os.js -------------------------------------------------------------------------------- /tools/office-cmdlet-updater/helpers/strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/tools/office-cmdlet-updater/helpers/strings.js -------------------------------------------------------------------------------- /tools/office-cmdlet-updater/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/tools/office-cmdlet-updater/index.js -------------------------------------------------------------------------------- /tools/office-cmdlet-updater/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/tools/office-cmdlet-updater/package.json -------------------------------------------------------------------------------- /tools/office-cmdlet-updater/services/cli.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/tools/office-cmdlet-updater/services/cli.service.js -------------------------------------------------------------------------------- /tools/office-cmdlet-updater/services/cmdlet.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/tools/office-cmdlet-updater/services/cmdlet.service.js -------------------------------------------------------------------------------- /tools/office-cmdlet-updater/services/config.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/tools/office-cmdlet-updater/services/config.service.js -------------------------------------------------------------------------------- /tools/office-cmdlet-updater/services/git.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/tools/office-cmdlet-updater/services/git.service.js -------------------------------------------------------------------------------- /tools/office-cmdlet-updater/services/github.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/tools/office-cmdlet-updater/services/github.service.js -------------------------------------------------------------------------------- /tools/office-cmdlet-updater/services/module.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/tools/office-cmdlet-updater/services/module.service.js -------------------------------------------------------------------------------- /whiteboard/docfx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/whiteboard/docfx.json -------------------------------------------------------------------------------- /whiteboard/docs-conceptual/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/whiteboard/docs-conceptual/LICENSE.txt -------------------------------------------------------------------------------- /whiteboard/docs-conceptual/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/whiteboard/docs-conceptual/index.md -------------------------------------------------------------------------------- /whiteboard/docs-conceptual/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/whiteboard/docs-conceptual/overview.md -------------------------------------------------------------------------------- /whiteboard/docs-conceptual/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/whiteboard/docs-conceptual/toc.yml -------------------------------------------------------------------------------- /whiteboard/mapping/monikerMapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/office-docs-powershell/HEAD/whiteboard/mapping/monikerMapping.json --------------------------------------------------------------------------------