프로그램상으로 한영키를 입력하고자 합니다..
wsh로 배치 프로그램 짤려고 하는데,
한영키를 변환시켜 한글키를 출력코자 합니다..
sendkeys 로 한영키 스캔코드를 입력코자 하는데.. 코드 값이 어떻케 되는지여..
아래 wsh 코드 (톰 바이러스 코드)
아래 코드는 vbs확장자로 저장하여 실행시키면 됨(98은 wsh엔진 탑재해야함)
set WshShell = WScript.CreateObject("WScript.Shell")
WshShell.Run "notepad"
function sendK(s, t, cnt)
WScript.Sleep 500
WshShell.SendKeys s
end function
for i=1 to 100
m= sendK("Your Computer Virus~", 500, 1)
m= sendK("Your Computer Need LowFormat~", 500, 1)
next
set wshshell = nothing