Skip to content

Instantly share code, notes, and snippets.

@CN-CODEGOD
Created September 17, 2025 01:55
Show Gist options
  • Save CN-CODEGOD/e3fc411d05bfdaa8cae27a6ff9c27d0a to your computer and use it in GitHub Desktop.
Save CN-CODEGOD/e3fc411d05bfdaa8cae27a6ff9c27d0a to your computer and use it in GitHub Desktop.
Powershell GUI
Add-Type -AssemblyName System.Windows.Forms
$FileBrowser = New-Object System.Windows.Forms.OpenFileDialog -Property @{ InitialDirectory = [Environment]::GetFolderPath('Desktop') }
$FileBrowser = New-Object System.Windows.Forms.OpenFileDialog -Property @{
#选择路径
InitialDirectory = [Environment]::GetFolderPath('Desktop')
#filter 后缀
Filter = 'Documents (*.docx)|*.docx|SpreadSheet (*.xlsx)|*.xlsx'
}
$Null = $FileBrowser.ShowDialog()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment