Vue lecture

Il y a de nouveaux articles disponibles, cliquez pour rafraîchir la page.
✇Site Root

Blog Post: [Microsoft Teams] Module powershell Microsoft Teams disponible en version 5.1.1 (Preview)

Microsoft a rendu disponible une nouvelle version du module powershell pour Microsoft Teams en version 5.1.1 (preview) Date: 13 Avril 2023 Release notes: https://docs.microsoft.com/en-us/microsoftteams/teams-powershell-release-notes Lien: https://www.powershellgallery.com/packages/MicrosoftTeams/5.1.1-preview Release notes: - Adds Region parameter in the New-CsSdgBulkSignInRequest cmdlet in private preview. - Contains a new implementation of [New|Get|Set|Remove|Grant]-CsTeamsAppPermissionPolicy, [New|Get|Set|Remove|Grant]-CsTeamsAppSetupPolicy, [New|Get|Set|Remove|Grant]-CsTeamsEventsPolicy, [New|Get|Set|Remove|Grant]-CsExternalAccessPolicy, [New|Get|Set|Remove|Grant]-CsTeamsCallingPolicy. Functionality remains the same as previous implementation. Comment installer le module powershell MicrosoftTeams en version preview? Install-Module -Name MicrosoftTeams -AllowPrerelease Comment mettre à niveau votre module powershell vers cette version? Update-Module -Name MicrosoftTeams -AllowPrerelease Comment vérifier votre version installée powershell MicrosoftTeams? Get-InstalledModule
✇Site Root

Blog Post: [Microsoft Teams] Module powershell Microsoft Teams disponible en version 5.0

Microsoft a rendu disponible aujourd'hui une nouvelle version du module powershell pour Microsoft Teams en version 5.0 C'est une nouvelle version majeur. Date: 02 Mars 2023 Release notes: https://docs.microsoft.com/fr-fr/MicrosoftTeams/teams-powershell-release-notes Lien: https://www.powershellgallery.com/packages/MicrosoftTeams/5.0.0 Release Notes: **5.0.0-GA** (The project - MicrosoftTeams contains changes till this release): - Releases major updates for Get-CsOnlineUser with significant performance improvements and new filtering capabilities to scenarios without the "-Identity" parameter (currently rolled out in commercial environments): - Performance improvements especially with "-Filter" scenarios like using wildcard operator (*), OnPrem* and Timestamp attributes. - New attributes have now been introduced in the output to ensure parity with scenarios involving the "-Identity" parameter: CountryAbbreviation, SipProxyAddress, TeamsMediaLoggingPolicy, UserValidationErrors, WhenCreated. - These attributes are now enabled for filtering: Alias, City, CompanyName, CompanyName, HostingProvider, UserValidationErrors, OnPremEnterpriseVoiceEnabled, OnPremHostingProvider, OnPremLineURI, OnPremSIPEnabled, SipAddress, SoftDeletionTimestamp, State, Street, TeamsOwnersPolicy, WhenChanged, WhenCreated, FeatureTypes, PreferredDataLocation, LastName. - These filtering operators have been reintroduced into Get-CsOnlineUser: - "-like" operator now supports use of wildcard operators in 'contains' and 'ends with' scenarios. Example: Get-CsOnlineUser -Filter "DisplayName -like '*abc*'" - "-contains" can now be used for filtering on properties that are an array of strings like FeatureTypes, ProxyAddresses and ShadowProxyAddresses. Example: Get-CsOnlineUser -Filter {FeatureTypes -contains "PhoneSystem"} - "-gt" (greater than), "-lt" (less than), "-le" (less than or equal to) can now be used for filtering all string properties. Example: Get-CsOnlineUser -Filter {UserPrincipalName -gt/-le/-lt "abc"} - "-ge" (greater than or equal to) can now also be used for filtering on policies. Example: Get-CsOnlineUser -Filter {ExternalAccessPolicy -ge "xyz_policy"} - Updates to type of users displayed: - Unlicensed Users - Unlicensed users would show up in the output for 30 days post license removal. - Soft deleted users - These users will be displayed in the output with SoftDeletionTimestamp set to a value. Comment installer ou mettre à jour votre module powershell Microsoft Teams Install-Module -Name MicrosoftTeams Si vous avez déja le module, vous pouvez mettre à niveau avec la commande: Update-Module MicrosoftTeams Get-InstalledModule
✇Site Root

