VBS Enter Script
- 7 sene önce, Burak Çalışkan tarafından yazılmıştır.
- VBS Enter Script için yorumlar kapalı
- Windows
‘ Notepad Çalıştır
Set WshShell = WScript.CreateObject(“WScript.Shell”)
WshShell.Run “notepad.exe”, 9
‘ Notepad çalışmasını bekle
WScript.Sleep 500
‘ helloworld yazdır.
WshShell.SendKeys “Hello World!”
WshShell.SendKeys “{ENTER}”
‘ tarih yazdır.
WshShell.SendKeys “{F5}”