Export enterprise voice enabled Skype for Business Users into CSV
This a very useful power shell command.
This command mainly uses to export enterprise voice-enabled Skype for Business users into csv file.
You can edit filed accordingly requirements of data. Such as what are the filed need to be filled in CSV file.
GET-CSUser | Where { $_.EnterpriseVoiceEnabled } | Select-Object DisplayName, SIPAddress, LineURI | Export-Csv -Path "C:\test\csvoiceenabled.csv"
The below command can be used to view the results on the power shell.
GET-CSUser | Where { $_.EnterpriseVoiceEnabled } | Select-Object DisplayName,LineURI
Comments
Post a Comment