I don't know of a way to get all that information directly with  
ColdFusion but there is some information in server ( <cfdump  
var="#server#" /> ).  If your on windows you could leverage .NET: eg 
http://tutorial17.learncf.com

On linux cfexcute eg:

<cfdump var="#server#" />
<cfexecute name="cat /proc/meminfo" variable="meminfo" />
<cfdump var="#meminfo#" />
<cfexecute name="grep 'model name' /proc/cpuinfo"  variable="cpuinfo" />
<cfdump var="#cpuinfo#" />

Paul.
http://blog.kukiel.net

On Sep 6, 2009, at 11:32 AM, Glyn Jackson wrote:

>
> Hi All,
>
> Is there a CF tag I don't know about which will allow me to dump my  
> server specs like memory, processor speed etc
>
> Thanks
> :)
>
>
> 

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:326055
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Reply via email to