https://github.com/jmcombs/adminscripts
PowerShell Scripts I've written for common tasks I've come across.
https://github.com/jmcombs/adminscripts
activedirectory azureactivedirectory powershell-script webex webex-teams
Last synced: 2 months ago
JSON representation
PowerShell Scripts I've written for common tasks I've come across.
- Host: GitHub
- URL: https://github.com/jmcombs/adminscripts
- Owner: jmcombs
- License: gpl-3.0
- Created: 2021-07-20T09:47:31.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2026-01-19T21:47:01.000Z (5 months ago)
- Last Synced: 2026-01-20T04:17:48.201Z (5 months ago)
- Topics: activedirectory, azureactivedirectory, powershell-script, webex, webex-teams
- Language: JavaScript
- Homepage:
- Size: 32.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# powershell-scripts
General PowerShell Scripts
# PowerShell Commands for Cisco CVI
Sets policy to `$null` and takes time for the policy to reflect
`Grant-CsTeamsVideoInteropServicePolicy -PolicyName $null -Identity user@domain.com`
Shows all CVI Policies
`Get-CsTeamsVideoInteropServicePolicy`
Shows policy for a specific user
`Get-CsOnlineUser -Identity user@domain.com | Select-Object TeamsVideoInteropServicePolicy`
Sets policy to `CiscoServiceProviderEnabled`
`Grant-CsTeamsVideoInteropServicePolicy -PolicyName CiscoServiceProviderEnabled -Identity user@domain.com`
Shows users with `ServiceProviderDisabled`
`Get-CsOnlineUser -Filter {TeamsVideoInteropServicePolicy -eq 'ServiceProviderDisabled'} | Select-Object displayname, userprincipalname`