Intune-Diag.ps1
<#PSScriptInfo
.VERSION 1.1 .GUID b00d1997-e4fa-4af1-86f0-49220c606238 .AUTHOR Florian Salzmann .COMPANYNAME scloud.work .COPYRIGHT 2025 Florian Salzmann. GPL-3.0 license. .TAGS PowerShell Intune Diagnostics LogAnalyzer .LICENSEURI https://github.com/FlorianSLZ/scloud/blob/main/LICENSE .PROJECTURI https://github.com/FlorianSLZ/scloud/tree/main/scripts/Intune-Diag .ICONURI https://scloud.work/wp-content/uploads/Intune-Diag.webp .EXTERNALMODULEDEPENDENCIES .REQUIREDSCRIPTS .EXTERNALSCRIPTDEPENDENCIES .RELEASENOTES 2024-09-26, 1.0: Original published version. 2025-03-14, 1.1: Added button for local analysis. #> <# .DESCRIPTION This script provides a simple UI to analyze Intune Management Extension logs. - Drag & Drop a folder or ZIP file - Click "Analyze" - The script will run the diagnostics script on the selected logs All Kudos for the logic behind the diagnostics script go to the original author: - Petri Paavola - https://github.com/petripaavola/Get-IntuneManagementExtensionDiagnostics #> ######################################################################################### # Initial ######################################################################################### $PackageName = "IntuneDiagnostic-miniUI" $ScriptFolder = "C:\ProgramData\$PackageName" $ScriptName = "Get-IntuneManagementExtensionDiagnostics.ps1" $ScriptPath = "$ScriptFolder\$ScriptName" ######################################################################################### # Download ######################################################################################### if (!(Test-Path $ScriptFolder)) { New-Item -Path $ScriptFolder -Type Directory -Force } if (!(Test-Path $ScriptPath)) { try { Save-Script Get-IntuneManagementExtensionDiagnostics -Path $ScriptFolder -Force -ErrorAction Stop } catch { Write-Host "Fehler beim Herunterladen des Skripts: $_" -ForegroundColor Red exit } } ######################################################################################### # Execution Policy prüfen und setzen (nur wenn nötig) ######################################################################################### $CurrentPolicy = Get-ExecutionPolicy -Scope Process if ($CurrentPolicy -ne "Bypass") { Set-ExecutionPolicy -ExecutionPolicy Bypass -Scope Process -Force } ######################################################################################### # UI / Function ######################################################################################### Add-Type -AssemblyName System.Windows.Forms # Create a form $form = New-Object System.Windows.Forms.Form $form.Text = "Intune Diagnostic Analyzer" $form.Size = New-Object System.Drawing.Size(420, 200) $form.StartPosition = "CenterScreen" # Create a label $label = New-Object System.Windows.Forms.Label $label.Location = New-Object System.Drawing.Point(10, 20) $label.Size = New-Object System.Drawing.Size(380, 20) $label.Text = "Drag & Drop einen Ordner oder eine ZIP-Datei:" $form.Controls.Add($label) # Create a text box $textBox = New-Object System.Windows.Forms.TextBox $textBox.Location = New-Object System.Drawing.Point(10, 50) $textBox.Size = New-Object System.Drawing.Size(380, 20) $textBox.AllowDrop = $true $form.Controls.Add($textBox) # Create a button $button = New-Object System.Windows.Forms.Button $button.Location = New-Object System.Drawing.Point(10, 80) $button.Size = New-Object System.Drawing.Size(100, 30) $button.Text = "Analysieren" $form.Controls.Add($button) # Drag-and-Drop Handler $textBox_DragEnter = { param($sender, $e) if ($e.Data.GetDataPresent([Windows.Forms.DataFormats]::FileDrop)) { $e.Effect = [Windows.Forms.DragDropEffects]::Copy } else { $e.Effect = [Windows.Forms.DragDropEffects]::None } } $textBox.add_DragEnter($textBox_DragEnter) $textBox_DragDrop = { param($sender, $e) $droppedItems = $e.Data.GetData([Windows.Forms.DataFormats]::FileDrop) if ($droppedItems.Count -eq 1 -and (Test-Path $droppedItems[0])) { $textBox.Text = $droppedItems[0] } else { [System.Windows.Forms.MessageBox]::Show("Bitte nur einen gültigen Ordner oder eine ZIP-Datei ablegen.") } } $textBox.add_DragDrop($textBox_DragDrop) # Funktion für die Analyse $AnalyzeLogs = { param($LogFiles) if ($LogFiles -match "\.zip$") { $ExtractedPath = "$env:temp\IntuneDiagnostics_$(Get-Random)" try { Expand-Archive -Path $LogFiles -DestinationPath $ExtractedPath -Force $LogFiles = $ExtractedPath } catch { [System.Windows.Forms.MessageBox]::Show("Fehler beim Entpacken: $_") return } } if (Test-Path $scriptPath) { Start-Process -FilePath "powershell.exe" -ArgumentList "-ExecutionPolicy Bypass -File `"$ScriptPath`" -LogFilesFolder `"$LogFiles`"" -NoNewWindow } else { [System.Windows.Forms.MessageBox]::Show("Das Diagnoseskript wurde nicht gefunden.") } } # Button Click Handler $button.add_Click({ if (-not [string]::IsNullOrWhiteSpace($textBox.Text) -and (Test-Path $textBox.Text)) { $AnalyzeLogs.Invoke($textBox.Text) } else { [System.Windows.Forms.MessageBox]::Show("Bitte zuerst einen gültigen Ordner oder eine ZIP-Datei auswählen.") } }) # Show the form $form.ShowDialog() | Out-Null |