User Profile
KilianTyncke
Copper Contributor
Joined Apr 28, 2023
User Widgets
Recent Discussions
Re: Chat disabled
SSSSS1875 Hello It seems like you might have been logged out without the app showing that you're logged off. If you click your Icon in the app and press settings, it might prompt logging in again. If that fails, consider reinstalling the Teams mobile application as this should resolve it. Hope that helps! Kind regards Kilian Tyncke1.8KViews0likes0CommentsRe: Lineuri to UPN - Help Urgent
Hello Ramki You could do a Write-Host $USer.num to see what numbers you are trying to match on the -eq query. There is probably something going wrong there. It looks like your format might be off or it might be recognized as an object instead of a number. You can do what you are trying to achieve as follows: Make sure your CSV is built as follows in one column with title NUMBER and all numbers underneath in format tel:[E164], for example tel:+3212345678. Like so: NUMBER tel:[E164] tel:[E164] ... Then run this script: $numberList = Import-Csv [FILEPATH] Foreach ($num in $numberList) { Get-CsOnlineUser | Where-Object {$_.LineURI -eq $num.NUMBER} | Select-Object UserPrincipalName, LineURI, EnterpriseVoiceEnabled, AccountEnabled} It will take a while but it'll do the trick. Kind regards!1.4KViews0likes1Comment
Recent Blog Articles
No content to show