Created
September 27, 2012 14:03
-
-
Save timcunningham/3794186 to your computer and use it in GitHub Desktop.
List all fonts on ColdFusion Server
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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