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.
oWSH = CREATEOBJECT("wscript.shell")
oWSH.AppActivate("Notepad") && assumes Notepad is already running
oWSH.SendKeys("Hello world")
oWSH.SendKeys("{PGUP}%fSMy File.TXT{ENTER}")
&& %f is ALT+f, so this will execute the File Save As command and
&& enter a filename
In german Windows, this would need to be oWSH.AppActivate("Unbenannt - Editor"), as that would be the caption of the notepad title bar of a new and yet unsaved file.