Migrating uses between Skype for Business and Skype Online lately and have been migrating in batches/pilot groups.
Having gotten sick of upding the filename or file location in the powershell script, i went searching and found a nice article on how to create a open file dialog box.
https://ilovepowershell.com/2017/03/08/how-to-open-a-directory-chooser-window-with-powershell/
I'm sure there is a better/easier to complete, but this worked for me.
++++++++++++++++++++++++++++++++++++++++++++
$connect = Read-host "Connect to O365 Skype Online: [Y|N]?"
if($connect -like "Y")
{
Import-Module SkypeOnlineConnector
$userCredential = Get-Credential
$sfbSession = New-CsOnlineSession -Credential $userCredential
Import-PSSession $sfbSession
}
if($userCredential.UserName -eq $nul)
{
write-host "No Crediential Set for move" -ForegroundColor Red
}
else
{
write-host "connected user"
}
$openChooser = New-Object -TypeName System.Windows.Forms.OpenFileDialog
$openChooser.ShowDialog()
$fileimport = import-csv $openChooser.FileName
foreach($i in $fileimport)
{
write-host -ForegroundColor Cyan $i.displayname -NoNewline
write-host " is currently being migrated"
}
++++++++++++++++++++++++++++++++++++++++++++
Zoom Virtual Agent (ZVA) and SNOW Integration
Adding Integration between SNOW and Zoom Virtual Agent (ZVA), is a fairly straight forward configuration, first step is to ensure that an OA...
-
Using the Office 365 IP Address and URL Web service to pull the latest information. The website above has all the listed parameters that...
-
Page to keep updated with tools as I find them from ShoreTel systems.. ########################################### Workgroup Tool: You c...
-
Always loosing this command, and takes me a few tries to find it again for what I'm looking for. In the CSCP when looking at the assoc...