Jump to content

cyber77

Member
  • Posts

    18
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Pakistan

Posts posted by cyber77

  1. You can use Regshot_Unicode . It takes a snapshot of the registry before you install software. And it also takes a snapshot after the software is installed. You can then compare the results. It will tell you exactly what registry key was changed or added. It will also Save the changed key for you as a "*.reg" file. Very convenient.

    It also supports many languages..

    Chris

    thnks chris this is very helpful to me.

  2. i want to make explode . xplode is done coreectly. all software are also installed correctly. but i want to change the position of xplode. means my explode is installed in left side but its not look better i want to set the position in right side so how to do this. and how to remove the statusbar of winntbbu.dll? thnks.

    no body know here?

  3. i want to make explode . xplode is done coreectly. all software are also installed correctly. but i want to change the position of xplode. means my explode is installed in left side but its not look better i want to set the position in right side so how to do this. and how to remove the statusbar of winntbbu.dll? thnks.

  4. how to find the key from registry editior.. suppose i have a software like total video converter, power iso etc. its all have to insert serial key. but i want to make them as silent install so i find to reg. key from registry editor. so how to find?for find the registry i use software name is "Registry Crawler" its shows many keys but i dont know which file i want to export.thnks.

  5. want to make autoit script for adobedreamweaver cs3.. all scriting r complete for installation but when installation complete i want to lunch adobe dreamweaver cs3.exe from programfile.

    so which control i want to use? run() or controlclick().

    thnks. script is here for install abobedreamweaver cs3.

    #cs ----------------------------------------------------------------------------

    AutoIt Version: 3.3.0.0

    Author: myName

    Script Function:

    Template AutoIt script.

    #ce ----------------------------------------------------------------------------

    ; Script Start - Add your code below here

    #region --- ScriptWriter generated code Start ---

    Opt("WinWaitDelay",100)

    Opt("WinTitleMatchMode",4)

    Opt("WinDetectHiddenText",1)

    Opt("MouseCoordMode",0)

    Run('Setup.exe')

    WinWait("Adobe Dreamweaver CS3 Installer: License Agreement","")

    If Not WinActive("Adobe Dreamweaver CS3 Installer: License Agreement","") Then WinActivate("Adobe Dreamweaver CS3 Installer: License Agreement","")

    WinWaitActive("Adobe Dreamweaver CS3 Installer: License Agreement","")

    MouseMove(318,294)

    MouseDown("left")

    MouseUp("left")

    Send("{TAB}{TAB}{TAB}{TAB}{TAB}{TAB}{TAB}{TAB}{TAB}{TAB}{TAB}{TAB}{TAB}{ENTER}")

    WinWait("Adobe Dreamweaver CS3 Installer: Installation Location","")

    If Not WinActive("Adobe Dreamweaver CS3 Installer: Installation Location","") Then WinActivate("Adobe Dreamweaver CS3 Installer: Installation Location","")

    WinWaitActive("Adobe Dreamweaver CS3 Installer: Installation Location","")

    Send("{TAB}{TAB}{TAB}{ENTER}")

    WinWait("Adobe Dreamweaver CS3 Installer: Summary","")

    If Not WinActive("Adobe Dreamweaver CS3 Installer: Summary","") Then WinActivate("Adobe Dreamweaver CS3 Installer: Summary","")

    WinWaitActive("Adobe Dreamweaver CS3 Installer: Summary","")

    Send("{TAB}{TAB}{TAB}{ENTER}")

    WinWait("Adobe Dreamweaver CS3 Installer: Install","")

    If Not WinActive("Adobe Dreamweaver CS3 Installer: Install","") Then WinActivate("Adobe Dreamweaver CS3 Installer: Install","")

    WinWaitActive("Adobe Dreamweaver CS3 Installer: Install","")

    Send("{TAB}")

    WinWait("Adobe Dreamweaver CS3 Installer: Done","")

    If Not WinActive("Adobe Dreamweaver CS3 Installer: Done","") Then WinActivate("Adobe Dreamweaver CS3 Installer: Done","")

    WinWaitActive("Adobe Dreamweaver CS3 Installer: Done","")

    MouseMove(521,519)

    MouseDown("left")

    MouseUp("left")

    this script is for installing dreamweaver cs3. but after this complete i want to add code for lunch dreamweaver cs3 from programmefile so which coding i want to use for lunch dreamweaver cs3 from programmefile.

  6. Here is an example of entering a serial key into a registration window. The GUI code is just for the example to receive the data sent so the only code of your interest is from the WinWait() function to the Exit keyword. The comments should help you understand as you stated you know the basics of making aa AutoIt3 script. :)


    _Show_Example_Registration_Window()

    ; wait for the window to appear
    WinWait('Enter your registration key')

    ; this is an array of 6 elements ($key[6])
    ; the 1st element ([5,) in this example is used as a element count of the serial values
    ; the other 5 elements contain the serial
    Global $key[6] = [5, 'abcd', 'efgh', 'ijkl', 'mnop', 'qrst']

    ; this loops 5 times and the value of $i will step from 1 to 5 (i.e 1,2,3,4,5)
    ; $key[0] returns the value of the 1st element which is 5
    For $i = 1 To $key[0]
    ; this sends the X element of the array to EditX where X is the value of $i
    ControlSetText('Enter your registration key', '', 'Edit' & $i, $key[$i])
    Next

    ; optional sleep just to show what has been achieved
    Sleep(3000)

    ; click the next button to proceed
    ControlClick('Enter your registration key', '', '&Next')

    Exit

    ; these functions are just for this example and not intended for other use

    Func _Show_Example_Registration_Window()
    Opt('GuiOnEventMode', True)
    GUICreate('Enter your registration key', 350, 80)
    GUICtrlCreateInput('', 50, 20, 45)
    GUICtrlCreateInput('', 100, 20, 45)
    GUICtrlCreateInput('', 150, 20, 45)
    GUICtrlCreateInput('', 200, 20, 45)
    GUICtrlCreateInput('', 250, 20, 45)
    GUICtrlCreateButton('&Next', 300, 45)
    GUICtrlSetOnEvent(Default, '_Next')
    GUISetState()
    EndFunc

    Func _Next()
    GUIDelete()
    EndFunc

    thnks mate. lets try it now. and how to build .exe. i know how to build i alredy bulded a simple setup by au3 recorder but when i tried to install via wpi its not installed.. at that time only run script in systemtray software does not installed. any idea about this.

  7. i m new in this forums. i have basic knowledge of auto it v3 script. but i saw in some software whch is create by auto it. i know without serial keys how to make automatic softare install but i dont know how to make automatic software install which have serial key. like i want to make install software with autoit is adobephotoshop cs4 so how to make this installation with auto it?

    You can do it without auto it look here

    also

    The Creative Suite 4 Deployment Toolkit is an efficient, easy-to-use, and reliable application that configures Adobe Creative Suite 4's installers for

    silent deployment. Its Adobe AIR-based (Adobe Integrated Runtime) interface allows you to create a remotely deployable install package without laboriously hand-editing configuration files.

    Creative Suite 4 Deployment Toolkit

    no bro. adobecs4 is just for example main purpose is learn about autoit and i want to make my own automatic install software. i think for make this type of software install use micro generator m i right. if u have any tutorial about it?

  8. i m new in this forums. i have basic knowledge of auto it v3 script. but i saw in some software whch is create by auto it. i know without serial keys how to make automatic softare install but i dont know how to make automatic software install which have serial key. like i want to make install software with autoit is adobephotoshop cs4 so how to make this installation with auto it?

  9. 0x8E means KERNEL_MODE_EXCEPTION_NOT_HANDLED, and the second param (0xc0000005) means it was a memory access violation. How was this unattended install created? What was slipstreamed (drivers, apps)? What features were removed? Etc.

    i slipstrem universal drivers. and some apps like vlc, everest, etc. means i need ur suggetion in which error my slipstreming or in my own p.c. hardware.

    because i see many times when like this blue screen error it is hardware error. thnks

×
×
  • Create New...