What is the Windows 8 version of the "rundll32.exe shell32.dll,OpenAs_RunDLL {path}" command?
I am trying to get the open with dialog in Java, which works in Windows 7, but does nothing on Windows 8
...
ProcessBuilder pb = new ProcessBuilder("rundll32", "shell32.dll,OpenAs_RunDLL",
file.getAbsolutePath() );
pb.start();
...
My Googling for the command, or information that could help me put it together myself has so far been fruitless...