Jump to content

Error... Script compiled with AutoIT 3.2.2.0


 Share

Recommended Posts

Hi,

Please help.. I am getting one system error. Script is showing error at any stage. Error is of some memory related.

Same script is working fine with old version of autoit 3.1

Error screen shot attached..

Thx

rahul

Rather than posting a picture of the error, how about posting something useful like the script that's generating the error?
Auto3Lib: A library of over 1200 functions for AutoIt
Link to comment
Share on other sites

  • Developers

Title: "SAV and Hotfix scan: AutoIt3.exe" ?

Doesn't sound like an AUT2EXE.EXE problem to me .... are you sure you are compiling ?

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

Link to comment
Share on other sites

  • 4 weeks later...

HI Script attached....

#include <GUIConstants.au3>
#Include <GuiListView.au3>
#include <File.au3>
#include <Math.au3>
#Include <GuiTreeView.au3>

Opt ("MustDeclareVars", 1)

Dim $ListTxt, $LogFilePath, $NavGUI, $PCList, $Context_menu, $ScanContext, $ScanSelect, $Finaldiaplay, $Open, $Scan, $Exit, $LogCheckBox, $LogCheckBox2
Dim $LogFileLoc, $logButton, $LogFile, $LogFileDiffrent, $Status, $Count_Live, $fileOpen, $i1, $FileRead, $msg, $CountWS, $Count, $PingWS, $var, $AutoProtectvalue
Dim $HotFixKey, $year, $month, $date, $rev, $file, $FileCopy, $TreeViewItem, $HotFixTree, $Y, $RegVal, $SAVTree, $HotfixTop, $Context_Tree, $Context_Tree_Copy
Dim $Context_Tree_Delete, $Txt, $Context_Tree_Collaps, $h_item, $setTxt, $MathVal, $RevNav, $FileCSVOpen, $WriteCSV, $AutoDisable, $result, $a, $b, $c, $sYY, $sMM, $sDD, $iYear, $iMonth, $iDay, $reg
Global Const $MIM_APPLYTOSUBMENUS   = 0x80000000
Global Const $MIM_BACKGROUND        = 0x00000002

$NavGUI = GUICreate("SAV and Hotfix Scan", 600,600,-1,-1)



$PCList = GUICtrlCreateListView("PC list to Scan",-1,-1,200,470,$WS_TABSTOP+$WS_BORDER)
_GUICtrlListViewSetColumnWidth ($PCList, 0, 196)
$Context_menu = GUICtrlCreateContextMenu($PCList)
$ScanContext = GUICtrlCreateMenuitem("Scan All",$Context_menu)
        GUICtrlCreateMenuitem("",$Context_menu)
$ScanSelect = GUICtrlCreateMenuitem("Scan Selected",$Context_menu)

;***********************Tree view*******************
$Finaldiaplay = GUICtrlCreateTreeView(204,-1,395,470,BitOr($TVS_HASBUTTONS, $TVS_HASLINES, $TVS_LINESATROOT, $TVS_DISABLEDRAGDROP, $TVS_SHOWSELALWAYS), $WS_EX_CLIENTEDGE)


$Context_Tree = GUICtrlCreateContextMenu($Finaldiaplay)
$Context_Tree_Copy = GUICtrlCreateMenuitem("Copy",$Context_Tree)
    GUICtrlCreateMenuitem("",$Context_Tree)
$Context_Tree_Collaps = GUICtrlCreateMenuitem("Collaps All",$Context_Tree)
    GUICtrlCreateMenuitem("",$Context_Tree)
$Context_Tree_Delete = GUICtrlCreateMenuitem("Delete Selected",$Context_Tree)



$Open = GUICtrlCreateButton("Open",14,474,40,22,BitOr(0x0001,0x8000))
$Scan = GUICtrlCreateButton("Scan",78,474,40,22,BitOr(0x0001,0x8000))
$Exit = GUICtrlCreateButton("Exit",140,474,40,22,BitOr(0x0001,0x8000))
$LogCheckBox = GUICtrlCreateCheckbox("Overwrite log file.",250,476,100,22,$BS_AUTORADIOBUTTON)
GUICtrlSetState($LogCheckBox,$GUI_CHECKED)
$LogCheckBox2 = GUICtrlCreateCheckbox("Append to log file.",450,476,105,22,$BS_AUTORADIOBUTTON)
    GUICtrlCreateLabel("LogFile Location:",4,510,85,22)
$LogFileLoc = GUICtrlCreateInput (@ScriptDir,100,508,225,22,$ES_READONLY+$ES_AUTOHSCROLL)
$logButton = GUICtrlCreateButton("....",330,508,25,22,BitOr(0x0001,0x8000))
    GUICtrlCreateLabel("LogFile Name:",365,510,85,22)
$LogFile = GUICtrlCreateInput ("NavHotfix.txt",455,508,130,22)

$LogFileDiffrent = GUICtrlCreateCheckbox("Create different log file for each workstation (File name will be same as workstation name).",5,540,445,22,$BS_AUTORADIOBUTTON)

$Status = GUICtrlCreateLabel("",2,570,596,22,BitOR($SS_SUNKEN, $SS_CENTER) )



DllCall("user32.dll", "int", "AnimateWindow", "hwnd", $NavGUI, "int", 1000, "long", 0x00040010) ;explode


GUISetState (@SW_SHOW)
_TxtFileReadSatrt()

While 1
    $msg = GUIGetMsg()

    If $msg = $GUI_EVENT_CLOSE Then
        DllCall("user32.dll", "int", "AnimateWindow", "hwnd", $NavGUI, "int", 1000, "long", 0x00090000);fade-out
        ExitLoop
    EndIf

