WScript.Sleep(300);

typeString("Hello World!");


function typeString(stringToType){
	var wsh = WScript.CreateObject("WScript.Shell");
	for(var i = 0; i < stringToType.length; i++){
		wsh.SendKeys("{" + stringToType.substr(i, 1) + "}");
		WScript.Sleep(100);
	}

}



