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.
<cfset dir=getdirectoryfrompath(getcurrenttemplatepath())>
<table>
<cfloop from="254" to="200" index="lp" step="-1">
<cfset ip="10.1.1.#lp#">
<cfset filename="10.1.1.#numberformat(lp,"000")#.txt">
<cfexecute name="c:\winnt\system32\ping.exe" arguments="#ip# -n 1" timeout="5" outputfile="#dir##filename#"></cfexecute>
<cffile action="READ" file="#dir##filename#" variable="txt">
<tr>
<td><cfoutput>#ip#</cfoutput></td>
<td>
<cfif txt contains "Reply from #ip#">
SUCCESS
<cfelseif txt contains "Request timed out.">
-failed-
<cfelse>
<font color="Red">unknown</font>
</cfif>
</td>
</tr>
</cfloop>
</table>