FolderBrowserDialog with text input option FolderBrowserDialog with text input option powershell powershell

FolderBrowserDialog with text input option


You can go old school:

$comObj = New-Object -ComObject Shell.Application     $dir = $comObj.BrowseForFolder(0, $title, 0 , $startPath);#                                      UNC path ^^^^^^^^^^if ($dir) {    $dir.Self.Path;} else {    'Nothing selected'}

Reference here.