This will return the max exe file versions to the maxscript listener:
Go to your MaxScript menu and select 'new script' then copy/paste this in to it.
Then edit the paths to point to the 3dsmax.exe that you want to test.
Note the double "\" between directory levels and the commas after all but the last server paths.
I've checked it here and it does return different file versions depending which service packs have been installed.
Hope it helps...
Code:
versinfo = dotnetclass "System.Diagnostics.FileVersionInfo" maxexes = # ( "\\\\ServerName\\C$\Program Files\\Autodesk\\3ds Max Design 2012\\3dsmax.exe", "\\\\ServerName\\C$\Program Files\\Autodesk\\3ds Max Design 2012\\3dsmax.exe", "\\\\ServerName\\C$\Program Files\\Autodesk\\3ds Max Design 2012\\3dsmax.exe", "\\\\ServerName\\C$\Program Files\\Autodesk\\3ds Max Design 2012\\3dsmax.exe" ) clearListener () for m in maxexes do ( FI = versinfo.GetVersionInfo m format "Server: % Max Version: % \n" m FI.FileVersion )
Then edit the paths to point to the 3dsmax.exe that you want to test.
Note the double "\" between directory levels and the commas after all but the last server paths.
I've checked it here and it does return different file versions depending which service packs have been installed.
Hope it helps...
Comment