Jump to content

flamme-demon

Member
  • Posts

    5
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    France

About flamme-demon

flamme-demon's Achievements

0

Reputation

  1. My post I found a temporary solution time executed automation scripts. In fact I have turned off UAC in Windows 8 like this: http://www.groovypost.com/howto/windows-8-turn-off-user-account-control/ But this method does not suffice longer to launch scripts must necessarily go to the registry to put the value 0 to the registry key "EnableLUA" (HKEY_LOCAL_MACHINE \ SOFTWARE \ Microsoft \ Windows \ CurrentVersion \ Policies \ System) This method is temporary as it disables Metro applications in their entirety. At the end it is necessary to put a value to the key named above. ps: to each key change must restart the pc
  2. Hello, I do Automated testing installation with AutoIt. The concern is that even with UAC disabled, programs not running as administrator and running my installer does not work! Do you know why and how to resolve this concern? Link download spybot 2 beta : spybot2 Run (spybot2beta.exe) ; Welcome windows WinWaitActive ( "Setup - Spybot - Search & Destroy" , "Welcome to the Spybot - Search & Destroy Setup Wizard") ControlClick ( "Setup - Spybot - Search & Destroy" , "Welcome to the Spybot - Search & Destroy Setup Wizard", "TNewButton1") ; Donation windows WinWaitActive ( "Setup - Spybot - Search & Destroy" , "Donations welcome!") ControlClick ( "Setup - Spybot - Search & Destroy" , "Donations welcome!", "TNewButton2") ; Installation & usage mode windows WinWaitActive ( "Setup - Spybot - Search & Destroy" , "Installation & Usage Mode") ControlClick ( "Setup - Spybot - Search & Destroy" , "Installation & Usage Mode", "TNewButton2") ; License Agreement windows WinWaitActive ( "Setup - Spybot - Search & Destroy" , "License Agreement") ControlClick ( "Setup - Spybot - Search & Destroy" , "License Agreement", "TNewRadioButton1") Sleep(100) ControlClick ( "Setup - Spybot - Search & Destroy" , "License Agreement", "TNewButton2") ; Information windows WinWaitActive ( "Setup - Spybot - Search & Destroy" , "Information") ControlClick ( "Setup - Spybot - Search & Destroy" , "Information", "TNewButton2") ; Ready to Install windows WinWaitActive ( "Setup - Spybot - Search & Destroy" , "Ready to Install") ControlClick ( "Setup - Spybot - Search & Destroy" , "Ready to Install", "TNewButton2") ; Finish Installation windows WinWaitActive ( "Setup - Spybot - Search & Destroy" , "Completing the Spybot - Search & Destroy Setup Wizard") ControlClick ( "Setup - Spybot - Search & Destroy" , "Completing the Spybot - Search & Destroy Setup Wizard", "TNewCheckListBox1") Sleep(100) ControlClick ( "Setup - Spybot - Search & Destroy" , "Completing the Spybot - Search & Destroy Setup Wizard", "TNewButton2") French version text : Bonjour, Je fais des tests d'installation automatisé avec autoit. Le soucie c'est que même avec UAC désactivé, les programmes ne s'éxecute pas en administrateur et mon déroulement d'installation ne marche pas ! Savez vous pourquoi et comment résoudre ce soucie ?
  3. Messenger Plus! Live Version Française : Run('MsgPlusLive-450.exe') WinWaitActive("Installation", "") Send("{ENTER}") WinWaitActive("Installation", "") Send("{TAB}") Send("{SPACE}") Send("{ENTER}") WinWaitActive("Installation", "") Send("{TAB}") Send("{TAB}") Send("{TAB}") Send("{TAB}") Send("{SPACE}") Send("{ENTER}") WinWaitActive("Messenger Plus! Live", "") Send("{ENTER}") Version English : Run('MsgPlusLive-450.exe') WinWaitActive("Setup", "") Send("{ENTER}") WinWaitActive("Setup", "") Send("{TAB}") Send("{SPACE}") Send("{ENTER}") WinWaitActive("Setup", "") Send("{TAB}") Send("{TAB}") Send("{TAB}") Send("{TAB}") Send("{SPACE}") Send("{ENTER}") WinWaitActive("Messenger Plus! Live", "") Send("{ENTER}")
  4. Winamp 5.52 FR&US Version PRO Version Française Run('winamp.exe') WinWaitActive("Installer Language", "") Send("{ENTER}") WinWaitActive("Installation de Winamp", "") Send("{ENTER}") WinWaitActive("Installation de Winamp", "") Send("!C") WinWaitActive("Installation de Winamp", "") Send("!S") WinWaitActive("Installation de Winamp", "") Send("!S") WinWaitActive("Installation de Winamp", "") Send("!S") WinWaitActive("Installation de Winamp", "") Send("{TAB}") Send("{TAB}") Send("{SPACE}") Send("{TAB}") Send("{SPACE}") Send("{TAB}") Send("{SPACE}") Send("{ENTER}") WinWaitActive("Installation de Winamp", "Installation terminée") Send("{TAB}") Send("{SPACE}") Send("!F") ;Ajout de clé registre pour la version pro RegWrite("HKEY_LOCAL_MACHINE\SOFTWARE\Nullsoft\Winamp", "regname", "REG_SZ", "Utilisateur") RegWrite("HKEY_LOCAL_MACHINE\SOFTWARE\Nullsoft\Winamp", "regkey", "REG_SZ", "la clé") Version English/US Run('winamp.exe') WinWaitActive("Windows Installer", "") Send("{ENTER}") WinWaitActive("Windows Installer", "") Send("!A") WinWaitActive("Windows Installer", "") Send("!N") WinWaitActive("Windows Installer", "") Send("!N") WinWaitActive("Windows Installer", "") Send("!N") WinWaitActive("Windows Installer", "") Send("{TAB}") Send("{TAB}") Send("{SPACE}") Send("{TAB}") Send("{SPACE}") Send("{TAB}") Send("{SPACE}") Send("{ENTER}") WinWaitActive("Windows Installer", "Installation Complete") Send("{TAB}") Send("{SPACE}") Send("!F") ;Adding key register for the pro version RegWrite("HKEY_LOCAL_MACHINE\SOFTWARE\Nullsoft\Winamp", "regname", "REG_SZ", "NAME") RegWrite("HKEY_LOCAL_MACHINE\SOFTWARE\Nullsoft\Winamp", "regkey", "REG_SZ", "The KEY")
×
×
  • Create New...