Jump to content

Viper999

Member
  • Posts

    115
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    United States

Posts posted by Viper999

  1. I am still stuck on the PAck image portion. I creating the build on windows xp sp3 without firewall and anti-virus. I uninstalled them as a precaution. I tried deleting the zMountDir and I don't see the msdtc.cmd file. Any help would be greatly appreciated. Can I try packing this manually so I can tell what is going wrong ? I would also like to finally create the build so I can have fun with windows seven. Great job this app has a lot of potential.

    Jim

  2. I am stuck at the packing image section. I dont have any firewall or antivirus running. It keeps telling me that NOD32 or virus program may interfere try installing waik. I install waik, it does some processing for a few seconds then I get a permission denied message. I am building this on window XP. I would like to get his completed. Is there a command line I can try to get the image packed ? Then iso created ? Thanks for the assistance.

  3. ; The COMODO Threatcast Community - Set to Join
    WinWaitActive("COMODO Internet Security - Configuration Wizard","")
    If Not WinActive("COMODO Internet Security - Configuration Wizard","") Then WinActivate("COMODO Internet Security - Configuration Wizard","")
    ControlClick( "COMODO Internet Security - Configuration Wizard", "Next >", "[ID:12324]", "Left", "1")
    ; The COMODO Safesurf Toolbar etc... - Set not to install any extras
    WinWaitActive("COMODO Internet Security - Configuration Wizard","")
    If Not WinActive("COMODO Internet Security - Configuration Wizard","") Then WinActivate("COMODO Internet Security - Configuration Wizard","")
    ControlClick( "COMODO Internet Security - Configuration Wizard", "Install COMODO SafeSurf, I agree to the above terms", "[ID:1002]", "Left", "1")
    ControlClick( "COMODO Internet Security - Configuration Wizard", "Make Ask.com my default search provider", "[ID:1148]", "Left", "1")
    ControlClick( "COMODO Internet Security - Configuration Wizard", "Make COMODO Search my homepage", "[ID:1149]", "Left", "1")
    ControlClick( "COMODO Internet Security - Configuration Wizard", "Next >", "[ID:12324]", "Left", "1")
    Sleep(2000)
    ;Comodo asks to activate over the internet
    WinWaitActive("COMODO Internet Security - Configuration Wizard","")
    If Not WinActive("COMODO Internet Security - Configuration Wizard","") Then WinActivate("COMODO Internet Security - Configuration Wizard","")
    ControlClick( "COMODO Internet Security - Configuration Wizard", "Next >", "[ID:12324]", "Left", "1")
    Sleep(22000)
    ; Scan my system for malware & Finish - Set not to scan
    WinActivate("COMODO Internet Security - Configuration Wizard","")
    ControlClick( "COMODO Internet Security - Configuration Wizard", "Scan my system for malware (Recommended)", "[ID:1002]", "Left", "1")
    ControlClick( "COMODO Internet Security - Configuration Wizard", "Finish", "[ID:12324]", "Left", "1")

    Comodo asks to activate over the internet and this seems to not be working. I made some slight adjustments , but it still does not seem to work. Any help greatly appreciated.

  4. Boy autoit scripts can be a pain in the butt to figure out. Every thing seems to work except where comodo is asking to activate over the internet and the part to scan for malware.

    Opt("TrayIconDebug", 1)
    Opt("SendKeyDelay", 200)
    Opt("WinWaitDelay", 500)
    Opt("WinTitleMatchMode", 4)

    ;--------------------------------------------------------------------------------------------------
    ; Comodo Firewall 32-Bit Installation *** WinXP & Vista ***--
    ;--------------------------------------------------------------------------------------------------

    Run(@ScriptDir & '\CIS_Setup_3.9.95478.509_XP_Vista_x32.exe');exe file must be in same location as the script
    ; Select the Language
    WinWaitActive("COMODO Internet Security","")
    If Not WinActive("COMODO Internet Security","") Then WinActivate("COMODO Internet Security","")
    ControlClick( "COMODO Internet Security", "OK", "[ID:1026]", "Left", "1")
    ; Welcome to COMODO Internet Security Installer
    WinWaitActive("COMODO Internet Security Installer","")
    If Not WinActive("COMODO Internet Security Installer","") Then WinActivate("COMODO Internet Security Installer","")
    ControlClick( "COMODO Internet Security Installer", "Next >", "[ID:12324]", "Left", "1")
    ; License Agreement
    WinWaitActive("COMODO Internet Security Installer","")
    If Not WinActive("COMODO Internet Security Installer","") Then WinActivate("COMODO Internet Security Installer","")
    ControlClick( "COMODO Internet Security Installer", "I accept", "[ID:12324]", "Left", "1")
    ; Choose destination folder
    WinWaitActive("COMODO Internet Security Installer","")
    If Not WinActive("COMODO Internet Security Installer","") Then WinActivate("COMODO Internet Security Installer","")
    ControlClick( "COMODO Internet Security Installer", "Next >", "[ID:12324]", "Left", "1")
    ; Welcome to COMODO Internet Security Configuration Wizard
    WinWaitActive("COMODO Internet Security - Configuration Wizard","")
    If Not WinActive("COMODO Internet Security - Configuration Wizard","") Then WinActivate("COMODO Internet Security - Configuration Wizard","")
    ControlClick( "COMODO Internet Security - Configuration Wizard", "Next >", "[ID:12324]", "Left", "1")
    ; Install Anti-Virus or Firewall - Set to Install Both
    WinWaitActive("COMODO Internet Security - Configuration Wizard","")
    If Not WinActive("COMODO Internet Security - Configuration Wizard","") Then WinActivate("COMODO Internet Security - Configuration Wizard","")
    ControlClick( "COMODO Internet Security - Configuration Wizard", "Next >", "[ID:1003]", "Left", "1")
    WinWaitActive("COMODO Internet Security - Configuration Wizard","")
    If Not WinActive("COMODO Internet Security - Configuration Wizard","") Then WinActivate("COMODO Internet Security - Configuration Wizard","")
    ControlClick( "COMODO Internet Security - Configuration Wizard", "Next >", "[ID:12324]", "Left", "1")
    Sleep(3000)
    ; The COMODO Threatcast Community - Set to Join
    WinWaitActive("COMODO Internet Security - Configuration Wizard","")
    If Not WinActive("COMODO Internet Security - Configuration Wizard","") Then WinActivate("COMODO Internet Security - Configuration Wizard","")
    ControlClick( "COMODO Internet Security - Configuration Wizard", "Next >", "[ID:12324]", "Left", "1")
    ; The COMODO Safesurf Toolbar etc... - Set not to install any extras
    WinWaitActive("COMODO Internet Security - Configuration Wizard","")
    If Not WinActive("COMODO Internet Security - Configuration Wizard","") Then WinActivate("COMODO Internet Security - Configuration Wizard","")
    ControlClick( "COMODO Internet Security - Configuration Wizard", "Install COMODO SafeSurf, I agree to the above terms", "[ID:1002]", "Left", "1")
    ControlClick( "COMODO Internet Security - Configuration Wizard", "Make Ask.com my default search provider", "[ID:1148]", "Left", "1")
    ControlClick( "COMODO Internet Security - Configuration Wizard", "Make COMODO Search my homepage", "[ID:1149]", "Left", "1")
    ControlClick( "COMODO Internet Security - Configuration Wizard", "Next >", "[ID:12324]", "Left", "1")
    Sleep(2000)
    ;Comodo asks to activate over the internet
    WinWaitActive("COMODO Internet Security - Configuration Wizard","")
    If Not WinActive("COMODO Internet Security - Configuration Wizard","") Then WinActivate("COMODO Internet Security - Configuration Wizard","")
    ControlClick( "COMODO Internet Security - Configuration Wizard", "Next >", "[ID:12324]", "Left", "1")
    ; Scan my system for malware & Finish - Set not to scan
    WinActivate("COMODO Internet Security - Configuration Wizard","")
    ControlClick( "COMODO Internet Security - Configuration Wizard", "Scan my system for malware (Recommended)", "[ID:1002]", "Left", "1")
    ControlClick( "COMODO Internet Security - Configuration Wizard", "Finish", "[ID:12324]", "Left", "1")
    ; Clean PC
    WinWaitActive("Clean PC?","")
    If Not WinActive("Clean PC?","") Then WinActivate("Clean PC?","")
    ControlClick( "Clean PC?", "&Yes", "[ID:6]", "Left", "1")
    ; Restart the computer - Set not to Restart
    WinWaitActive("COMODO Internet Security Installer","")
    If Not WinActive("COMODO Internet Security Installer","") Then WinActivate("COMODO Internet Security Installer","")
    ControlClick( "COMODO Internet Security Installer", "Restart the computer", "[ID:1020]", "Left", "1")
    ControlClick( "COMODO Internet Security Installer", "Finish", "[ID:12325]", "Left", "1")
    TrayTip('Comodo Firewall 32-Bit Installation', 'This Dirty Deed Has Been Completed', 5)
    Sleep(2000)
    Exit

    The part that just stops is here: once I click past these two prompts the rest seems to work fine.

    ;Comodo asks to activate over the internet
    WinWaitActive("COMODO Internet Security - Configuration Wizard","")
    If Not WinActive("COMODO Internet Security - Configuration Wizard","") Then WinActivate("COMODO Internet Security - Configuration Wizard","")
    ControlClick( "COMODO Internet Security - Configuration Wizard", "Next >", "[ID:12324]", "Left", "1")
    ; Scan my system for malware & Finish - Set not to scan
    WinActivate("COMODO Internet Security - Configuration Wizard","")
    ControlClick( "COMODO Internet Security - Configuration Wizard", "Scan my system for malware (Recommended)", "[ID:1002]", "Left", "1")
    ControlClick( "COMODO Internet Security - Configuration Wizard", "Finish", "[ID:12324]", "Left", "1")

  5. First let me say thanks for the work on this as I like avira antivirus andonly need to use the firewall. I have been having a problem where I see a screen with both tryin this as a addon as well and runonce with .exe in that the application install stops at comodo internet security configuration wizard - email address ----------------- I hit next then finish and its is done. Any help with this or can you provide the autoit script ? Thanks in advance for any help with this as my unattended is almost perfect :rolleyes:

  6. Need help with getting a autoit script so I can install this silently.

    Here is what I have tried as well as other with the help of window info tool:

    WinWait("Setup - Online Armor","Click Next to continue, or Cancel to exit Setup")

    If Not WinActive("Setup - Online Armor","Click Next to continue, or Cancel to exit Setup") Then WinActivate("Setup - Online Armor","TClick Next to continue, or Cancel to exit Setup")

    WinWaitActive("Setup - Online Armor","Click Next to continue, or Cancel to exit Setup")

    ControlClick("Setup - Online Armor", "", "[CLASS:TNewButton; INSTANCE:1")

    Here is the link to download Online Armor free

    http://www.download.com/Online-Armor-Perso...4-10426782.html

    Any help would be greatly appreciated.

  7. I have been trying to find documentation on driver integration. I know that you can integrate drivers by modifying the following files dosnet.inf, tstsetup.sif, and hivesft.inf.

    You modify the [Directories], [Files], and[OptionalSrcDirs] sections of dosnet.inf

    You modify the [sourceDiskNames.x86], WinntDirectories],[sourceDiskFiles.x86] sections of the txtsetup.sif

    Lasty you modify the hivesft.inf so it know about the directories your drivers live

    All the information needed to update these files is obtained by reading driver inf files.

    What I am looking for are some documents some where that show this. I have not been able to find anything on the net.

    Thanks in advance for any help you can provide.

  8. Hello, I have utilized this utility from autoit and it crashes on me quite often. I would like to know if it would be possible to provide the code for this so I can code it in autoit so I dont have to call a seperate app. What did you write this in? I wonder if it can be migrated to vb or autoit?

    Thanks,

  9. I tested it on a few drivers and they integrated correctly as far aas I can tell. I need to do an install to make sure they install properly. Thank you for your efforts to this point. I am creating an autoit app that creates an unattended cd and am going to use your app to integrate the drivers. Awesome so far I will let you know what I find.

  10. What i was hoping for was an the ability for your utility to read the .inf file and take all the files necessary for a driver to work and then add entries in the textsetup.sif and dossetup.inf. This way the drivers would be truley integrated in windows source instead of method 1 or method 2 for driver detection.

  11. would it be possible to add the functionality to then modify the txtsetup.sif and dosnet.inf appropriately. let say you also move them to i386\custdrv directory as well with those added adjustments to the above mentioned files. This way you compess drivers and add them to windows source. Two files that may need to keep in mind is the sfcfiles.dll and syssetup.dll.

  12. I would like to integrate drivers using the method that nlite uses, but I cant as I work for a corporation. I dont want to create a tool, but am willing to integrate the drivers manually. Can someone point me to a tutorial on how to manually integrate drivers by modifying the txtsetut.sif as well as the other files so the drivers are totally integrated. I dont want to use moethod 1 or two, but actually want the drivers integrated and part of the i386 dir. Any help would be greatly appreciate.

    Thanks,

  13. I would like to take drivers and truley integrate them into window. This means that I would not like to have windows search a directory path. I would like to place the drivers where need ie in the i386 dir and have them detected during setup. I would like the steps necessary to accomplish this. Meaning what files need to be edited to get this done like txtsetup.inf and such. Can you make your own drivers.cab and have windows act upon this ? I really appreciate any response to this. I know this would be a tedious process, but i wonly want to integrate those drivers in which I need. Thank you in advance for any directions.

×
×
  • Create New...