사용자 이름과 비밀번호가 필요한 Windows 앱 자동 시작

사용자 이름과 비밀번호가 필요한 Windows 앱 자동 시작

우리 회사에는 (GUI가 포함된) 레거시 애플리케이션이 있습니다. 수동으로 시작하려면 사용자와 비밀번호를 입력해야 하기 때문에 재부팅 후 자동으로 시작할 수 없습니다. 우리는 이를 수행하기 위한 프로그램이 필요합니다. 그런 프로그램이 있나요?(프로그램을 시작하고 사용자와 비밀번호를 입력합니다.) 우리는 윈도우 서버 2008을 사용하고 있습니다.

답변1

VBScript를 사용하여 이 작업을 잠재적으로 수행할 수 있습니다. SendKeys스크립트를 통해 시작된 프로그램에 거의 모든 종류의 키보드 입력을 보낼 수 있는 명령이 있다는 것을 알고 있습니다 .

여기 그것을 사용하는 한 가지 방법이 있습니다:

set WshShell = WScript.CreateObject("WScript.Shell") 

WshShell.run "runas /user:domain\user %comspec%" 'Open command prompt  
WScript.Sleep 1000 
WshShell.SendKeys "password" 'send password   
WshShell.SendKeys "{ENTER}"    
WScript.Sleep 1000 

'Open IE 
WshShell.SendKeys Chr(34) + "C:\PROGRAM FILES\INTERNET EXPLORER\IEXPLORE.EXE"_
  + Chr(34) 
WshShell.SendKeys "{ENTER}" 

WshShell.SendKeys "exit"  'Close command prompt 
WshShell.SendKeys "{ENTER}" 
WScript.Sleep 1000 

WshShell.SendKeys "{TAB}" 
WshShell.SendKeys "http://www.microsoft.com" 'Send internet page to open to IE 
WshShell.SendKeys "{ENTER}" 

또 다른 활용법이 있어요없이 WshShell:

Dim ProcID As Integer
' Start the Calculator application, and store the process id.
ProcID = Shell("CALC.EXE", AppWinStyle.NormalFocus)
' Activate the Calculator application.
AppActivate(ProcID)
' Send the keystrokes to the Calculator application.
My.Computer.Keyboard.SendKeys("22", True)
My.Computer.Keyboard.SendKeys("*", True)
My.Computer.Keyboard.SendKeys("44", True)
My.Computer.Keyboard.SendKeys("=", True)
' The result is 22 * 44 = 968.

답변2

Windows 버전에 따라 Windows '작업 스케줄러' 또는 '예약된 작업'을 사용하는 것이 좋습니다. 사용자 개입 없이 프로그램을 시작하거나 스크립트를 시작하는 데 적합합니다. 시간이나 재부팅 후와 같은 다양한 '트리거' 또는 '이벤트'를 기반으로 작업이 시작되도록 구성할 수 있습니다. 로그온하지 않고도 이 작업을 수행할 수 있습니다. 여기에는지도 시간시스템 재부팅 후 프로그램을 시작하기 위한 작업을 설정하는 방법을 보여줍니다. 몇 가지 매개 변수를 변경해야 할 수도 있지만 사용하기 쉽습니다.

관련 정보