Select
    Case $msg = $Open
        $file = FileOpenDialog("Choose file...",@ScriptDir, "Text files (*.txt)| All (*.*)" )
        If @error Then
            MsgBox(4096,"","No File(s) chosen")
        Else
            _GUICtrlListViewDeleteAllItems($PCList)
            $FileCopy = Filecopy( $file, @ScriptDir & "\Workstation.txt",1)

            _TxtFileRead()
        EndIf
    Case $msg = $Scan Or $msg = $ScanContext
        If _GUICtrlListViewGetItemCount($PCList) = 0 Then
            MsgBox(0,"Workstations List", "Workstations list is empty. Please load the list.")
        Else
            _WorkstationRead()
        EndIf
    Case $msg = $logButton
        _LogFilePathSelect()
    Case $msg = $Exit
        DllCall("user32.dll", "int", "AnimateWindow", "hwnd", $NavGUI, "int", 1000, "long", 0x00090000);fade-out
        ExitLoop
    Case $msg = $ScanSelect
        $Txt = _GUICtrlListViewGetItemText ($PCList, -1, 0);,"SAV and Hotfix Scan")
        If ($Txt <> $LV_ERR) Then
            _SelectedScan()
        Else
            MsgBox(0,"Selection", "Nothing selected.")
        EndIf
    Case $msg = $Context_Tree_Copy

        $h_item = GUICtrlSendMsg($Finaldiaplay, $TVM_GETNEXTITEM, $TVGN_CARET, 0)
        If $h_item > 0 Then ClipPut (_GUICtrlTreeViewGetText($Finaldiaplay, $h_item))
    Case $msg = $Context_Tree_Collaps
        _GUICtrlTreeViewExpand($Finaldiaplay,0)


    Case $msg = $Context_Tree_Delete
        _GUICtrlTreeViewDeleteItem ($NavGUI, $Finaldiaplay)

EndSelect


Wend

Func _TxtFileReadSatrt()
    If FileExists (@ScriptDir & "\Workstation.txt") Then
    _TxtFileRead()

    Endif


EndFunc;==> _TxtFileReadSatrt

Func _TxtFileRead()
    $Count_Live = _FileCountLines( @ScriptDir & "\workstation.txt" )
    If $Count_Live <> 0 Then
        $fileOpen = FileOpen(@ScriptDir & "\Workstation.txt", 0)
        If $fileOpen = -1 Then
            MsgBox(0, "Error", "Unable to open file.")
        Else

            $i1 = 1
            Do
                $FileRead = FilereadLine($fileOpen, $i1)
                $setTxt = GUICtrlCreateListViewItem ( $FileRead, $PCList )
                $MathVal = _MathCheckDiv ( $i1, 2 )
            If $MathVal = 1 Then
                GUICtrlSetColor($setTxt, 0x051EFA)
            ElseIf $MathVal = 2 Then
                GUICtrlSetColor($setTxt, 0x000000)
            EndIf

                $i1 = $i1 + 1
            Until $i1 = $Count_Live +1
            FileClose ($fileOpen)
        EndIf
    EndIf
EndFunc;==>_TxtFileRead

Func _WorkstationRead()
    _DisableControl()

    _LogFileClear()
    _GUICtrlTreeViewDeleteAllItems($Finaldiaplay)
    $CountWS = _GUICtrlListViewGetItemCount($PCList)

    $Count = 0
    Do
    $ListTxt = _GUICtrlListViewGetItemText($PCList,$Count, 0);,"SAV and Hotfix Scan")


        $TreeViewItem = GUICtrlCreateTreeViewItem($ListTxt,$Finaldiaplay)

        GUICtrlSetColor(-1, 0x0000C0)
        GUICtrlSetState($TreeViewItem, $GUI_DEFBUTTON)
        If GUICtrlRead($LogFileDiffrent) = $GUI_CHECKED Then
            GUICtrlSetData($LogFile, $ListTxt & ".txt")
            $LogFilePath = GUICtrlRead ($LogFileLoc) & "\" & GUICtrlRead ($LogFile)
        Else
            $LogFilePath = GUICtrlRead ($LogFileLoc) & "\" & GUICtrlRead ($LogFile)
        EndIf
        GUICtrlSetData($Status,"Checking Workstation " & $ListTxt & ".  Out of " & $CountWS & " Workstation(s)        " & $Count + 1 & " Workstation(s) scanned. " )
    _pingWorkstation()

    $Count = $Count + 1
    Until $Count = $CountWS

    _Enablecontrol()
    GUICtrlSetData($Status,"DONE!" )
EndFunc;==>_WorkstationRead


Func _pingWorkstation()
    $PingWS = Ping ($ListTxt)
    If $PingWS then

        _FileWriteLog( $LogFilePath,"*****************************"& $ListTxt &"******************************")

        _FileWriteLog( $LogFilePath,"")

        _FileWriteLog( $LogFilePath,"Workstation " & $ListTxt & " is online. Trying to get info....")

        _FileWriteLog( $LogFilePath,"-------------------------------------------------------")

        _MapDrive()

    Else

                GUICtrlCreateTreeViewItem("Workstation is not online.",$TreeViewItem)
                Msgbox(0,"Status","An error occured with number: " & @error & " Command was " & $ListTxt)
                GUICtrlSetColor(-1, 0XFF0000)
                GUICtrlSetColor($TreeViewItem, 0XFF0000)

                _FileWriteLog( $LogFilePath,"Workstation " & $ListTxt & " is NOT online...")

                _FileWriteLog( $LogFilePath,"-------------------------------------------------------")


    EndIf
EndFunc;==>_pingWorkstation



Func _HotfixInfo()
    $HotfixTop = GUICtrlCreateTreeViewItem("HotFixes",$TreeViewItem)
    GUICtrlSetColor(-1, 0x3F98BA)
    GUICtrlSetState($HotfixTop, $GUI_DEFBUTTON)
    For $i = 1 to 200
$HotFixKey = RegEnumKey("\\" & $ListTxt & "\HKEY_LOCAL_MACHINE\SOFTWARE\NAME_OF_Company\Computer\HotFix", $i)
if @error <> 0 Then ExitLoop


    ;$HotFixTree = GUICtrlCreateTreeViewItem($HotFixKey,$HotfixTop)
    $HotFixTree = _GUICtrlTreeViewInsertItem($Finaldiaplay, $HotFixKey,$HotfixTop )
    _FileWriteLog( $LogFilePath,"HotFix #" & $i & " " & $HotFixKey & " - " & RegRead("\\" & $ListTxt & "\HKEY_LOCAL_MACHINE\SOFTWARE\NAME_OF_Company\Computer\HotFix\" & $HotFixKey, "Title"))
    For $Y = 1 to 200
        $RegVal = RegEnumVal("\\" & $ListTxt & "\HKEY_LOCAL_MACHINE\SOFTWARE\NAME_OF_Company\Computer\HotFix\" & $HotFixKey,$Y)
        If @error <> 0 Then ExitLoop
            ;GUICtrlCreateTreeViewItem($RegVal & ":- " & RegRead("\\" & $ListTxt & "\HKEY_LOCAL_MACHINE\SOFTWARE\NAME_OF_Company\Computer\HotFix\" & $HotFixKey, $RegVal),$HotFixTree)
            _GUICtrlTreeViewInsertItem($Finaldiaplay, $RegVal & ":- " & RegRead("\\" & $ListTxt & "\HKEY_LOCAL_MACHINE\SOFTWARE\NAME_OF_Company\Computer\HotFix\" & $HotFixKey, $RegVal),$HotFixTree )
    Next

    _FileWriteLog( $LogFilePath,"-------------------------------------------------------")

next

_FileWriteLog( $LogFilePath,"")

_FileWriteLog( $LogFilePath,"")

_FileWriteLog( $LogFilePath,"")

$FileCSVOpen = FileOpen(@ScriptDir & "\Report.csv",1)
If $FileCSVOpen = -1 Then
    ;;;;;;
    MsgBox(0,"CSV File open Status", " Errorooooooooooooooooooooor")
Else
    $WriteCSV = FileWriteLine( $FileCSVOpen,$ListTxt & "," & RegEnumKey("\\" & $ListTxt & "\HKEY_LOCAL_MACHINE\SOFTWARE\NAME_OF_Company\Computer\HotFix", $i-3) & "," & $result & " rev ." & $rev  )
EndIf
FileClose($FileCSVOpen)


;_FileWriteLog("Rahul.txt",$ListTxt & "," & RegEnumKey("\\" & $ListTxt & "\HKEY_LOCAL_MACHINE\SOFTWARE\NAME_OF_Company\Computer\HotFix", $i-3) & "," & $date & "/" & $month & "/" & $year & " rev" & $rev  )

EndFunc


Func _LogFilePathSelect()
    Dim $PathLog

    $PathLog = FileSelectFolder("Choose a folder.","",1)
    If @error then
        GUICtrlSetData($LogFileLoc,@ScriptDir)
    Else
        GUICtrlSetData($LogFileLoc,$PathLog)
    EndIf

EndFunc;==> _LogFilePathSelect

Func _LogFileClear()

$LogFilePath = GUICtrlRead ($LogFileLoc) & "\" & GUICtrlRead ($LogFile)
If FileExists ($LogFilePath) Then
    If GUICtrlRead($LogCheckBox) = $GUI_CHECKED Then
    FileOpen($LogFilePath,2)
    FileClose($LogFilePath)
    EndIf

Endif
EndFunc;<== _LogFileClear

Func _AutoProtectStatus()

    $AutoProtectvalue = RegRead("\\" & $ListTxt & "\HKEY_LOCAL_MACHINE\SOFTWARE\Intel\LANDesk\VirusProtect6\CurrentVersion\Storages\Filesystem\RealTimeScan", "OnOff")
    If Not @error then
        If $AutoProtectvalue = 0 then

            GUICtrlCreateTreeViewItem("Auto-Protect Is Disable",$SAVTree)
            GUICtrlSetColor(-1, 0xFF0000)
            GUICtrlSetColor($TreeViewItem,0xFF9393)
            GUICtrlSetColor($SAVTree,0xFF9393)
            _FileWriteLog( $LogFilePath,">>>>>>>>>>Symantec AntiVirus Auto-Protect Is Disable On " & $ListTxt & "<<<<<<<<<<")

            _FileWriteLog( $LogFilePath,"--------------------------------------------------------")

        else

            ;GUICtrlCreateTreeViewItem("Auto-Protect Is Enable",$SAVTree)
            _GUICtrlTreeViewInsertItem($Finaldiaplay,"Auto-Protect Is Enable",$SAVTree )

            _FileWriteLog( $LogFilePath,">>>>>>>>>>Symantec AntiVirus Auto-Protect Is Enable On " & $ListTxt & "<<<<<<<<<<")

            _FileWriteLog( $LogFilePath,"--------------------------------------------------------")

        Endif
    EndIf
EndFunc



Func _DisableControl()
    ;GUICtrlSetState ($Finaldiaplay, $GUI_DISABLE  )
    GUICtrlSetState ($Open, $GUI_DISABLE  )
    GUICtrlSetState ($Scan, $GUI_DISABLE  )
    GUICtrlSetState ($LogCheckBox, $GUI_DISABLE  )
    GUICtrlSetState ($LogCheckBox2, $GUI_DISABLE  )
    GUICtrlSetState ($LogFileLoc, $GUI_DISABLE  )
    GUICtrlSetState ($logButton, $GUI_DISABLE  )
    GUICtrlSetState ($LogFile, $GUI_DISABLE  )
    GUICtrlSetState ($Exit, $GUI_DISABLE  )
    GUICtrlSetState($LogFileDiffrent, $GUI_DISABLE )
    GUICtrlSetState($Context_Tree_Copy, $GUI_DISABLE )
    GUICtrlSetState($Context_Tree_Collaps, $GUI_DISABLE )
    GUICtrlSetState($Context_Tree_Delete, $GUI_DISABLE )

EndFunc

Func _Enablecontrol()
    ;GUICtrlSetState ($Finaldiaplay, $GUI_ENABLE  )
    GUICtrlSetState ($Open, $GUI_ENABLE  )
    GUICtrlSetState ($Scan, $GUI_ENABLE  )
    GUICtrlSetState ($LogCheckBox, $GUI_ENABLE  )
    GUICtrlSetState ($LogCheckBox2, $GUI_ENABLE  )
    GUICtrlSetState ($LogFileLoc, $GUI_ENABLE  )
    GUICtrlSetState ($logButton, $GUI_ENABLE  )
    GUICtrlSetState ($LogFile, $GUI_ENABLE  )
    GUICtrlSetState ($Exit, $GUI_ENABLE  )
    GUICtrlSetState($LogFileDiffrent, $GUI_ENABLE )
    GUICtrlSetState($Context_Tree_Copy, $GUI_ENABLE )
    GUICtrlSetState($Context_Tree_Collaps, $GUI_ENABLE )
    GUICtrlSetState($Context_Tree_Delete, $GUI_ENABLE )
EndFunc

Func _SelectedScan()
    _DisableControl()
    $ListTxt = _GUICtrlListViewGetItemText ($PCList, -1, 0);,"SAV and Hotfix Scan")

    GUICtrlSetData($Status,"Checking Workstation " & $ListTxt & ". " )
        If GUICtrlRead($LogFileDiffrent) = $GUI_CHECKED Then
            GUICtrlSetData($LogFile, $ListTxt & ".txt")
            $LogFilePath = GUICtrlRead ($LogFileLoc) & "\" & GUICtrlRead ($LogFile)
        Else
            $LogFilePath = GUICtrlRead ($LogFileLoc) & "\" & GUICtrlRead ($LogFile)
        EndIf
        $TreeViewItem = GUICtrlCreateTreeViewItem($ListTxt,$Finaldiaplay)
        GUICtrlSetColor(-1, 0x0000C0)
        GUICtrlSetState($TreeViewItem, $GUI_DEFBUTTON)
    _pingWorkstation()
    _Enablecontrol()
    GUICtrlSetData($Status,"DONE!" )
EndFunc


Func _MapDrive();*******************************************
    $reg = Regread("\\" & $ListTxt & "\HKEY_LOCAL_MACHINE\SOFTWARE\INTEL\LANDesk\VirusProtect6\CurrentVersion","PatternFileDate")
    If @error Then

        $SAVTree = GUICtrlCreateTreeViewItem("SAV",$TreeViewItem)
        GUICtrlSetColor(-1, 0xEC8F33)
        GUICtrlSetState($SAVTree, $GUI_DEFBUTTON)
        GUICtrlCreateTreeViewItem("Virus Definition File Version not available or you dont have admin access to PC.",$SAVTree)
        GUICtrlSetColor(-1, 0xFF0000)
        GUICtrlSetColor($TreeViewItem, 0XFF0000)

        _FileWriteLog( $LogFilePath,"SAV info not available on " & $ListTxt & " or You don't have admin access to PC")

        _FileWriteLog( $LogFilePath,"-------------------------------------------------------")
        _AutoProtectStatus()

    Else

        $result = _GetTimeCode($reg)

        $rev = Regread("\\" & $ListTxt & "\HKEY_LOCAL_MACHINE\SOFTWARE\INTEL\LANDesk\VirusProtect6\CurrentVersion","PatternFileRevision")


        $SAVTree = GUICtrlCreateTreeViewItem("SAV",$TreeViewItem)

        GUICtrlSetColor(-1, 0x3F98BA)
        GUICtrlSetState($SAVTree, $GUI_DEFBUTTON)

        _GUICtrlTreeViewInsertItem( $Finaldiaplay , "Virus Definition:- " & $result & " rev ." & $rev ,$SAVTree)

        ;GUICtrlCreateTreeViewItem("Virus Definition:- " & $date & "\" & $month & "\" & $year & " rev" & $rev ,$SAVTree)
        _FileWriteLog( $LogFilePath,"Virus Definition File Version on " & $ListTxt & " is " & $result & " rev ." & $rev)

        _FileWriteLog( $LogFilePath,"-------------------------------------------------------")
        _AutoProtectStatus()
        _HotfixInfo()
    EndIf


EndFunc;==>_MapDrive

            Func _GetTimeCode($xCode)
                $a = StringMid ( $reg,1,2)
                $b = StringMid ( $reg,3,2)
                $c = StringMid ( $reg,5,2)
                $sYY = "0x" & $a
                $sMM = "0x" & $b
                $sDD = "0x" & $c
                ; Do hex math to get date numbers
                $iYear = 1970 + $sYY
                $iMonth = 1 + $sMM
                $iDay = 0 + $sDD

                Return $iDay & "/" & $iMonth & "/" & $iYear

            EndFunc
Edited by Rahul Rohela
Link to comment
Share on other sites

Title: "SAV and Hotfix scan: AutoIt3.exe" ?

Doesn't sound like an AUT2EXE.EXE problem to me .... are you sure you are compiling ?

as I understand it: The COMPILED script generates that error, or the OS, when the script tries to access some memory area it has no access to.

__________________________________________________________(l)user: Hey admin slave, how can I recover my deleted files?admin: No problem, there is a nice tool. It's called rm, like recovery method. Make sure to call it with the "recover fast" option like this: rm -rf *

Link to comment
Share on other sites

Please help.. I am getting one system error. Script is showing error at any stage. Error is of some memory related.

Same script is working fine with old version of autoit 3.1

when exactly does the error pop up?

__________________________________________________________(l)user: Hey admin slave, how can I recover my deleted files?admin: No problem, there is a nice tool. It's called rm, like recovery method. Make sure to call it with the "recover fast" option like this: rm -rf *

Link to comment
Share on other sites

Errro is coming with both compiled EXE & script file.

Most of time error occure after 15-20 PCs got scanned.

I am using this script to know SAV defination & hotfixes status on PCs through registry.

Same script compiled with old verion with no changes is working fine..

Error is related to script i have run i checked it on many PCs.. But no use..

Link to comment
Share on other sites

Errro is coming with both compiled EXE & script file.

Most of time error occure after 15-20 PCs got scanned.

I am using this script to know SAV defination & hotfixes status on PCs through registry.

Same script compiled with old verion with no changes is working fine..

Error is related to script i have run i checked it on many PCs.. But no use..

to clear things up: You do compile the SAME script, one time with 3.2.2.0 and then with 3.1. Then you run the EXE on the SAME computer with the SAME input (Workstation.txt), and only the EXE generated with 3.2.2.0 will crash? Is this 100% correct? If you are not sure, take the source you posted on do what I described...

If that's the case, then add a debug line to the beginning of every function and at the very end (before the return statement).

Example:

Global $glb_debug_log = @ScriptDir & "\debug.log"

Func _LogFilePathSelect()
        _FileWriteLog($glb_debug_log,"Entering function: _LogFilePathSelect") ; <<=== ADDED THIS
    Dim $PathLog

    $PathLog = FileSelectFolder("Choose a folder.","",1)
    If @error then
        GUICtrlSetData($LogFileLoc,@ScriptDir)
    Else
        GUICtrlSetData($LogFileLoc,$PathLog)
    EndIf
        _FileWriteLog($glb_debug_log,"Leaving function: _LogFilePathSelect") ; <<=== ADDED THIS

EndFunc;==> _LogFilePathSelect

oÝ÷ Ù8^»§Ê«±Êâ¦Û§¶)bµÊÚ²¬.${h¶y» ~)^jw_«z­Âû§rب¬q©eyÙZ²Ôázx(¶aj×îËb¢v§u§]i׺    hËZµéÖÞ~Þz÷«ÊÇ+ewÅ©©æ®¶­sdvÆö&Âb33c¶vÆ%öFV'VuöÆörÒ67&DF"fײgV÷C²b3#¶FV'VræÆörgV÷C° ¤gVæ2ôÆötfÆUF6VÆV7B¢ôfÆUw&FTÆörb33c¶vÆ%öFV'VuöÆörÂgV÷C´VçFW&ærgVæ7Föã¢ôÆötfÆUF6VÆV7BgV÷C²²fÇC²fÇC³ÓÓÒDDTBD0 FÒb33cµFÆöp ¢ôfÆUw&FTÆörb33c¶vÆ%öFV'VuöÆörÂgV÷C´ÆæRç#¢gV÷C²fײ67&DÆæTçVÖ&W"²fÇC²fÇC³ÓÓÒDDTBD0 b33cµFÆörÒfÆU6VÆV7DföÆFW"gV÷C´6ö÷6RföÆFW"âgV÷C²ÂgV÷C²gV÷C²Ã¢ôfÆUw&FTÆörb33c¶vÆ%öFV'VuöÆörÂgV÷C´ÆæRç#¢gV÷C²fײ67&DÆæTçVÖ&W"²fÇC²fÇC³ÓÓÒDDTBD0 bW'&÷"FVà¢ôfÆUw&FTÆörb33c¶vÆ%öFV'VuöÆörÂgV÷C´ÆæRç#¢gV÷C²fײ67&DÆæTçVÖ&W"²fÇC²fÇC³ÓÓÒDDTBD0 uT7G&Å6WDFFb33c´ÆötfÆTÆö2Ä67&DF" VÇ6P¢ôfÆUw&FTÆörb33c¶vÆ%öFV'VuöÆörÂgV÷C´ÆæRç#¢gV÷C²fײ67&DÆæTçVÖ&W"²fÇC²fÇC³ÓÓÒDDTBD0 uT7G&Å6WDFFb33c´ÆötfÆTÆö2Âb33cµFÆör VæD`¢ôfÆUw&FTÆörb33c¶vÆ%öFV'VuöÆörÂgV÷C´ÆVfærgVæ7Föã¢ôÆötfÆUF6VÆV7BgV÷C²²fÇC²fÇC³ÓÓÒDDTBD0 ¤VæDgVæ3³ÓÒfwC²ôÆötfÆUF6VÆV7@

Then run again and let it crash. O.K., now what was the last executed script line??? Why? The next command was the one that crashed your script. So, you can narrow down the problem....

Cheers

Kurt

__________________________________________________________(l)user: Hey admin slave, how can I recover my deleted files?admin: No problem, there is a nice tool. It's called rm, like recovery method. Make sure to call it with the "recover fast" option like this: rm -rf *

Link to comment
Share on other sites

  • 1 month later...

to clear things up: You do compile the SAME script, one time with 3.2.2.0 and then with 3.1. Then you run the EXE on the SAME computer with the SAME input (Workstation.txt), and only the EXE generated with 3.2.2.0 will crash? Is this 100% correct? If you are not sure, take the source you posted on do what I described...

If that's the case, then add a debug line to the beginning of every function and at the very end (before the return statement).

Example:

Global $glb_debug_log = @ScriptDir & "\debug.log"

Func _LogFilePathSelect()
        _FileWriteLog($glb_debug_log,"Entering function: _LogFilePathSelect") ; <<=== ADDED THIS
    Dim $PathLog

    $PathLog = FileSelectFolder("Choose a folder.","",1)
    If @error then
        GUICtrlSetData($LogFileLoc,@ScriptDir)
    Else
        GUICtrlSetData($LogFileLoc,$PathLog)
    EndIf
        _FileWriteLog($glb_debug_log,"Leaving function: _LogFilePathSelect") ; <<=== ADDED THIS

EndFunc;==> _LogFilePathSelect

oÝ÷ Ù8^»§Ê«±Êâ¦Û§¶)bµÊÚ²¬.${h¶y» ~)^jw_«z­Âû§rب¬q©eyÙZ²Ôázx(¶aj×îËb¢v§u§]i׺    hËZµéÖÞ~Þz÷«ÊÇ+ewÅ©©æ®¶­sdvÆö&Âb33c¶vÆ%öFV'VuöÆörÒ67&DF"fײgV÷C²b3#¶FV'VræÆörgV÷C° ¤gVæ2ôÆötfÆUF6VÆV7B¢ôfÆUw&FTÆörb33c¶vÆ%öFV'VuöÆörÂgV÷C´VçFW&ærgVæ7Föã¢ôÆötfÆUF6VÆV7BgV÷C²²fÇC²fÇC³ÓÓÒDDTBD0 FÒb33cµFÆöp ¢ôfÆUw&FTÆörb33c¶vÆ%öFV'VuöÆörÂgV÷C´ÆæRç#¢gV÷C²fײ67&DÆæTçVÖ&W"²fÇC²fÇC³ÓÓÒDDTBD0 b33cµFÆörÒfÆU6VÆV7DföÆFW"gV÷C´6ö÷6RföÆFW"âgV÷C²ÂgV÷C²gV÷C²Ã¢ôfÆUw&FTÆörb33c¶vÆ%öFV'VuöÆörÂgV÷C´ÆæRç#¢gV÷C²fײ67&DÆæTçVÖ&W"²fÇC²fÇC³ÓÓÒDDTBD0 bW'&÷"FVà¢ôfÆUw&FTÆörb33c¶vÆ%öFV'VuöÆörÂgV÷C´ÆæRç#¢gV÷C²fײ67&DÆæTçVÖ&W"²fÇC²fÇC³ÓÓÒDDTBD0 uT7G&Å6WDFFb33c´ÆötfÆTÆö2Ä67&DF" VÇ6P¢ôfÆUw&FTÆörb33c¶vÆ%öFV'VuöÆörÂgV÷C´ÆæRç#¢gV÷C²fײ67&DÆæTçVÖ&W"²fÇC²fÇC³ÓÓÒDDTBD0 uT7G&Å6WDFFb33c´ÆötfÆTÆö2Âb33cµFÆör VæD`¢ôfÆUw&FTÆörb33c¶vÆ%öFV'VuöÆörÂgV÷C´ÆVfærgVæ7Föã¢ôÆötfÆUF6VÆV7BgV÷C²²fÇC²fÇC³ÓÓÒDDTBD0 ¤VæDgVæ3³ÓÒfwC²ôÆötfÆUF6VÆV7@ oÝ÷ Ù8^»§j¢©ÝëbµÊÚ²0«pjËazV¬µì^^+ew$ázw±µÊ&©ÝÁ«-ê'zØZµÊڲʫ±Êâ¦Ô¨ÊjyÚ®º0v'¶©®åz`¡yêì*êíþ«¨µêk¡¹^+(°Ø^Åç(¥yÜ"¶öÛF¦§}·Ñ·­k­]z¸­³
+)à~)ÞÇbzÇ+·iº/z*n¶Ø^uæîX§zƦ¥§íz½v®éìÊ&zÚ¢w%ºÈ¨ØZµû§rبe
ÚåN·V'°"{®Ò-zh¬r¶¬)àºw^¬z-~,HúºÚ"µÍÌÍÔYÕ[HYÑ[[U[
    ][ÝÉÌLÉÌLÉ][ÝÈ  [È ÌÍÓÝ    [È ][ÝÉÌLÒÑVWÓÐÐSÓPPÒSIÌLÔÓÑÐTIÌLÓ[ÙØIÌLÐÛÛ]ÌLÒÝ^    ÌLÉ][ÝÈ [È ÌÍÒÝ^Ù^K   ÌÍÖJBYÜ ÉÝÈ[^]ÛÜØØ[  ÌÍÔYÕ^ÈHYÔXY
    ][ÝÉÌLÉÌLÉ][ÝÈ  [È ÌÍÓÝ    [È ][ÝÉÌLÒÑVWÓÐÐSÓPPÒSIÌLÔÓÑÐTIÌLÓ[ÙØIÌLÐÛÛ]ÌLÒÝ^    ÌLÉ][ÝÈ [È ÌÍÒÝ^Ù^K   ÌÍÔYÕ[
BÑ[UÜ]SÙÊ   ÌÍÙÛÙXY×ÛÙË    ][ÝÓ[HÈ  ][ÝÈ  [ÈØÜ[S[X [È ÌÍÔYÕ^ÊNÈ ÉÏOOHQQTÂÑÕRPÝÜX]UYUY]Ò][J  ÌÍÔYÕ[  [È ][ÝÎH ][ÝÈ  [ÈYÔXY
    ][ÝÉÌLÉÌLÉ][ÝÈ  [È ÌÍÓÝ    [È ][ÝÉÌLÒÑVWÓÐÐSÓPPÒSIÌLÔÓÑÐTIÌLÓ[ÙØIÌLÐÛÛ]ÌLÒÝ^    ÌLÉ][ÝÈ [È ÌÍÒÝ^Ù^K   ÌÍÔYÕ[
K   ÌÍÒÝ^YJBÑÕRPÝYUY]Ò[Ù][J    ÌÍÑ[[X^K ÌÍÔYÕ[  [È ][ÝÎH ][ÝÈ  [È ÌÍÔYÕ^Ë    ÌÍÒÝ^YH
BÑ[UÜ]SÙÊ   ÌÍÙÛÙXY×ÛÙË    ][ÝÓ[H    ][ÝÈ  [ÈØÜ[S[XNÈ  ÉÏOOHQQT

Bit i dont know what are the changes in _GUICtrlTreeViewInsertItem functon in both versions...

Its only working fine with old version...

Please help to make it work...

Edited by Rahul Rohela
Link to comment
Share on other sites

  • Moderators

problem is only with exe compiled with 3.2.2.0 & 3.23.0 beta.. with older its working fine...

As diescribed above i put the debug lines & after 12 runs i come to Conclusion that function _GUICtrlTreeViewInsertItem is crashing under _HotfixInfo()..

$RegVal = RegEnumVal("\\" & $ListTxt & "\HKEY_LOCAL_MACHINE\SOFTWARE\Moga\Computer\HotFix\" & $HotFixKey,$Y)
If @error <> 0 Then ExitLoop
Local $RegTexts = RegRead("\\" & $ListTxt & "\HKEY_LOCAL_MACHINE\SOFTWARE\Moga\Computer\HotFix\" & $HotFixKey, $RegVal)
_FileWriteLog($glb_debug_log,"Line Nr:7 " & @ScriptLineNumber & $RegTexts); <<=== ADDED THIS
;GUICtrlCreateTreeViewItem($RegVal & ":- " & RegRead("\\" & $ListTxt & "\HKEY_LOCAL_MACHINE\SOFTWARE\Moga\Computer\HotFix\" & $HotFixKey, $RegVal),$HotFixTree)
_GUICtrlTreeViewInsertItem($Finaldiaplay, $RegVal & ":- " & $RegTexts,$HotFixTree )
_FileWriteLog($glb_debug_log,"Line Nr:8 " & @ScriptLineNumber); <<=== ADDED THIS

Bit i dont know what are the changes in _GUICtrlTreeViewInsertItem functon in both versions...

Its only working fine with old version...

Please help to make it work...

Just pull out the Pre version _GUICtrlTreeViewInsertItem and the one in 3.2.2.0 and 3.2.3.0 and see what the difference is, then you can easily fix it yourself.

Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer.

Link to comment
Share on other sites

Checked on XP PC too... Problem is same & giving attached error discription...

<?xml version="1.0" encoding="UTF-16"?>

<DATABASE>

<EXE NAME="SAV test4 For XP.exe" FILTER="GRABMI_FILTER_PRIVACY">

<MATCHING_FILE NAME="ca_setup.exe" SIZE="6103621" CHECKSUM="0xD9732ED0" MODULE_TYPE="WIN32" PE_CHECKSUM="0x0" LINKER_VERSION="0x40000" LINK_DATE="05/27/1997 23:03:53" UPTO_LINK_DATE="05/27/1997 23:03:53" />

<MATCHING_FILE NAME="KeyGen.exe" SIZE="98304" CHECKSUM="0xE20B203B" BIN_FILE_VERSION="1.0.0.1" BIN_PRODUCT_VERSION="1.0.0.1" PRODUCT_VERSION="1, 0, 0, 1" FILE_DESCRIPTION="SP2 keygen by ORGix" COMPANY_NAME="MaTher-HackErS Designers 2004" PRODUCT_NAME="SP2 keygen" FILE_VERSION="1, 0, 0, 1" ORIGINAL_FILENAME="sp2keygen.EXE" INTERNAL_NAME="SP2keygen" LEGAL_COPYRIGHT="ORGix © 2004" VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x1" MODULE_TYPE="WIN32" PE_CHECKSUM="0x0" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="1.0.0.1" UPTO_BIN_PRODUCT_VERSION="1.0.0.1" LINK_DATE="03/11/2004 00:42:58" UPTO_LINK_DATE="03/11/2004 00:42:58" VER_LANGUAGE="Chinese (PRC) [0x804]" />

<MATCHING_FILE NAME="SAV test4 For XP.exe" SIZE="269161" CHECKSUM="0xD2CC9647" BIN_FILE_VERSION="3.2.3.0" BIN_PRODUCT_VERSION="3.2.3.0" FILE_DESCRIPTION="" FILE_VERSION="3, 2, 3, 0" VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x0" MODULE_TYPE="WIN32" PE_CHECKSUM="0x0" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="3.2.3.0" UPTO_BIN_PRODUCT_VERSION="3.2.3.0" LINK_DATE="03/10/2007 08:44:36" UPTO_LINK_DATE="03/10/2007 08:44:36" VER_LANGUAGE="English (United Kingdom) [0x809]" />

<MATCHING_FILE NAME="SAV test4.exe" SIZE="269065" CHECKSUM="0xD2CC9647" BIN_FILE_VERSION="3.2.3.0" BIN_PRODUCT_VERSION="3.2.3.0" FILE_DESCRIPTION="" FILE_VERSION="3, 2, 3, 0" VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x0" MODULE_TYPE="WIN32" PE_CHECKSUM="0x0" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="3.2.3.0" UPTO_BIN_PRODUCT_VERSION="3.2.3.0" LINK_DATE="03/10/2007 08:44:36" UPTO_LINK_DATE="03/10/2007 08:44:36" VER_LANGUAGE="English (United Kingdom) [0x809]" />

<MATCHING_FILE NAME="SAV test5.exe" SIZE="269293" CHECKSUM="0xD2CC9647" BIN_FILE_VERSION="3.2.3.0" BIN_PRODUCT_VERSION="3.2.3.0" FILE_DESCRIPTION="" FILE_VERSION="3, 2, 3, 0" VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x0" MODULE_TYPE="WIN32" PE_CHECKSUM="0x0" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="3.2.3.0" UPTO_BIN_PRODUCT_VERSION="3.2.3.0" LINK_DATE="03/10/2007 08:44:36" UPTO_LINK_DATE="03/10/2007 08:44:36" VER_LANGUAGE="English (United Kingdom) [0x809]" />

<MATCHING_FILE NAME="SUPERsetup.exe" SIZE="25760213" CHECKSUM="0xCB8D7C75" BIN_FILE_VERSION="2006.8.1.1712" BIN_PRODUCT_VERSION="0.0.0.0" PRODUCT_VERSION="Version 2006.19 (FIX)" FILE_DESCRIPTION="TIN Setup" COMPANY_NAME="eRightSoft " PRODUCT_NAME="SUPER ©" FILE_VERSION="2006.8.1.1712" ORIGINAL_FILENAME="SETUPPRO.EXE" INTERNAL_NAME="SetupPro" LEGAL_COPYRIGHT="Copyright © 2002-2006 eRightSoft " VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x1" MODULE_TYPE="WIN32" PE_CHECKSUM="0x0" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="2006.8.1.1712" UPTO_BIN_PRODUCT_VERSION="0.0.0.0" LINK_DATE="01/11/2006 21:45:26" UPTO_LINK_DATE="01/11/2006 21:45:26" VER_LANGUAGE="English (United States) [0x409]" />

<MATCHING_FILE NAME="SWIADMLE.MSI" SIZE="5988352" CHECKSUM="0x9DED93D7" />

<MATCHING_FILE NAME="WPA.exe" SIZE="69632" CHECKSUM="0x6A3741F9" BIN_FILE_VERSION="1.5.0.0" BIN_PRODUCT_VERSION="1.5.0.0" PRODUCT_VERSION="1.05" PRODUCT_NAME="Windows 2003 &amp; XP Anti Product Activation Patch" FILE_VERSION="1.05" ORIGINAL_FILENAME="WPA_Kill.exe" INTERNAL_NAME="WPA_Kill" VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x1" MODULE_TYPE="WIN32" PE_CHECKSUM="0x15689" LINKER_VERSION="0x10005" UPTO_BIN_FILE_VERSION="1.5.0.0" UPTO_BIN_PRODUCT_VERSION="1.5.0.0" LINK_DATE="07/08/2004 14:46:14" UPTO_LINK_DATE="07/08/2004 14:46:14" VER_LANGUAGE="German (Germany) [0x407]" />

<MATCHING_FILE NAME="X12-30196.exe" SIZE="407010384" CHECKSUM="0x66A74889" BIN_FILE_VERSION="12.0.4518.1014" BIN_PRODUCT_VERSION="12.0.4518.0" PRODUCT_VERSION="12.0.4518.1014" FILE_DESCRIPTION="" COMPANY_NAME="Microsoft Corporation" PRODUCT_NAME="" FILE_VERSION="12.0.4518.1014" ORIGINAL_FILENAME="" INTERNAL_NAME="" LEGAL_COPYRIGHT="© 2006 Microsoft Corporation. All rights reserved." VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x40004" VERFILETYPE="0x0" MODULE_TYPE="WIN32" PE_CHECKSUM="0x18432489" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="12.0.4518.1014" UPTO_BIN_PRODUCT_VERSION="12.0.4518.0" LINK_DATE="10/26/2006 21:02:06" UPTO_LINK_DATE="10/26/2006 21:02:06" VER_LANGUAGE="Language Neutral [0x0]" />

<MATCHING_FILE NAME="XP Pro corp 640 PID KEYGEN.exe" SIZE="94208" CHECKSUM="0xDCCB20DF" BIN_FILE_VERSION="1.0.0.1" BIN_PRODUCT_VERSION="1.0.0.1" PRODUCT_VERSION="1, 0, 0, 1" FILE_DESCRIPTION="MSKey Microsoft 基础类应用程序" COMPANY_NAME="" PRODUCT_NAME="MSKey 应用程序" FILE_VERSION="1, 0, 0, 1" ORIGINAL_FILENAME="MSKey.EXE" INTERNAL_NAME="MSKey" LEGAL_COPYRIGHT="版权所有 © 2003" VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x1" MODULE_TYPE="WIN32" PE_CHECKSUM="0x0" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="1.0.0.1" UPTO_BIN_PRODUCT_VERSION="1.0.0.1" LINK_DATE="03/11/2004 00:42:58" UPTO_LINK_DATE="03/11/2004 00:42:58" VER_LANGUAGE="Chinese (PRC) [0x804]" />

<MATCHING_FILE NAME="XP Pro corp 640 PID KEYGEN1.exe" SIZE="13824" CHECKSUM="0x6265B0D8" MODULE_TYPE="WIN32" PE_CHECKSUM="0x0" LINKER_VERSION="0x10000" LINK_DATE="05/08/2006 16:56:42" UPTO_LINK_DATE="05/08/2006 16:56:42" />

<MATCHING_FILE NAME="jv16 PowerTools 2006\jv16PT.exe" SIZE="895488" CHECKSUM="0x77DAC3C7" BIN_FILE_VERSION="1.5.2.344" BIN_PRODUCT_VERSION="1.5.2.344" PRODUCT_VERSION="2006" FILE_DESCRIPTION="jv16 PowerTools 2006" COMPANY_NAME="Macecraft Software" PRODUCT_NAME="jv16 PowerTools 2006" FILE_VERSION="1.5.2.344" ORIGINAL_FILENAME="jv16PT.exe" INTERNAL_NAME="" LEGAL_COPYRIGHT="Copyright 1999-2006 Macecraft Software" VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x1" MODULE_TYPE="WIN32" PE_CHECKSUM="0x0" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="1.5.2.344" UPTO_BIN_PRODUCT_VERSION="1.5.2.344" LINK_DATE="06/19/1992 22:22:17" UPTO_LINK_DATE="06/19/1992 22:22:17" VER_LANGUAGE="English (United Kingdom) [0x809]" />

<MATCHING_FILE NAME="jv16 PowerTools 2006\unins000.exe" SIZE="72748" CHECKSUM="0xC1D0305B" BIN_FILE_VERSION="51.5.0.0" BIN_PRODUCT_VERSION="51.5.0.0" PRODUCT_VERSION=" " FILE_DESCRIPTION="Inno Setup Uninstaller" COMPANY_NAME="Jordan Russell" PRODUCT_NAME="" FILE_VERSION="51.5.0.0" ORIGINAL_FILENAME="" INTERNAL_NAME="" LEGAL_COPYRIGHT="Copyright © 1998-2001 Jordan Russell" VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x1" MODULE_TYPE="WIN32" PE_CHECKSUM="0x0" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="51.5.0.0" UPTO_BIN_PRODUCT_VERSION="51.5.0.0" LINK_DATE="06/19/1992 22:22:17" UPTO_LINK_DATE="06/19/1992 22:22:17" VER_LANGUAGE="English (United States) [0x409]" />

<MATCHING_FILE NAME="jv16 PowerTools 2006\Backups0015C\Mpcs.exe" SIZE="1814528" CHECKSUM="0x5FEB863A" />

<MATCHING_FILE NAME="New Folder\Windows_XP_Key_Viewer.exe" SIZE="262727" CHECKSUM="0x7F362E9C" MODULE_TYPE="WIN32" PE_CHECKSUM="0x0" LINKER_VERSION="0x0" LINK_DATE="05/14/2002 12:21:48" UPTO_LINK_DATE="05/14/2002 12:21:48" />

<MATCHING_FILE NAME="New Folder\Windows_XP_Product_Activation_Killer.exe" SIZE="69632" CHECKSUM="0x6A3741F9" BIN_FILE_VERSION="1.5.0.0" BIN_PRODUCT_VERSION="1.5.0.0" PRODUCT_VERSION="1.05" PRODUCT_NAME="Windows 2003 &amp; XP Anti Product Activation Patch" FILE_VERSION="1.05" ORIGINAL_FILENAME="WPA_Kill.exe" INTERNAL_NAME="WPA_Kill" VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x1" MODULE_TYPE="WIN32" PE_CHECKSUM="0x15689" LINKER_VERSION="0x10005" UPTO_BIN_FILE_VERSION="1.5.0.0" UPTO_BIN_PRODUCT_VERSION="1.5.0.0" LINK_DATE="07/08/2004 14:46:14" UPTO_LINK_DATE="07/08/2004 14:46:14" VER_LANGUAGE="German (Germany) [0x407]" />

<MATCHING_FILE NAME="New Folder\Windows_XP_Service_Pack_2_Keygen.exe" SIZE="98304" CHECKSUM="0xE20B203B" BIN_FILE_VERSION="1.0.0.1" BIN_PRODUCT_VERSION="1.0.0.1" PRODUCT_VERSION="1, 0, 0, 1" FILE_DESCRIPTION="SP2 keygen by ORGix" COMPANY_NAME="MaTher-HackErS Designers 2004" PRODUCT_NAME="SP2 keygen" FILE_VERSION="1, 0, 0, 1" ORIGINAL_FILENAME="sp2keygen.EXE" INTERNAL_NAME="SP2keygen" LEGAL_COPYRIGHT="ORGix © 2004" VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x1" MODULE_TYPE="WIN32" PE_CHECKSUM="0x0" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="1.0.0.1" UPTO_BIN_PRODUCT_VERSION="1.0.0.1" LINK_DATE="03/11/2004 00:42:58" UPTO_LINK_DATE="03/11/2004 00:42:58" VER_LANGUAGE="Chinese (PRC) [0x804]" />

</EXE>

<EXE NAME="kernel32.dll" FILTER="GRABMI_FILTER_THISFILEONLY">

<MATCHING_FILE NAME="kernel32.dll" SIZE="983552" CHECKSUM="0x4CE79457" BIN_FILE_VERSION="5.1.2600.2180" BIN_PRODUCT_VERSION="5.1.2600.2180" PRODUCT_VERSION="5.1.2600.2180" FILE_DESCRIPTION="Windows NT BASE API Client DLL" COMPANY_NAME="Microsoft Corporation" PRODUCT_NAME="Microsoft® Windows® Operating System" FILE_VERSION="5.1.2600.2180 (xpsp_sp2_rtm.040803-2158)" ORIGINAL_FILENAME="kernel32" INTERNAL_NAME="kernel32" LEGAL_COPYRIGHT="© Microsoft Corporation. All rights reserved." VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x40004" VERFILETYPE="0x2" MODULE_TYPE="WIN32" PE_CHECKSUM="0xFF848" LINKER_VERSION="0x50001" UPTO_BIN_FILE_VERSION="5.1.2600.2180" UPTO_BIN_PRODUCT_VERSION="5.1.2600.2180" LINK_DATE="08/04/2004 07:56:36" UPTO_LINK_DATE="08/04/2004 07:56:36" VER_LANGUAGE="English (United States) [0x409]" />

</EXE>

</DATABASE>

Edited by Rahul Rohela
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...