What is a Windows account?

How do I know which Windows Railo user account is running Windows 2008 r2?

+4
source share
1 answer

I believe that you can use the System properties, the same as in ACF:

 <cfscript> prop = createObject("java", "java.lang.System").getProperties(); WriteDump( var=prop["user.name"], label="User.Name"); WriteDump( var=prop, label="All Properties" ); </cfscript> 
+7
source

All Articles