EstablishGraphConnection.ps1
Function EstablishGraphConnection { $global:GraphEnvironment = "Global" $EnvironmentBox_SelectedIndexChanged = { out-logfile -string $environmentBox.selectedItem $global:GraphEnvironment = $environmentBox.selectedItem } $ExitButton_Click = { [void]$Form1.close() } out-logfile -string "Entered establish graph connection..." $RadioButton1_CheckedChanged = { out-logfile -string "Certifcate radio button selected..." $textBox2.enabled = $true $textBox3.enabled = $TRUE } $RadioButton2_CheckedChanged = { out-logfile -string "Interactive credentials radio button selected..." $textBox2.Enabled = $false $textBox3.enabled = $false } $Button1_Click = { if ($textBox1.text -eq "") { [System.Windows.Forms.MessageBox]::Show("TenantID is required to connnect to Microsoft Graph...", 'Warning') out-logfile -string "TenantID is required to connnect to Microsoft Graph..." $tenantIDError=$TRUE } else { $tenantIDError=$FALSE $tenantID = $textBox1.text out-logfile -string "TenantID provided in dialog..." out-logfile -string $tenantID } if (($RadioButton1.checked) -and ($tenantIDError -eq $FALSE)) { out-logfile -string "Certificate authentication radio box selected..." if (($textBox2.text -eq "") -and ($textBox3.text -eq "")) { [System.Windows.Forms.MessageBox]::Show("Certificate Thumbprint and Application ID Required...", 'Warning') out-logfile -string "Certificate Thumbprint and Application ID Required..." } elseif($textBox2.text -eq "") { [System.Windows.Forms.MessageBox]::Show("Certificate Thumbprint is required...", 'Warning') out-logfile -string "Certificate Thumbprint is required..." } elseif($textBox3.text -eq "") { [System.Windows.Forms.MessageBox]::Show("Application ID is require...", 'Warning') out-logfile -string "Application ID is require..." } else { $msGraphCertificateThumbPrint = $textBox2.Text $msGraphApplicationID = $textBox3.Text out-logfile -string $msGraphCertificateThumbPrint out-logfile -string $msGraphApplicationID out-logfile -string "We are ready to establish the certificate authentication graph request." Connect-MgGraph -tenantID $tenantID -environment $global:GraphEnvironment -certificateThumbprint $msGraphCertificateThumbPrint -ClientId $msGraphApplicationID -errorAction Stop } } elseif ($radioButton2.checked) { out-logfile -string "Interactive authentication radio box selected..." try { Connect-MgGraph -tenantID $tenantID -scopes "Directory.ReadWrite.All,Group.ReadWrite.All" -environment $global:GraphEnvironment -errorAction Stop out-logfile -string "Graph connection started successfully - close authentication form." [void]$Form1.close() } catch { $errorText=$_ out-logfile -string $errorText out-logfile -string "Unable to connect to Microsoft Graph.." [System.Windows.Forms.MessageBox]::Show("Unable to connect to Microsoft Graph.."+$errorText, 'Warning') } } } out-logfile -string "Showing the authentication form to begin user interation..." out-logfile -string "Add items ot the combo box." Add-Type -AssemblyName System.Windows.Forms . (Join-Path $PSScriptRoot 'establishgraphconnection.designer.ps1') [void]$Form1.ShowDialog() } |