Skip to content

Instantly share code, notes, and snippets.

@lazywinadmin
Created February 8, 2015 17:55
Show Gist options
  • Save lazywinadmin/8e6234cf1c0f7f806032 to your computer and use it in GitHub Desktop.
Save lazywinadmin/8e6234cf1c0f7f806032 to your computer and use it in GitHub Desktop.
function Show-OpenFileDialog
{
param
($Title = 'Pick a File', $Filter = 'All|*.*|PowerShell|*.ps1')
$type = 'Microsoft.Win32.OpenFileDialog'
$dialog = New-Object -TypeName $type
$dialog.Title = $Title
$dialog.Filter = $Filter
if ($dialog.ShowDialog() -eq $true)
{
$dialog.FileName
}
else
{
Write-Warning 'Cancelled'
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment