2011. 5. 24. 10:42
VANDYKE SecureCRT 세션의 설정파일위치:
시스템 : Windows7
C:\Users\[자신의컴퓨터이름]\AppData\Roaming\VanDyke\SecureCRT\Config\Sessions
<자동로그인 스크립트 만들기>
#$language = "VBScript"
#$interface = "1.0"
Sub main
' turn on synchronous mode so we don't miss any data
crt.Screen.Synchronous = True
' Wait for a string that looks like "login: " or "Login: "
crt.Screen.WaitForString "ogin: "
' Send your username followed by a carriage return
crt.Screen.Send "weblogic" & VbCr
' Wait for a tring that looks like "password: " or "Password: "
crt.Screen.WaitForString "assword:"
' Send your password followed by a carriage return
crt.Screen.Send "1104_bea" & VbCr
' turn off synchronous mode to restore normal input processing
crt.Screen.Synchronous = False
End Sub
'IT' 카테고리의 다른 글
IBM, 인간 두뇌 닮은 컴퓨터 칩 개발 (0) | 2011.08.19 |
---|---|
FLV파일을 AVI파일로 변환하기 (0) | 2011.07.30 |
FinePrint v6.05 (0) | 2011.05.15 |
SWF파일 플래쉬 파일 다운로드, 저장하기 - SWF Catch Viewer (무설치 포터블버전) (0) | 2011.04.01 |
DDOS 전용백신 (0) | 2011.03.07 |