An open API service indexing awesome lists of open source software.

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

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"
```