https://github.com/bgelov/powershell-s4b-tasks
Powershell scripts for Skype for Business (s4b) automating tasks
https://github.com/bgelov/powershell-s4b-tasks
lync microsoft microsoft-s4b powershell s4b skype skype-for-business
Last synced: 4 days ago
JSON representation
Powershell scripts for Skype for Business (s4b) automating tasks
- Host: GitHub
- URL: https://github.com/bgelov/powershell-s4b-tasks
- Owner: bgelov
- License: cc0-1.0
- Created: 2023-06-18T01:56:24.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-06-18T02:11:01.000Z (about 3 years ago)
- Last Synced: 2025-02-22T19:31:47.679Z (over 1 year ago)
- Topics: lync, microsoft, microsoft-s4b, powershell, s4b, skype, skype-for-business
- Language: PowerShell
- Homepage:
- Size: 8.79 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# powershell-s4b-tasks
Powershell scripts for Skype for Business (s4b) automating tasks
## S4B remote shell connect
```
$session = New-PSSession -ConnectionUri "https://S4B-SERVER.bgelov.ru/OcsPowershell" -Credential (Get-Credential)
Import-PSSession -Session $session
```
## Show Lync/S4B logging
```
Show-CsClsLogging
```
## Stop Lync/S4B logging
```
Stop-csclslogging -scenario "AlwaysOn"
```