1' finding documentation about this scripting language and its host was NOT EASY.
2' Took me too much time. Time that I should have spent on studying scientific computing.
3' Anyway, this script invokes the UAC-dialog and gives administrator priviligies to the
4' FileSystemBrowser
5
6Set objShell = CreateObject("Shell.Application")
7Set objFolder = objShell.Namespace(WScript.ScriptFullName & "\..")
8Set objFolderItem = objFolder.ParseName("hfsexplorer.bat")
9objFolderItem.InvokeVerb "runas"
10