How can I display the Windows Explorer "file properties page" via scripting code?
I have search with Google and have found no answers.
Something like... This code opens a Windows Explorer folder to path and selects file.
var path=(path to folder/file)
var str= '"' + path+ '"';
var objShell = new ActiveXObject("WScript.shell");
objShell.Run('explorer.exe /n, /select, ' + str);
objShell = "";
A file context menu has a "Properties" option that opens a Properties dialog page for the file. How can this dialog be opened via script once the file is selected?
I found this third party command-line utility to open the standard Windows Properties sheet by passing the file/folder/drive path to it,but it requires .net 4.5! :( GeekDrop-Props