How To Make .vbs Files Automatically Input Text!

Опубликовано: 10 Октябрь 2024
на канале: OTFT
377
4

Welcome to: How to make .vbs files automatically input text!
WARNING: I use Windows 10. This may not work if you use 8.1 and below.

Some codes to copy/paste:
Set WshShell = WScript.CreateObject("WScript.Shell")
WshShell.Run "notepad"
WScript.sleep 100
WshShell.AppActivate "Notepad"
WshShell.SendKeys "Hello!"

Raw SendKeys:
WshShell.SendKeys ""

#windows10 #vbsHowTo