Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<!--- write a bat file on the fly --->
<cfSaveContent Variable="MyBatFile">
net stop "Cold Fusion Application Server"
net stop "ColdFusion Executive"
net stop "ColdFusion Graphing Server"
net stop "ColdFusion Management Service"
net stop "ColdFusion RDS"
net stop "ColdFusion Monitoring Service"
net start "Cold Fusion Application Server"
net start "ColdFusion Executive"
net start "ColdFusion Graphing Server"
net start "ColdFusion Management Service"
net start "ColdFusion RDS"
net start "ColdFusion Monitoring Service"
del temp.bat
</cfSaveContent>
<!--- create the bat file --->
<cfFile Action="WRITE" file="#ExpandPath("./temp.bat")#" output="#MyBatFile#">
<!--- run the bat file --->
<cfExecute Name="#ExpandPath("./temp.bat")#"></cfExecute>