Blog Post: [Microsoft Teams] Module powershell Microsoft Teams disponible en version 4.9.4 (Preview)

Microsoft a rendu disponible une nouvelle version du module powershell pour Microsoft Teams en version 4.9.4 (preview) Date: 22 février 2023 Release notes: https://docs.microsoft.com/en-us/microsoftteams/teams-powershell-release-notes Lien: https://www.powershellgallery.com/packages/MicrosoftTeams/4.9.4-preview Les nouveautés: Releases Get-CsSDGBulkSignInRequestsSummary cmdlet in private preview. Adds Region attribute to Get-CsSdgBulkSignInRequestStatus output. Comment installer le module powershell MicrosoftTeams en version preview? Install-Module -Name MicrosoftTeams -AllowPrerelease Comment mettre à niveau votre module powershell vers cette version? Update-Module -Name MicrosoftTeams -AllowPrerelease Comment vérifier votre version installée powershell MicrosoftTeams? Get-InstalledModule
✇Site Root

Blog Post: [Microsoft Teams] Module powershell Microsoft Teams disponible en version 4.9.3

Microsoft a rendu disponible aujourd'hui une nouvelle version du module powershell pour Microsoft Teams en version 4.9.3 Date: 31 Janvier 2023 Release notes: https://docs.microsoft.com/fr-fr/MicrosoftTeams/teams-powershell-release-notes Lien: https://www.powershellgallery.com/packages/MicrosoftTeams/4.9.3 Release Notes: **4.9.3-GA** (The project - MicrosoftTeams contains changes till this release) - Adds Certificate parameter to Connect-MicrosoftTeams. - Adds WelcomeTextToSpeechPrompt parameter to [New|Set]-CsCallQueue. - Fixes issues with pipeline input for Test-CsEffectiveTenantDialPlan & Test-CsVoiceNormalizationRule cmdlets. - Releases [Get|Set]-CsOnlineVoicemailValidationConfiguration cmdlets. - Releases [Get|Set|Grant|Remove|New]-CsTeamsMeetingBrandingPolicy cmdlets. - In CsTeamsMeetingBrandingPolicy cmdlets, there is a known issue that prevents using the 'Remove' list modifier when trying to delete a TeamsMeetingBrandingTheme or a NdiAssuranceSlate. To remove all elements from MeetingBrandingThemes, the workaround is setting the values to null, example: Set-CsTeamsMeetingBrandingPolicy -Identity -MeetingBrandingThemes $null -DefaultTheme "". To update the MeetingBrandingThemes, use the [Set]-CsTeamsMeetingBrandingPolicy cmdlet and pass the list of desired MeetingBrandingThemes created with the [New]-CsTeamsMeetingBrandingTheme cmdlet. Example: $exampleMeetingBrandingTheme = New-CsTeamsMeetingBrandingTheme -DisplayName "exampleTheme" -LogoImageLightUri " https://contoso.com/light.jpg " -LogoImageDarkUri " https://contoso.com/dark.jpg " -BackgroundImageLightUri " https://contoso.com/backgroundlight.jpg " -BackgroundImageDarkUri " https://contoso.com/backgrounddark.jpg " -BrandAccentColor "#000000" -Enabled $true -Identity "exampleTheme" And then set the themes using the Set cmdlet: Set-CsTeamsMeetingBrandingPolicy -Identity -MeetingBrandingThemes @($exampleMeetingBrandingTheme) -DefaultTheme "exampleTheme" Use the same approach for removing elements from NdiAssuranceSlate, using the [New]-CsTeamsNdiAssuranceSlate cmdlet and then using Set-CsTeamsMeetingBrandingPolicy to properly set the values. This will be fixed in the next TPM version. - Releases [New]-CsTeamsMeetingBackgroundImage cmdlet. - Releases [New]-CsTeamsMeetingBrandingTheme cmdlet. - Releases [New]-CsTeamsNdiAssuranceSlate cmdlet. - Contains a new implementation of [New|Get|Set|Remove]-CsTeamsCallHoldPolicy, [New|Get|Set|Remove]-CsTeamsEmergencyCallingPolicy, [New]-CsTeamsEmergencyCallingExtendedNotification. Functionality remains the same as previous implementation. Comment installer ou mettre à jour votre module powershell Microsoft Teams Install-Module -Name MicrosoftTeams Si vous avez déja le module, vous pouvez mettre à niveau avec la commande: Update-Module MicrosoftTeams Get-InstalledModule
❌