User Profile
AlexanderHolmeset
MVP
Joined 9 years ago
User Widgets
Recent Discussions
Unable to assign this license
When for example trying to remove the Skype for Business plan, i always get this error: Same with for example exchange, but for some reason there is no error when doing the same with Yammer. Any idea? When trying to manualy remnove exhange from a user in the webportal, i have to remove the LockBox service first. function disable_skype { $users = Get-MsolUser | Where-Object {$_.isLicensed -eq $true} foreach ($user in $users) { Write-Host "Checking " $user.UserPrincipalName -foregroundcolor "Cyan" $CurrentSku = $user.Licenses.Accountskuid #If more than one SKU, Have to check them all! if ($currentSku.count -gt 1) { Write-Host $user.UserPrincipalName "Has Multiple SKU Assigned. Checking all of them" -foregroundcolor "White" for($i = 0; $i -lt $currentSku.count; $i++) { #Loop trough Each SKU to see if one of their services has the word MCOSTANDARD inside if($user.Licenses[$i].ServiceStatus.ServicePlan.ServiceName -like "*MCOSTANDARD*" ) { Write-host $user.Licenses[$i].AccountSkuid "has Skype for Business Online. Will Disable" -foregroundcolor "Yellow" $NewSkU = New-MsolLicenseOptions -AccountSkuId $user.Licenses[$i].AccountSkuid -DisabledPlans MCOSTANDARD Set-MsolUserLicense -UserPrincipalName $user.UserPrincipalName -LicenseOptions $NewSkU Write-Host "Skype for Business disabled for " $user.UserPrincipalName " On SKU " $user.Licenses[$i].AccountSkuid -foregroundcolor "Green" } else { Write-host $user.Licenses[$i].AccountSkuid " doesn't have Skype for Business Online. Skip" -foregroundcolor "Magenta" } } } else { $NewSkU = New-MsolLicenseOptions -AccountSkuId $CurrentSku -DisabledPlans MCOSTANDARD Set-MsolUserLicense -UserPrincipalName $user.UserPrincipalName -LicenseOptions $NewSkU Write-Host "Skype for Business Online disabled for " $user.UserPrincipalName -foregroundcolor "Green" } } }SolvedRe: S4B meeting - video call with powerpoint presentation
take a look here: https://support.office.com/en-us/article/present-powerpoint-slides-in-a-skype-for-business-meeting-73530b72-ef52-4845-8145-0d72fde94cd0 and here : https://www.skype4badmin.com/using-dual-monitors-in-a-skype-for-business-lync-meeting/1.5KViews0likes0CommentsRe: Skype for business CDR database - how to determine if user joined by phone
I thought i had some reports laying around, but didnt find them, il let you know if i do. I had some custom reports setup at a customer. I guess you can find Caller or callee URI on a conference that would contain a phonenumber. Just dont remeber the table it was in2.3KViews0likes0CommentsRe: Skype for business CDR database - how to determine if user joined by phone
I think you at least can see what kind of device is used. I took a deep dive in that database early last year, let me see if i can dig up some info. Answering from the phone now, so il check tomorrow morning.2.3KViews0likes2CommentsRe: "You've left the call" when joining external web conferences (e.g. SfB online)
You could take a look at client logs with snooper: http://msexchangeguru.com/2018/03/26/snooper/ Sounds like firewall to me too. What happens if they join as a guest? Any difrence between Skype online or Skype on-prem external meetings? You can check Skype online connectivity with this tool: https://www.microsoft.com/en-us/download/details.aspx?id=538852.6KViews0likes1CommentRe: SFBO: Meetings vs Conference
Take a look here: https://docs.microsoft.com/en-us/powershell/module/skype/set-csconferencingpolicy?view=skype-ps https://docs.microsoft.com/en-us/powershell/module/skype/set-csmeetingconfiguration?view=skype-ps Let me know if more explanation is needed3.8KViews0likes2Comments