Skip to content

Instantly share code, notes, and snippets.

@timcunningham
Created September 27, 2012 14:03
Show Gist options
  • Save timcunningham/3794186 to your computer and use it in GitHub Desktop.
Save timcunningham/3794186 to your computer and use it in GitHub Desktop.
List all fonts on ColdFusion Server
<cfset adminObj = createObject("Component", "cfide.adminapi.administrator")>
<cfset adminObj.login("yourpass")> <!--- change to use your CF Admin password --->
<cfset rtService = createObject("component", "cfide.adminapi.runtime")>
<cfset fonts = rtService.getFonts()>
<cfdump var="#fonts#">
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment