The following instructions will create a spreadsheet listing the users on BES, which can easily be imported into the BlackBerry Cloud Service (BBCS) interface.
Before beginning, create a new .csv file, to be used laster to import/create users within your RIM BBCS Portal, using the following columns and save using the .csv file extension:
Note: The Group Names column does not require an entry
“Email Address”,”Group Names”
-
Download and install the latest Microsoft Transition Tool
- Run the Migration Command Shell
-
Copy the following script into notepad and save it as a .ps1 file:$cred = Get-Credential
$besid = (Get-MSOnlineSubscription -Credential $cred | where {$_.SubscriptionServiceTypes -eq “BlackBerry”}).SubscriptionId
$besusers =@()
$mosusers = Get-MSOnlineUser -Enabled -credential $cred
foreach ($mosuser in $mosusers) {
if ($user.SubscriptionIds.contains($bbsid)) {$besusers += $mosuser}}
$besusers | select Identity | Export-Csv “BPOSBESUsers.csv” -NoTypeInformation
NOTE: You may need to run PowerShell -> Set-ExecutionPolicy Unrestricted [Y] to allow this remote script to run!
-
Browse to where you saved the *.ps1 file and run the script
- When prompted use a BPOS Admin account
- Once run, look to the directory where the .ps1 file was run and you will have the list named BPOSBESUsers.csv
- Copy the results of the output and add them to the previously created .csv file, under the Email Address column (NOTE: The “Group Names” column does not require an entry!)
Example Final .csv File
“Email Address”,”Group Names”
- Once completed, you now have a .csv file that can be used to import/create BBCS enabled users
Discover more from Loryan Strant, Microsoft 365 MVP
Subscribe to get the latest posts sent to your email.
Reblogged this on Ryanph and commented:
Great information on how to get a list of BPOS BES users, which can be exported from BPOS and imported into RIMs BlackBerry Business Cloud Services (BBCS) Portal.