document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. #Region ;**** Directives created by AutoIt3Wrapper_GUI ****
  2. #AutoIt3Wrapper_UseUpx=y
  3. #EndRegion ;**** Directives created by AutoIt3Wrapper_GUI ****
  4. #NoTrayIcon
  5. #include <Misc.au3>
  6.  
  7. _Singleton(@ScriptName)
  8.  
  9. While True
  10.     If WinExists("Host Key Verification") Then
  11.         ControlClick(WinGetHandle("Host Key Verification"), "Accept and &Save", "[CLASS:Button]", "left", 1)
  12.     EndIf
  13.  
  14.     If WinExists("User Authentication") Then
  15.         ControlClick(WinGetHandle("User Authentication"), "Cancel", "[CLASSNN:Button3]", "left", 1)
  16.     EndIf
  17.  
  18.     Sleep(100)
  19. WEnd
');