hot chip
06-08-2009, 01:55 AM
Hi Guys,
at 3dsmax2010 have autodesk disable the Bitmap Pager and the autolimitmode is on. That is good for 32Bit OS and Large Scene, but for 64Bit OS can you optimize 3dsmax. Becareful, this script is for 64Bit OS and a lot of RAM. When you render, can you work at the same time in Photoshop, or write here in the Forum this tread.
Install....
Create a Name.ms File (for example ram_optimizer.ms) and copy it to your 3dsmax installation folder subfolder Scripts\Startup. Everytime you load up 3ds now it will
- disable the BitmapPager
- set the memory limit 90% of RAM
- no Padding RAM
- memory Limit Auto Mode = off
IBitmapPager.enabled=false
IBitmapPager.memoryLimit_percent = 0.9
IBitmapPager.memoryLimitAutoMode = false
IBitmapPager.memoryPadding_percent = 0
print "************************************************** ****************** "
print "RAM Optimizer V1.0 by thorsten Hartmann 06.07.2009"
print "************************************************** ****************** "
if IBitmapPager.enabled == true then test = "Bitmap Pager on" else test="Bitmap Pager off"
print test
if IBitmapPager.memoryLimitAutoMode == true then test = "Memory Limit AutoMode on" else test="Memory Limit AutoMode off"
print test
test = "Memory Limit: " + (IBitmapPager.memoryLimit_percent*100) as string + "% from RAM"
print test
test = "Memory Limit: " + (IBitmapPager.memoryLimit_megabytes) as string + " max. RAM"
print test
test = "Memory used for Pager: " + IBitmapPager.memoryUsedForPager_megabytes as string + " MB"
print test
test = "Memory Total for Pager: " + IBitmapPager.memoryTotalForPager_megabytes as string + " MB"
print test
test = "Pfad: " + IBitmapPager.pageFilePath
print test
test = "Memory Padding: " + (IBitmapPager.memoryPadding_percent*100) as string + "% from RAM"
print test
test = "Memory Padding: " + (IBitmapPager.memoryPadding_megabytes) as string + " RAM"
print test
test = "available Memory Padding: " + (IBitmapPager.memoryAvailablePadded_megabytes) as string + " RAM"
print test
print "************************************************** ****************** "
print "is optimize for 64Bit OS System and a lot of RAM."
print "************************************************** ****************** "
have fun
mfg
hot chip
at 3dsmax2010 have autodesk disable the Bitmap Pager and the autolimitmode is on. That is good for 32Bit OS and Large Scene, but for 64Bit OS can you optimize 3dsmax. Becareful, this script is for 64Bit OS and a lot of RAM. When you render, can you work at the same time in Photoshop, or write here in the Forum this tread.
Install....
Create a Name.ms File (for example ram_optimizer.ms) and copy it to your 3dsmax installation folder subfolder Scripts\Startup. Everytime you load up 3ds now it will
- disable the BitmapPager
- set the memory limit 90% of RAM
- no Padding RAM
- memory Limit Auto Mode = off
IBitmapPager.enabled=false
IBitmapPager.memoryLimit_percent = 0.9
IBitmapPager.memoryLimitAutoMode = false
IBitmapPager.memoryPadding_percent = 0
print "************************************************** ****************** "
print "RAM Optimizer V1.0 by thorsten Hartmann 06.07.2009"
print "************************************************** ****************** "
if IBitmapPager.enabled == true then test = "Bitmap Pager on" else test="Bitmap Pager off"
print test
if IBitmapPager.memoryLimitAutoMode == true then test = "Memory Limit AutoMode on" else test="Memory Limit AutoMode off"
print test
test = "Memory Limit: " + (IBitmapPager.memoryLimit_percent*100) as string + "% from RAM"
print test
test = "Memory Limit: " + (IBitmapPager.memoryLimit_megabytes) as string + " max. RAM"
print test
test = "Memory used for Pager: " + IBitmapPager.memoryUsedForPager_megabytes as string + " MB"
print test
test = "Memory Total for Pager: " + IBitmapPager.memoryTotalForPager_megabytes as string + " MB"
print test
test = "Pfad: " + IBitmapPager.pageFilePath
print test
test = "Memory Padding: " + (IBitmapPager.memoryPadding_percent*100) as string + "% from RAM"
print test
test = "Memory Padding: " + (IBitmapPager.memoryPadding_megabytes) as string + " RAM"
print test
test = "available Memory Padding: " + (IBitmapPager.memoryAvailablePadded_megabytes) as string + " RAM"
print test
print "************************************************** ****************** "
print "is optimize for 64Bit OS System and a lot of RAM."
print "************************************************** ****************** "
have fun
mfg
hot chip