Hello i use this script in my kickstart file using the EDA appliance v0.87
#===============================================================================
Service Console set to 800mb
#===============================================================================
mv -f /etc/vmware/esx.conf /etc/vmware/esx.conf.old
/bin/sed -e 's|/boot/memSize = "272"|/boot/memSize = "800"|g' /etc/vmware/esx.conf.old >> /etc/vmware/esx.conf
mv -f /boot/grub/grub.conf /tmp/grub.conf.bak
/bin/sed -e 's/uppermem 277504/uppermem 818176/g' -e 's/mem=272M/mem=800M/g' /tmp/grub.conf.bak >> /boot/grub/grub.conf
mv -f /etc/vmware/hostd/config.xml /etc/vmware/hostd/config.xml.bak
/bin/sed -e 's|</config>|<hostdWarnMemInMB>750</hostdWarnMemInMB><hostdStopMemInMB>800</hostdStopMemInMB></config>|g' /etc/vmware/hostd/config.xml.bak >> /etc/vmware/hostd/config.xml
And then you have to reboot the esx server to activate it...