User Profile
AusSupport180
Brass Contributor
Joined 5 years ago
User Widgets
Recent Discussions
Coexistence mode Teams only
Hi, Migrated to Teams Only and removed all the on-premises Lync servers. Do we still need the script to set a user account for Microsoft Teams Only? Grant-CsTeamsUpgradePolicy -Identity $Arg1 -PolicyName 'UpgradeToTeams' When the users are terminating, do we required to remove the number assigned? Or when we remove the O365 user License group will take care of that?938Views0likes1CommentHow do i setup AD site links and Cost
Hi AD Guys, France Branch office DC died and We have set the London DNS on France DHCP scopes. users are accessing the AWS file servers but very slowly. What is the best way to configure that site link for better access? Do I need to create a new link to France—AWS? or has nothing to do with AD?How To Hunt For LDAP Reconnaissance
Security principal reconnaissance (LDAP) on one endpoint What happened An actor on Server01 sent suspicious LDAP queries to 2 domain controllers, searching for 2 types of enumeration in domainA.com SearchFilter: ( & (objectClass=user) (objectCategory=CN=Computer,CN=Schema,CN=Configuration,DC=prod,DC=tdomaina,DC=com) ( | ( ! (lastLogonTimestamp=*) ) (lastLogonTimestamp=0) (lastLogonTimestamp>=132813001255230000) ) ( | ( ! (pwdLastSet=*) ) (pwdLastSet=0) (pwdLastSet>=132813001255230000) ) ) How do I find this LDAP Query is suspicious or not?Solved7.4KViews0likes1CommentDomainA to DomainB O365 migration
I’m planning to migrate O365 domainA to O365 domainB. Noticed that two options and looking for the best. Can we do the stage migration without disturbing The DomainA mail flow? Can I forward all the emails temporarily to mail hosting during the cutover? Ex: user@domainA.com forwarded to user@DomainB.com Noticed that some issues when removing the DomainA From O365, 500GB data and DNS changes can cause the Mail flow failures. So what are the steps or best way to move 200 mailboxes? How do I create room, Shared and resources mailboxes in DomainB?675Views0likes1CommentHow To Manage Teams phone numbers
Hi, Currently, use PS to import those phone numbers to the CSV sheet, find a number not allocated and offer that to a new user. Get-CsOnlineUser | Where-Object { $_.LineURI -notlike $null } | Select-Object DisplayName,UserPrincipalName,LineURI | export-csv PHNumbers.csv -NoTypeInformation How do we automate this process or PS script to find the unallocated number easily?1.7KViews1like1CommentNew sfb Online user and covert to a Teams Only Mode
Hi All, I'm trying to create a new script to set up a new user for sfb online and then convert to a Teams-only mode. Noticed required to wait 15-20 min for the user to appear online. So what is the best way of converting that sfb online user to Teams in the same script? This is for our Helpdesk team to set up new users. SFB Online: Enable-CsUser -Identity $UserName -SipAddressType EmailaddresHostingProviderProxyFqdn 'sipfed.online.lync.com' -DomainController 'xxxx' Then I can run the Invoke-command to ADSync. Invoke-command -ComputerName 'xxxxx' -ScriptBlock { Start-AdSyncSyncCycle } Need to connect to Microsoft teams andSet user account for Microsoft Teams *only* Teams: Grant-CsTeamsUpgradePolicy -Identity $UserName -PolicyName 'UpgradeToTeams' Regards, AS1.7KViews0likes4CommentsNew SFB Online User creation from Lync Shell
Hi All, We are moving Sfb to Teams. So I'm trying to create a new script to set up new user for sfb online and then moved to Teams only mode. I got the below errors when trying to create sfb online? #Assign variables $UserName = Read-Host "Please enter the email address of the user you're assigning the number to" $PhoneNumber = Read-Host "Please enter the phone number that you are assigning to this user: +91" $extension = Read-Host "Please enter the phone extension that you are assigning to this number" #Connect to Skype for Business Server Management Shell on Server #Activate voice calling and assign a number to the user Enable-CsUser -Identity $UserName -SipAddressType Emailaddress -HostingProviderProxyFqdn 'sipfed.online.lync.com' -DomainController 'dc1.domain.com' #Enterprise Voice users only Set-CsUser -Identity sip:$UserName -LineUri tel:+91$PhoneNumber;ext=$extension -DomainController 'dc1.domain.com' Invoke-command -ComputerName adsync.domain.com -ScriptBlock { Start-AdSyncSyncCycle } Start-Sleep -s 30 Enable-CsUser : Cannot move user in enable operation. Use the Move user cmdlet instead. Set-CsUser : Cannot open database "xds" requested by the login. The login failed. + Set-CsUser -Identity sip:$UserName -LineUri tel:+61$PhoneNumber;ext=$extension - ... + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + CategoryInfo : NotSpecified: (:) [Set-CsUser], SqlConnectionException + FullyQualifiedErrorId : Microsoft.Rtc.Common.Data.SqlConnectionException,Microsoft.Rtc.Management.AD.Cmdlets.SetOcsUserCmdlet ext=$extension : The term 'ext=$extension' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. As