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.
SHELL "REG QUERY HKLM\SYSTEM\CurrentControlSet\Control\ComputerName\ComputerName /v ComputerName > computername.txt"
OPEN "computername.txt" FOR INPUT AS #1
GET #1, regPath$
GET #1, regValue$, regType$, regData$
CLOSE #1
PRINT "The name of this computer is" + regData$