}
else if (os.startsWith("Windows"))
{
- // todo Windows installation path(s)
- for (String root : new String[]
- {
- String.format("%s\\AppData\\Local", System.getProperty("user.home")),
+ for (String root : new String[] {
+ String.format("%s\\AppData\\Local", System.getProperty("user.home")), // default user path
+ "\\ProgramData", "C:\\ProgramData", // this is the default install path "for everyone"
+ System.getProperty("user.home"),
"\\Program Files", "C:\\Program Files", "\\Program Files (x86)",
"C:\\Program Files (x86)" })
{
- for (String binary : new String [] {"PyMOLWinWithConsole.bat", "PyMOLWin.exe"})
- {
- pathList.add(String.format("%s\\Schrodinger\\PyMOL2\\%s", root, binary));
- }
+ for (String path : new String [] {
+ "Schrodinger\\PyMOL2", "PyMOL" })
+ {
+ for (String binary : new String [] {"PyMOLWinWithConsole.bat"})
+ {
+ pathList.add(String.format("%s\\%s\\%s", root, path, binary));
+ }
+ }
}
-
}
else if (os.startsWith("Mac"))
{