From 0e41122d8901a5c54610859f3b91d6b05ae56ff3 Mon Sep 17 00:00:00 2001 From: KamaleiZestri <38802353+KamaleiZestri@users.noreply.github.com> Date: Tue, 17 Feb 2026 12:31:23 -0600 Subject: [PATCH] More microwin files to delete (#4050) --- functions/public/Invoke-AutoConfigDialog.ps1 | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 functions/public/Invoke-AutoConfigDialog.ps1 diff --git a/functions/public/Invoke-AutoConfigDialog.ps1 b/functions/public/Invoke-AutoConfigDialog.ps1 deleted file mode 100644 index 8e116a23..00000000 --- a/functions/public/Invoke-AutoConfigDialog.ps1 +++ /dev/null @@ -1,20 +0,0 @@ -function Invoke-AutoConfigDialog { - - <# - .SYNOPSIS - Sets the automatic configuration file based on a specified JSON file - #> - - [System.Reflection.Assembly]::LoadWithPartialName("System.Windows.Forms") | Out-Null - $OFD = New-Object System.Windows.Forms.OpenFileDialog - $OFD.Filter = "JSON Files (*.json)|*.json" - $OFD.ShowDialog() - - if ($OFD.FileName -eq "") - { - Write-Host "No automatic config file has been selected. Continuing without one..." - return - } - - return $OFD.FileName -}