Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

The code sample does not works with compress option QUESTION and help #52

Open
javmarquez13 opened this issue Mar 24, 2021 · 10 comments
Open

Comments

@javmarquez13
Copy link

When i try to capture image with compres.Xpress or compres.lzx the code not working, look like a the script
stops working and does nothing

image

this is mi code

#region WIMGAPI
WimMessageCallback wimMessageCallback;
CopyFileProgressCallback copyFileProgressCallback;
CopyFileProgress _copyFiles;
WimMessageResult _WimMessageResult;
WimHandle _handleByCapturingImg;

//Release Function to Capture Image WIMGAPI
void WIMGAPI_CaptureImage()
{
    try
    {

        
        WimgApi.RegisterLogFile(@"W:\logfileResult.txt");

        // Open a handle to the .wim file
        WimHandle _handle = WimgApi.CreateFile(@"W:\Test_LZX_Compress.wim",
                                                WimFileAccess.Write,
                                                WimCreationDisposition.CreateNew,
                                                WimCreateFileOptions.Verify,
                                                WimCompressionType.Xpress);
        try
        {
            //Always create a temporal path to create a temporal files during the capture
            WimgApi.SetTemporaryPath(_handle, @"W:\");

            //Create delegate to get information during de capturing image
            //wimMessageCallback = new WimMessageCallback(WimCallBack); verify if is necessary create a instance

            //Register the callback method with the specific handle returned by wimgapi.CreateFile
            WimgApi.RegisterMessageCallback(_handle, WimCallBackMethod);

            //Call function to Capture the image
            _handleByCapturingImg = WimgApi.CaptureImage(_handle, @"D:\", WimCaptureImageOptions.None);
        }
        finally
        {
            // Be sure to unregister the callback method                    
            WimgApi.UnregisterMessageCallback(_handle, WimCallBackMethod);

            WimgApi.UnregisterLogFile(@"W:\logfileResult.txt");
        }


        //Be sure that close the handle for the capturing image next close the handle for the createfile
        _handleByCapturingImg.Close();
        _handle.Close();

        MessageBox.Show("Capture Image Finished");
    }
    catch (Exception ex)
    {
        MessageBox.Show(ex.Message);
    }
}


private  void btnCaptureWimGapi_Click(object sender, EventArgs e)
{
    WIMGAPI_CaptureImage();
}

private WimMessageResult WimCallBackMethod(WimMessageType _MessageType, object _message, object _userData)
{
    // This method is called for every single action during the process being executed.
    // In the case of apply, you'll get Progress, Info, Warnings, Errors, etc
    //
    // The trick is to determine the message type and cast the "message" param to the corresponding type
    //
    _WimMessageResult = WimMessageResult.Success;

    switch (_MessageType)
    {
        case WimMessageType.Progress:  // Some progress is being sent

            // Get the message as a WimMessageProgress object
            //
            WimMessageProgress progressMessage = (WimMessageProgress)_message;

            // Print the progress
            //
            lblProgress.Text =  "progress: " +  progressMessage.PercentComplete.ToString("#0.##%");
            lblEstimatedTime.Text = "Estimated Time Remaining: " + progressMessage.EstimatedTimeRemaining.TotalMinutes.ToString();                    
            lblEstimatedTime.Refresh();
            lblProgress.Refresh();
            break;


        case WimMessageType.Process:  // Some progress is being sent

            // Get the message as a WimMessageProgress object
            //
            WimMessageProcess processMessage = (WimMessageProcess)_message;

            // Print the Current file 
            //
            lblFilesInfo.Text = "File: " + processMessage.Path;                   
            lblFilesInfo.Refresh();
            break;

        case WimMessageType.Scanning:  // Some progress is being sent

            // Get the message as a WimMessageProgress object
            //
            WimMessageScanning scanningMessage = (WimMessageScanning)_message;

            // Print the Current file 
            //
            lblCountFiles.Text = "Count Files: " + scanningMessage.Count.ToString();
            lblCountFiles.Refresh();
            break;

        
        case WimMessageType.Compress:  // Some progress is being sent

            // Get the message as a WimMessageProgress object
            //
            WimMessageCompress compressMessage = (WimMessageCompress)_message;

            // Print the Current file 
            //
            lblFilesInfo.Text = "Compress File: " + compressMessage.Path;
            lblFilesInfo.Refresh();
            break;


        case WimMessageType.Warning:  // A warning is being sent

            // Get the message as a WimMessageProgress object
            //
            WimMessageWarning warningMessage = (WimMessageWarning)_message;

            // Print the file and error code
            //
            _WimMessageResult = WimMessageResult.Abort;
            break;

        case WimMessageType.Error:  // An error is being sent

            // Get the message as a WimMessageError object
            //
            WimMessageError errorMessage = (WimMessageError)_message;

            // Print the file and error code
            //
            Console.WriteLine("Error: {0} ({1})", errorMessage.Path, errorMessage.Win32ErrorCode);
            _WimMessageResult = WimMessageResult.Abort;
            break;
    }

    // Depending on what this method returns, the WIMGAPI will continue or cancel.
    //
    // Return WimMessageResult.Abort to cancel.  In this case we return Success so WIMGAPI keeps going


    return _WimMessageResult;      
}
@javmarquez13 javmarquez13 changed the title The code sample does not works with compress option The code sample does not works with compress option QUESTION and help Mar 24, 2021
@jeffkl
Copy link
Owner

jeffkl commented Mar 24, 2021

It looks like if there's a warning, you just aborting, perhaps there's a warning coming through? Is there any info in your logfile?

@javmarquez13
Copy link
Author

It looks like if there's a warning, you just aborting, perhaps there's a warning coming through? Is there any info in your logfile?

No, the log file result is empty, let me check if removing the line "_WimMessageResult = WimMessageResult.Abort" in warning works

@javmarquez13
Copy link
Author

Still not working, looks like the application get freeze or something like that

this files are created after start the capturing, but never progress and in the result file is empty not show more information

image

image

Any suggestion?

Thanks in advance!

@jeffkl
Copy link
Owner

jeffkl commented Mar 25, 2021

I'm not quite sure what's going on. We have this unit test that does a capture:

https://github.com/jeffkl/ManagedWimgApi/blob/master/src/Microsoft.Wim.Tests/CaptureImageTests.cs#L23

I updated the test to capture all messages and write them to the console and this is what I get:

Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile031cb0db-cc1d-4f48-8e1a-fd584fbd9d21.txt / True
Scanning: Files / 0
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile0484ba36-8ab6-4bf6-8e07-c53e32491a35.txt / True
Scanning: Files / 1
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile0ee66c0e-f91b-46b8-90fe-eb3ade0d18e8.txt / True
Scanning: Files / 2
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile0ee9c4d3-3950-4fe3-a792-2c3f54530eae.txt / True
Scanning: Files / 3
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile1641cd4a-50f9-4790-ba26-77dcbddaf19f.txt / True
Scanning: Files / 4
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile188ba951-542f-4c70-b881-7997f78b061d.txt / True
Scanning: Files / 5
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile191cd6fa-7bbb-4a2e-8c30-36fbb1106a64.txt / True
Scanning: Files / 6
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile19a519fb-3a3b-43fa-bcd1-06fbe563c749.txt / True
Scanning: Files / 7
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile24548ffa-3cf3-4f8e-8942-50e61b46cfe7.txt / True
Scanning: Files / 8
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile26eba3e2-56bc-44c8-a916-c230107d2f8c.txt / True
Scanning: Files / 9
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile2f930ceb-f543-43bb-b80e-43cfe7e2564c.txt / True
Scanning: Files / 10
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile30286f81-adc1-4b9d-b339-ad4ff59beb87.txt / True
Scanning: Files / 11
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile308fa6f5-f8e3-4629-a13b-6c1dbb8cf060.txt / True
Scanning: Files / 12
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile311d5abc-fd40-42a8-bbd9-830a560e917f.txt / True
Scanning: Files / 13
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile38468e55-50ba-4423-a64f-85b0323f923b.txt / True
Scanning: Files / 14
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile39f67ae2-9edf-42fc-b69e-006274d5dcbd.txt / True
Scanning: Files / 15
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile3d57a65a-861c-45a4-816c-2b50eeef091f.txt / True
Scanning: Files / 16
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile3ee66a3b-2884-4bfc-a17c-b631c4caba0e.txt / True
Scanning: Files / 17
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile430bd39e-d525-4fcb-b227-7bac40938607.txt / True
Scanning: Files / 18
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile4795f73e-8e84-484d-bf97-06259c951bd3.txt / True
Scanning: Files / 19
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile487ee427-1c08-4056-83d5-52be1f43edcb.txt / True
Scanning: Files / 20
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile4baf705d-7219-48fd-9e0c-2830d0265aeb.txt / True
Scanning: Files / 21
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile4cc28177-5e60-4d8a-a7f0-b271793d8ccf.txt / True
Scanning: Files / 22
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile5c0ff67b-eb55-4673-a5c1-f799c1f962fd.txt / True
Scanning: Files / 23
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile5e924df6-a444-450a-9d83-d9f2506f3ddc.txt / True
Scanning: Files / 24
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile62747c19-4407-44c1-90f4-0d7329918904.txt / True
Scanning: Files / 25
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile6d2969a7-d8aa-4be9-9c94-ad8714e95ebe.txt / True
Scanning: Files / 26
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile6db7e32f-6618-4bb7-af89-f1057a0d7dcd.txt / True
Scanning: Files / 27
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile6dd1d8c6-6c95-4c48-8f9b-c52f0ee2b954.txt / True
Scanning: Files / 28
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile6f3bc35e-993e-4cac-a2a3-4f5d8fdd9274.txt / True
Scanning: Files / 29
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile6f5aa5ad-718c-49bd-a2d7-b407a6034f38.txt / True
Scanning: Files / 30
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile708976fb-87b2-450f-ade9-339993fc0b0f.txt / True
Scanning: Files / 31
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile70958183-7176-4f14-aa3c-efdd5f3ab48c.txt / True
Scanning: Files / 32
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile78ea2163-3357-4af4-8969-932e09a41f68.txt / True
Scanning: Files / 33
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile7b67e306-1b97-4edd-bedf-9348341e1d1c.txt / True
Scanning: Files / 34
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile7c19013d-2884-44c1-bec2-0bd13ce0fbc9.txt / True
Scanning: Files / 35
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile7ecf5841-13c5-40be-8167-5fb75ec3cddf.txt / True
Scanning: Files / 36
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile80d993e5-2fba-4d93-8150-cc6d0ec6e548.txt / True
Scanning: Files / 37
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile82b8f471-c02c-412e-a2ef-56e748d8da12.txt / True
Scanning: Files / 38
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile86a6f81c-ac63-48ba-b648-8cbc0bc84bf1.txt / True
Scanning: Files / 39
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile8f6e410f-fec0-472b-bbe6-11237159a75b.txt / True
Scanning: Files / 40
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile901230cd-7aa4-4481-86c9-8388d3d9611a.txt / True
Scanning: Files / 41
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile95f0d501-5952-479c-8fcb-192dba6001e2.txt / True
Scanning: Files / 42
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile9732cf37-12cd-412c-8857-db5ff6ae16cc.txt / True
Scanning: Files / 43
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile9760a157-535e-4429-8e05-8398a532dddf.txt / True
Scanning: Files / 44
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile992616f2-ff9d-4603-bbae-07434adafe1c.txt / True
Scanning: Files / 45
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile998b2fef-4a59-4ae8-a2e7-e2eb810de384.txt / True
Scanning: Files / 46
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile9ac46089-5aa7-444c-8285-9eab9a3e685d.txt / True
Scanning: Files / 47
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile9b3332ac-32a2-4597-a50e-2528ad296b4d.txt / True
Scanning: Files / 48
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilea783150e-e541-4de4-b24e-85b98306acc2.txt / True
Scanning: Files / 49
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilea7e19455-ecef-41f0-bab8-b01fc51fd9d7.txt / True
Scanning: Files / 50
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilea8e82392-05d6-4e87-bae7-61cb0d010a07.txt / True
Scanning: Files / 51
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFileaa92f9e8-07d9-422a-a198-313e836ab865.txt / True
Scanning: Files / 52
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFileab681690-eaae-4bb3-aa1b-449253aedbab.txt / True
Scanning: Files / 53
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFileabf171e1-7a7b-4355-9b45-c182da3488b7.txt / True
Scanning: Files / 54
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFileacf175af-90f7-4de1-bb37-d9af316b9795.txt / True
Scanning: Files / 55
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFileadd2e6a1-e7b8-47f2-8e24-ca6a8e0e4bc1.txt / True
Scanning: Files / 56
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFileae704e0b-7199-42cf-b98d-e5a12e30fa73.txt / True
Scanning: Files / 57
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFileaed9f6ea-2627-464a-8265-505e2d3fd787.txt / True
Scanning: Files / 58
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFileaef29cf9-b579-4518-a646-30f62d7891d6.txt / True
Scanning: Files / 59
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFileb1fad679-467e-41fa-a7b8-e52c36cd99e8.txt / True
Scanning: Files / 60
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFileb2eb632e-379e-4432-bbac-630c6db14316.txt / True
Scanning: Files / 61
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFileb45bb427-d713-4a9c-8838-2caf9d10fff9.txt / True
Scanning: Files / 62
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFileb583b2b6-8687-4250-b605-c3f3ed255697.txt / True
Scanning: Files / 63
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFileb5f6fd13-1ad7-4d7a-96b2-11af23614d2b.txt / True
Scanning: Files / 64
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFileba9f5164-660e-45c7-872a-69b6725a0cf3.txt / True
Scanning: Files / 65
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilebbcb0f57-3897-4232-a058-d7d79a4cbf8f.txt / True
Scanning: Files / 66
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilebbfd7287-a0d6-4d0c-bc62-b29451be4d68.txt / True
Scanning: Files / 67
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilebd5f86b7-2d9c-4c38-906d-bceb300e36a7.txt / True
Scanning: Files / 68
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilebee29973-26c7-415d-ae9a-de7de18b7c58.txt / True
Scanning: Files / 69
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilec02f3e00-56db-4b59-b625-b192916e4666.txt / True
Scanning: Files / 70
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilec055be2d-ebb8-4ef6-ac3b-a71b48eeb404.txt / True
Scanning: Files / 71
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilec26352c9-5617-40ac-802a-dbc60832cfee.txt / True
Scanning: Files / 72
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilec3493a51-c05b-4818-923d-1910cb8b9ad5.txt / True
Scanning: Files / 73
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilec70e062d-8c7e-492f-ad02-04126b60ca6e.txt / True
Scanning: Files / 74
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilec8883ef3-d480-47c6-adc5-7e6648ad8157.txt / True
Scanning: Files / 75
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilec8cf4d98-1a98-42d4-ab1b-04630569d390.txt / True
Scanning: Files / 76
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilec942c7fc-5fae-4852-982b-0de9c0c9992b.txt / True
Scanning: Files / 77
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilecc1f46d7-2413-482a-b1a0-0f22e7d0e9b5.txt / True
Scanning: Files / 78
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilecf16fc73-cc86-472e-a03c-4bb476239523.txt / True
Scanning: Files / 79
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilecf62fb40-d33d-4c9a-91ab-e989d0e58b38.txt / True
Scanning: Files / 80
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFiled018f96b-b37d-41e8-b75e-cebe744f3ae4.txt / True
Scanning: Files / 81
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFiled2bf374a-aac4-4dd1-9452-a77b2ac69fe5.txt / True
Scanning: Files / 82
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFiled4930f5f-a6f6-4adb-893a-08e817bf0b3c.txt / True
Scanning: Files / 83
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFiled4cc7bfc-2ded-4d58-ba97-e25fe74032c8.txt / True
Scanning: Files / 84
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFiled61f0820-cdde-49bd-a029-ce46c98d7f13.txt / True
Scanning: Files / 85
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFileda3497d9-e5b2-43df-b0cb-b7bd744de659.txt / True
Scanning: Files / 86
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFiledf0ceb20-f5aa-40ef-ac95-06ea9a9a956a.txt / True
Scanning: Files / 87
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilee14729ce-797a-4f58-a665-569eb195437e.txt / True
Scanning: Files / 88
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilee2360288-2480-4db0-ab6b-4901da9801cc.txt / True
Scanning: Files / 89
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilee4cc29b0-7566-497c-890a-2a2b32eaf0e8.txt / True
Scanning: Files / 90
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFileeacd3ea8-deb6-4aec-8bad-27b37a53963e.txt / True
Scanning: Files / 91
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilef05ab001-68d5-4ee7-a8d4-c254738c0dfc.txt / True
Scanning: Files / 92
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilef2702397-cdbb-49d3-b173-d392323e5ce6.txt / True
Scanning: Files / 93
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilef35dffca-2d65-41b3-a4f8-5640a42ffaff.txt / True
Scanning: Files / 94
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilef5c27a5f-b8ca-4747-ad86-5b6353e6f04d.txt / True
Scanning: Files / 95
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilef73d9bed-bfea-4070-a966-bd2bc564ec59.txt / True
Scanning: Files / 96
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilef773ac72-69ae-4835-930e-22f6e03b892d.txt / True
Scanning: Files / 97
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilef796a9f7-ba98-4c85-a73c-718afc33bab4.txt / True
Scanning: Files / 98
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilefdddbc10-714c-40c9-a5d9-95ce13fe72d5.txt / True
Scanning: Files / 99
SetRange: 100
SetPosition: 0
Progress: 00:00:00 / 0
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile031cb0db-cc1d-4f48-8e1a-fd584fbd9d21.txt / True
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile031cb0db-cc1d-4f48-8e1a-fd584fbd9d21.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile031cb0db-cc1d-4f48-8e1a-fd584fbd9d21.txt / 0
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile0484ba36-8ab6-4bf6-8e07-c53e32491a35.txt / True
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile0484ba36-8ab6-4bf6-8e07-c53e32491a35.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile0484ba36-8ab6-4bf6-8e07-c53e32491a35.txt / 0
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile0ee66c0e-f91b-46b8-90fe-eb3ade0d18e8.txt / True
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile0ee66c0e-f91b-46b8-90fe-eb3ade0d18e8.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile0ee66c0e-f91b-46b8-90fe-eb3ade0d18e8.txt / 0
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile0ee9c4d3-3950-4fe3-a792-2c3f54530eae.txt / True
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile0ee9c4d3-3950-4fe3-a792-2c3f54530eae.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile0ee9c4d3-3950-4fe3-a792-2c3f54530eae.txt / 0
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile1641cd4a-50f9-4790-ba26-77dcbddaf19f.txt / True
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile1641cd4a-50f9-4790-ba26-77dcbddaf19f.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile1641cd4a-50f9-4790-ba26-77dcbddaf19f.txt / 0
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile188ba951-542f-4c70-b881-7997f78b061d.txt / True
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile188ba951-542f-4c70-b881-7997f78b061d.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile188ba951-542f-4c70-b881-7997f78b061d.txt / 0
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile191cd6fa-7bbb-4a2e-8c30-36fbb1106a64.txt / True
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile191cd6fa-7bbb-4a2e-8c30-36fbb1106a64.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile191cd6fa-7bbb-4a2e-8c30-36fbb1106a64.txt / 0
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile19a519fb-3a3b-43fa-bcd1-06fbe563c749.txt / True
Progress: 00:00:00 / 1
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile19a519fb-3a3b-43fa-bcd1-06fbe563c749.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile19a519fb-3a3b-43fa-bcd1-06fbe563c749.txt / 0
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile24548ffa-3cf3-4f8e-8942-50e61b46cfe7.txt / True
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile24548ffa-3cf3-4f8e-8942-50e61b46cfe7.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile24548ffa-3cf3-4f8e-8942-50e61b46cfe7.txt / 0
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile26eba3e2-56bc-44c8-a916-c230107d2f8c.txt / True
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile26eba3e2-56bc-44c8-a916-c230107d2f8c.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile26eba3e2-56bc-44c8-a916-c230107d2f8c.txt / 0
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile2f930ceb-f543-43bb-b80e-43cfe7e2564c.txt / True
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile2f930ceb-f543-43bb-b80e-43cfe7e2564c.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile2f930ceb-f543-43bb-b80e-43cfe7e2564c.txt / 0
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile30286f81-adc1-4b9d-b339-ad4ff59beb87.txt / True
Progress: 00:00:00 / 2
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile30286f81-adc1-4b9d-b339-ad4ff59beb87.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile30286f81-adc1-4b9d-b339-ad4ff59beb87.txt / 0
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile308fa6f5-f8e3-4629-a13b-6c1dbb8cf060.txt / True
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile308fa6f5-f8e3-4629-a13b-6c1dbb8cf060.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile308fa6f5-f8e3-4629-a13b-6c1dbb8cf060.txt / 0
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile311d5abc-fd40-42a8-bbd9-830a560e917f.txt / True
Progress: 00:00:00 / 3
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile311d5abc-fd40-42a8-bbd9-830a560e917f.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile311d5abc-fd40-42a8-bbd9-830a560e917f.txt / 0
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile38468e55-50ba-4423-a64f-85b0323f923b.txt / True
Progress: 00:00:00 / 4
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile38468e55-50ba-4423-a64f-85b0323f923b.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile38468e55-50ba-4423-a64f-85b0323f923b.txt / 0
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile39f67ae2-9edf-42fc-b69e-006274d5dcbd.txt / True
Progress: 00:00:00 / 5
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile39f67ae2-9edf-42fc-b69e-006274d5dcbd.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile39f67ae2-9edf-42fc-b69e-006274d5dcbd.txt / 0
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile3d57a65a-861c-45a4-816c-2b50eeef091f.txt / True
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile3d57a65a-861c-45a4-816c-2b50eeef091f.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile3d57a65a-861c-45a4-816c-2b50eeef091f.txt / 0
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile3ee66a3b-2884-4bfc-a17c-b631c4caba0e.txt / True
Progress: 00:00:00 / 6
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile3ee66a3b-2884-4bfc-a17c-b631c4caba0e.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile3ee66a3b-2884-4bfc-a17c-b631c4caba0e.txt / 0
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile430bd39e-d525-4fcb-b227-7bac40938607.txt / True
Progress: 00:00:00 / 7
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile430bd39e-d525-4fcb-b227-7bac40938607.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile430bd39e-d525-4fcb-b227-7bac40938607.txt / 0
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile4795f73e-8e84-484d-bf97-06259c951bd3.txt / True
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile4795f73e-8e84-484d-bf97-06259c951bd3.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile4795f73e-8e84-484d-bf97-06259c951bd3.txt / 0
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile487ee427-1c08-4056-83d5-52be1f43edcb.txt / True
Progress: 00:00:00 / 8
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile487ee427-1c08-4056-83d5-52be1f43edcb.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile487ee427-1c08-4056-83d5-52be1f43edcb.txt / 0
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile4baf705d-7219-48fd-9e0c-2830d0265aeb.txt / True
Progress: 00:00:00 / 9
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile4baf705d-7219-48fd-9e0c-2830d0265aeb.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile4baf705d-7219-48fd-9e0c-2830d0265aeb.txt / 0
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile4cc28177-5e60-4d8a-a7f0-b271793d8ccf.txt / True
Progress: 00:00:00 / 10
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile4cc28177-5e60-4d8a-a7f0-b271793d8ccf.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile4cc28177-5e60-4d8a-a7f0-b271793d8ccf.txt / 0
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile5c0ff67b-eb55-4673-a5c1-f799c1f962fd.txt / True
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile5c0ff67b-eb55-4673-a5c1-f799c1f962fd.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile5c0ff67b-eb55-4673-a5c1-f799c1f962fd.txt / 0
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile5e924df6-a444-450a-9d83-d9f2506f3ddc.txt / True
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile5e924df6-a444-450a-9d83-d9f2506f3ddc.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile5e924df6-a444-450a-9d83-d9f2506f3ddc.txt / 0
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile62747c19-4407-44c1-90f4-0d7329918904.txt / True
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile62747c19-4407-44c1-90f4-0d7329918904.txt / True
Progress: 00:00:00 / 11
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile62747c19-4407-44c1-90f4-0d7329918904.txt / 0
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile6d2969a7-d8aa-4be9-9c94-ad8714e95ebe.txt / True
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile6d2969a7-d8aa-4be9-9c94-ad8714e95ebe.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile6d2969a7-d8aa-4be9-9c94-ad8714e95ebe.txt / 0
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile6db7e32f-6618-4bb7-af89-f1057a0d7dcd.txt / True
Progress: 00:00:00 / 12
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile6db7e32f-6618-4bb7-af89-f1057a0d7dcd.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile6db7e32f-6618-4bb7-af89-f1057a0d7dcd.txt / 0
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile6dd1d8c6-6c95-4c48-8f9b-c52f0ee2b954.txt / True
Progress: 00:00:00 / 13
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile6dd1d8c6-6c95-4c48-8f9b-c52f0ee2b954.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile6dd1d8c6-6c95-4c48-8f9b-c52f0ee2b954.txt / 0
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile6f3bc35e-993e-4cac-a2a3-4f5d8fdd9274.txt / True
Progress: 00:00:00 / 14
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile6f3bc35e-993e-4cac-a2a3-4f5d8fdd9274.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile6f3bc35e-993e-4cac-a2a3-4f5d8fdd9274.txt / 0
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile6f5aa5ad-718c-49bd-a2d7-b407a6034f38.txt / True
Progress: 00:00:00 / 15
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile6f5aa5ad-718c-49bd-a2d7-b407a6034f38.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile6f5aa5ad-718c-49bd-a2d7-b407a6034f38.txt / 0
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile708976fb-87b2-450f-ade9-339993fc0b0f.txt / True
Progress: 00:00:00 / 16
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile708976fb-87b2-450f-ade9-339993fc0b0f.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile708976fb-87b2-450f-ade9-339993fc0b0f.txt / 0
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile70958183-7176-4f14-aa3c-efdd5f3ab48c.txt / True
Progress: 00:00:00 / 17
Progress: 00:00:00 / 18
Progress: 00:00:00 / 19
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile70958183-7176-4f14-aa3c-efdd5f3ab48c.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile70958183-7176-4f14-aa3c-efdd5f3ab48c.txt / 0
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile78ea2163-3357-4af4-8969-932e09a41f68.txt / True
Progress: 00:00:00 / 20
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile78ea2163-3357-4af4-8969-932e09a41f68.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile78ea2163-3357-4af4-8969-932e09a41f68.txt / 0
Progress: 00:00:00 / 21
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile7b67e306-1b97-4edd-bedf-9348341e1d1c.txt / True
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile7b67e306-1b97-4edd-bedf-9348341e1d1c.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile7b67e306-1b97-4edd-bedf-9348341e1d1c.txt / 0
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile7c19013d-2884-44c1-bec2-0bd13ce0fbc9.txt / True
Progress: 00:00:00 / 22
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile7c19013d-2884-44c1-bec2-0bd13ce0fbc9.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile7c19013d-2884-44c1-bec2-0bd13ce0fbc9.txt / 0
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile7ecf5841-13c5-40be-8167-5fb75ec3cddf.txt / True
Progress: 00:00:00 / 23
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile7ecf5841-13c5-40be-8167-5fb75ec3cddf.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile7ecf5841-13c5-40be-8167-5fb75ec3cddf.txt / 0
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile80d993e5-2fba-4d93-8150-cc6d0ec6e548.txt / True
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile80d993e5-2fba-4d93-8150-cc6d0ec6e548.txt / True
Progress: 00:00:00 / 24
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile80d993e5-2fba-4d93-8150-cc6d0ec6e548.txt / 0
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile82b8f471-c02c-412e-a2ef-56e748d8da12.txt / True
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile82b8f471-c02c-412e-a2ef-56e748d8da12.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile82b8f471-c02c-412e-a2ef-56e748d8da12.txt / 0
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile86a6f81c-ac63-48ba-b648-8cbc0bc84bf1.txt / True
Progress: 00:00:00 / 25
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile86a6f81c-ac63-48ba-b648-8cbc0bc84bf1.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile86a6f81c-ac63-48ba-b648-8cbc0bc84bf1.txt / 0
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile8f6e410f-fec0-472b-bbe6-11237159a75b.txt / True
Progress: 00:00:00 / 26
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile8f6e410f-fec0-472b-bbe6-11237159a75b.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile8f6e410f-fec0-472b-bbe6-11237159a75b.txt / 0
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile901230cd-7aa4-4481-86c9-8388d3d9611a.txt / True
Progress: 00:00:00 / 27
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile901230cd-7aa4-4481-86c9-8388d3d9611a.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile901230cd-7aa4-4481-86c9-8388d3d9611a.txt / 0
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile95f0d501-5952-479c-8fcb-192dba6001e2.txt / True
Progress: 00:00:00 / 28
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile95f0d501-5952-479c-8fcb-192dba6001e2.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile95f0d501-5952-479c-8fcb-192dba6001e2.txt / 0
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile9732cf37-12cd-412c-8857-db5ff6ae16cc.txt / True
Progress: 00:00:00 / 29
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile9732cf37-12cd-412c-8857-db5ff6ae16cc.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile9732cf37-12cd-412c-8857-db5ff6ae16cc.txt / 0
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile9760a157-535e-4429-8e05-8398a532dddf.txt / True
Progress: 00:00:00 / 30
Progress: 00:00:00 / 31
Progress: 00:00:00 / 32
Progress: 00:00:00 / 33
Progress: 00:00:00 / 34
Progress: 00:00:00 / 35
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile9760a157-535e-4429-8e05-8398a532dddf.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile9760a157-535e-4429-8e05-8398a532dddf.txt / 0
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile992616f2-ff9d-4603-bbae-07434adafe1c.txt / True
Progress: 00:00:00 / 36
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile992616f2-ff9d-4603-bbae-07434adafe1c.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile992616f2-ff9d-4603-bbae-07434adafe1c.txt / 0
Progress: 00:00:00 / 37
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile998b2fef-4a59-4ae8-a2e7-e2eb810de384.txt / True
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile998b2fef-4a59-4ae8-a2e7-e2eb810de384.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile998b2fef-4a59-4ae8-a2e7-e2eb810de384.txt / 0
Progress: 00:00:00 / 38
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile9ac46089-5aa7-444c-8285-9eab9a3e685d.txt / True
Progress: 00:00:00 / 39
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile9ac46089-5aa7-444c-8285-9eab9a3e685d.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile9ac46089-5aa7-444c-8285-9eab9a3e685d.txt / 0
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile9b3332ac-32a2-4597-a50e-2528ad296b4d.txt / True
Progress: 00:00:00 / 40
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile9b3332ac-32a2-4597-a50e-2528ad296b4d.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFile9b3332ac-32a2-4597-a50e-2528ad296b4d.txt / 0
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilea783150e-e541-4de4-b24e-85b98306acc2.txt / True
Progress: 00:00:00 / 41
Progress: 00:00:00 / 42
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilea783150e-e541-4de4-b24e-85b98306acc2.txt / True
Progress: 00:00:00 / 43
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilea783150e-e541-4de4-b24e-85b98306acc2.txt / 0
Progress: 00:00:00 / 44
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilea7e19455-ecef-41f0-bab8-b01fc51fd9d7.txt / True
Progress: 00:00:00 / 45
Progress: 00:00:00 / 46
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilea7e19455-ecef-41f0-bab8-b01fc51fd9d7.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilea7e19455-ecef-41f0-bab8-b01fc51fd9d7.txt / 0
Progress: 00:00:00 / 47
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilea8e82392-05d6-4e87-bae7-61cb0d010a07.txt / True
Progress: 00:00:00 / 48
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilea8e82392-05d6-4e87-bae7-61cb0d010a07.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilea8e82392-05d6-4e87-bae7-61cb0d010a07.txt / 0
Progress: 00:00:00 / 49
Progress: 00:00:00 / 50
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFileaa92f9e8-07d9-422a-a198-313e836ab865.txt / True
Progress: 00:00:00 / 51
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFileaa92f9e8-07d9-422a-a198-313e836ab865.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFileaa92f9e8-07d9-422a-a198-313e836ab865.txt / 0
Progress: 00:00:00 / 52
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFileab681690-eaae-4bb3-aa1b-449253aedbab.txt / True
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFileab681690-eaae-4bb3-aa1b-449253aedbab.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFileab681690-eaae-4bb3-aa1b-449253aedbab.txt / 0
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFileabf171e1-7a7b-4355-9b45-c182da3488b7.txt / True
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFileabf171e1-7a7b-4355-9b45-c182da3488b7.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFileabf171e1-7a7b-4355-9b45-c182da3488b7.txt / 0
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFileacf175af-90f7-4de1-bb37-d9af316b9795.txt / True
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFileacf175af-90f7-4de1-bb37-d9af316b9795.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFileacf175af-90f7-4de1-bb37-d9af316b9795.txt / 0
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFileadd2e6a1-e7b8-47f2-8e24-ca6a8e0e4bc1.txt / True
Progress: 00:00:00 / 53
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFileadd2e6a1-e7b8-47f2-8e24-ca6a8e0e4bc1.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFileadd2e6a1-e7b8-47f2-8e24-ca6a8e0e4bc1.txt / 0
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFileae704e0b-7199-42cf-b98d-e5a12e30fa73.txt / True
Progress: 00:00:00 / 54
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFileae704e0b-7199-42cf-b98d-e5a12e30fa73.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFileae704e0b-7199-42cf-b98d-e5a12e30fa73.txt / 0
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFileaed9f6ea-2627-464a-8265-505e2d3fd787.txt / True
Progress: 00:00:00 / 55
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFileaed9f6ea-2627-464a-8265-505e2d3fd787.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFileaed9f6ea-2627-464a-8265-505e2d3fd787.txt / 0
Progress: 00:00:00 / 56
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFileaef29cf9-b579-4518-a646-30f62d7891d6.txt / True
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFileaef29cf9-b579-4518-a646-30f62d7891d6.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFileaef29cf9-b579-4518-a646-30f62d7891d6.txt / 0
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFileb1fad679-467e-41fa-a7b8-e52c36cd99e8.txt / True
Progress: 00:00:00 / 57
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFileb1fad679-467e-41fa-a7b8-e52c36cd99e8.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFileb1fad679-467e-41fa-a7b8-e52c36cd99e8.txt / 0
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFileb2eb632e-379e-4432-bbac-630c6db14316.txt / True
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFileb2eb632e-379e-4432-bbac-630c6db14316.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFileb2eb632e-379e-4432-bbac-630c6db14316.txt / 0
Progress: 00:00:00 / 58
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFileb45bb427-d713-4a9c-8838-2caf9d10fff9.txt / True
Progress: 00:00:00 / 59
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFileb45bb427-d713-4a9c-8838-2caf9d10fff9.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFileb45bb427-d713-4a9c-8838-2caf9d10fff9.txt / 0
Progress: 00:00:00 / 60
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFileb583b2b6-8687-4250-b605-c3f3ed255697.txt / True
Progress: 00:00:00 / 61
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFileb583b2b6-8687-4250-b605-c3f3ed255697.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFileb583b2b6-8687-4250-b605-c3f3ed255697.txt / 0
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFileb5f6fd13-1ad7-4d7a-96b2-11af23614d2b.txt / True
Progress: 00:00:00 / 62
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFileb5f6fd13-1ad7-4d7a-96b2-11af23614d2b.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFileb5f6fd13-1ad7-4d7a-96b2-11af23614d2b.txt / 0
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFileba9f5164-660e-45c7-872a-69b6725a0cf3.txt / True
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFileba9f5164-660e-45c7-872a-69b6725a0cf3.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFileba9f5164-660e-45c7-872a-69b6725a0cf3.txt / 0
Progress: 00:00:00 / 63
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilebbcb0f57-3897-4232-a058-d7d79a4cbf8f.txt / True
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilebbcb0f57-3897-4232-a058-d7d79a4cbf8f.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilebbcb0f57-3897-4232-a058-d7d79a4cbf8f.txt / 0
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilebbfd7287-a0d6-4d0c-bc62-b29451be4d68.txt / True
Progress: 00:00:00 / 64
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilebbfd7287-a0d6-4d0c-bc62-b29451be4d68.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilebbfd7287-a0d6-4d0c-bc62-b29451be4d68.txt / 0
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilebd5f86b7-2d9c-4c38-906d-bceb300e36a7.txt / True
Progress: 00:00:00 / 65
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilebd5f86b7-2d9c-4c38-906d-bceb300e36a7.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilebd5f86b7-2d9c-4c38-906d-bceb300e36a7.txt / 0
Progress: 00:00:00 / 66
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilebee29973-26c7-415d-ae9a-de7de18b7c58.txt / True
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilebee29973-26c7-415d-ae9a-de7de18b7c58.txt / True
Progress: 00:00:00 / 67
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilebee29973-26c7-415d-ae9a-de7de18b7c58.txt / 0
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilec02f3e00-56db-4b59-b625-b192916e4666.txt / True
Progress: 00:00:00 / 68
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilec02f3e00-56db-4b59-b625-b192916e4666.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilec02f3e00-56db-4b59-b625-b192916e4666.txt / 0
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilec055be2d-ebb8-4ef6-ac3b-a71b48eeb404.txt / True
Progress: 00:00:00 / 69
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilec055be2d-ebb8-4ef6-ac3b-a71b48eeb404.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilec055be2d-ebb8-4ef6-ac3b-a71b48eeb404.txt / 0
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilec26352c9-5617-40ac-802a-dbc60832cfee.txt / True
Progress: 00:00:00 / 70
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilec26352c9-5617-40ac-802a-dbc60832cfee.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilec26352c9-5617-40ac-802a-dbc60832cfee.txt / 0
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilec3493a51-c05b-4818-923d-1910cb8b9ad5.txt / True
Progress: 00:00:00 / 71
Progress: 00:00:00 / 72
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilec3493a51-c05b-4818-923d-1910cb8b9ad5.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilec3493a51-c05b-4818-923d-1910cb8b9ad5.txt / 0
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilec70e062d-8c7e-492f-ad02-04126b60ca6e.txt / True
Progress: 00:00:00 / 73
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilec70e062d-8c7e-492f-ad02-04126b60ca6e.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilec70e062d-8c7e-492f-ad02-04126b60ca6e.txt / 0
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilec8883ef3-d480-47c6-adc5-7e6648ad8157.txt / True
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilec8883ef3-d480-47c6-adc5-7e6648ad8157.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilec8883ef3-d480-47c6-adc5-7e6648ad8157.txt / 0
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilec8cf4d98-1a98-42d4-ab1b-04630569d390.txt / True
Progress: 00:00:00 / 74
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilec8cf4d98-1a98-42d4-ab1b-04630569d390.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilec8cf4d98-1a98-42d4-ab1b-04630569d390.txt / 0
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilec942c7fc-5fae-4852-982b-0de9c0c9992b.txt / True
Progress: 00:00:00 / 75
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilec942c7fc-5fae-4852-982b-0de9c0c9992b.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilec942c7fc-5fae-4852-982b-0de9c0c9992b.txt / 0
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilecc1f46d7-2413-482a-b1a0-0f22e7d0e9b5.txt / True
Progress: 00:00:00 / 76
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilecc1f46d7-2413-482a-b1a0-0f22e7d0e9b5.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilecc1f46d7-2413-482a-b1a0-0f22e7d0e9b5.txt / 0
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilecf16fc73-cc86-472e-a03c-4bb476239523.txt / True
Progress: 00:00:00 / 77
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilecf16fc73-cc86-472e-a03c-4bb476239523.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilecf16fc73-cc86-472e-a03c-4bb476239523.txt / 0
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilecf62fb40-d33d-4c9a-91ab-e989d0e58b38.txt / True
Progress: 00:00:00 / 78
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilecf62fb40-d33d-4c9a-91ab-e989d0e58b38.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilecf62fb40-d33d-4c9a-91ab-e989d0e58b38.txt / 0
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFiled018f96b-b37d-41e8-b75e-cebe744f3ae4.txt / True
Progress: 00:00:00 / 79
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFiled018f96b-b37d-41e8-b75e-cebe744f3ae4.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFiled018f96b-b37d-41e8-b75e-cebe744f3ae4.txt / 0
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFiled2bf374a-aac4-4dd1-9452-a77b2ac69fe5.txt / True
Progress: 00:00:00 / 80
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFiled2bf374a-aac4-4dd1-9452-a77b2ac69fe5.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFiled2bf374a-aac4-4dd1-9452-a77b2ac69fe5.txt / 0
Progress: 00:00:00 / 81
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFiled4930f5f-a6f6-4adb-893a-08e817bf0b3c.txt / True
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFiled4930f5f-a6f6-4adb-893a-08e817bf0b3c.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFiled4930f5f-a6f6-4adb-893a-08e817bf0b3c.txt / 0
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFiled4cc7bfc-2ded-4d58-ba97-e25fe74032c8.txt / True
Progress: 00:00:00 / 82
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFiled4cc7bfc-2ded-4d58-ba97-e25fe74032c8.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFiled4cc7bfc-2ded-4d58-ba97-e25fe74032c8.txt / 0
Progress: 00:00:00 / 83
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFiled61f0820-cdde-49bd-a029-ce46c98d7f13.txt / True
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFiled61f0820-cdde-49bd-a029-ce46c98d7f13.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFiled61f0820-cdde-49bd-a029-ce46c98d7f13.txt / 0
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFileda3497d9-e5b2-43df-b0cb-b7bd744de659.txt / True
Progress: 00:00:00 / 84
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFileda3497d9-e5b2-43df-b0cb-b7bd744de659.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFileda3497d9-e5b2-43df-b0cb-b7bd744de659.txt / 0
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFiledf0ceb20-f5aa-40ef-ac95-06ea9a9a956a.txt / True
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFiledf0ceb20-f5aa-40ef-ac95-06ea9a9a956a.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFiledf0ceb20-f5aa-40ef-ac95-06ea9a9a956a.txt / 0
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilee14729ce-797a-4f58-a665-569eb195437e.txt / True
Progress: 00:00:00 / 85
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilee14729ce-797a-4f58-a665-569eb195437e.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilee14729ce-797a-4f58-a665-569eb195437e.txt / 0
Progress: 00:00:00 / 86
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilee2360288-2480-4db0-ab6b-4901da9801cc.txt / True
Progress: 00:00:00 / 87
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilee2360288-2480-4db0-ab6b-4901da9801cc.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilee2360288-2480-4db0-ab6b-4901da9801cc.txt / 0
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilee4cc29b0-7566-497c-890a-2a2b32eaf0e8.txt / True
Progress: 00:00:00 / 88
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilee4cc29b0-7566-497c-890a-2a2b32eaf0e8.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilee4cc29b0-7566-497c-890a-2a2b32eaf0e8.txt / 0
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFileeacd3ea8-deb6-4aec-8bad-27b37a53963e.txt / True
Progress: 00:00:00 / 89
Progress: 00:00:00 / 90
Progress: 00:00:00 / 91
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFileeacd3ea8-deb6-4aec-8bad-27b37a53963e.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFileeacd3ea8-deb6-4aec-8bad-27b37a53963e.txt / 0
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilef05ab001-68d5-4ee7-a8d4-c254738c0dfc.txt / True
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilef05ab001-68d5-4ee7-a8d4-c254738c0dfc.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilef05ab001-68d5-4ee7-a8d4-c254738c0dfc.txt / 0
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilef2702397-cdbb-49d3-b173-d392323e5ce6.txt / True
Progress: 00:00:00 / 92
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilef2702397-cdbb-49d3-b173-d392323e5ce6.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilef2702397-cdbb-49d3-b173-d392323e5ce6.txt / 0
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilef35dffca-2d65-41b3-a4f8-5640a42ffaff.txt / True
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilef35dffca-2d65-41b3-a4f8-5640a42ffaff.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilef35dffca-2d65-41b3-a4f8-5640a42ffaff.txt / 0
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilef5c27a5f-b8ca-4747-ad86-5b6353e6f04d.txt / True
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilef5c27a5f-b8ca-4747-ad86-5b6353e6f04d.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilef5c27a5f-b8ca-4747-ad86-5b6353e6f04d.txt / 0
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilef73d9bed-bfea-4070-a966-bd2bc564ec59.txt / True
Progress: 00:00:00 / 93
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilef73d9bed-bfea-4070-a966-bd2bc564ec59.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilef73d9bed-bfea-4070-a966-bd2bc564ec59.txt / 0
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilef773ac72-69ae-4835-930e-22f6e03b892d.txt / True
Progress: 00:00:00 / 94
Progress: 00:00:00 / 95
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilef773ac72-69ae-4835-930e-22f6e03b892d.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilef773ac72-69ae-4835-930e-22f6e03b892d.txt / 0
Progress: 00:00:00 / 96
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilef796a9f7-ba98-4c85-a73c-718afc33bab4.txt / True
Progress: 00:00:00 / 97
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilef796a9f7-ba98-4c85-a73c-718afc33bab4.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilef796a9f7-ba98-4c85-a73c-718afc33bab4.txt / 0
Process: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilefdddbc10-714c-40c9-a5d9-95ce13fe72d5.txt / True
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilefdddbc10-714c-40c9-a5d9-95ce13fe72d5.txt / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\capture\TestFilefdddbc10-714c-40c9-a5d9-95ce13fe72d5.txt / 0
Progress: 00:00:00 / 98
Progress: 00:00:00 / 99
Progress: 00:00:00 / 100
Compress: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\temp\e944ed85-2dfe-48db-b730-64b04cc53149 / True
Alignment: C:\Users\jeffkl\AppData\Local\Temp\1f7694923b1a4e90918118d5d507210b\temp\e944ed85-2dfe-48db-b730-64b04cc53149 / 0
Progress: 00:00:00 / 100
SetPosition: 100

Maybe you're getting another message type that is telling you what's going wrong? I'm really surprised the log file doesn't contain anything.

@javmarquez13
Copy link
Author

this is the information that show the log file

[5016] [0x80070006] AddFileNodeToImage:(895): The handle is invalid.
[5016] [0x80070006] EnumImageFiles:(134): The handle is invalid.
[5016] [0x80070006] EnumImageFiles:(153): The handle is invalid.
[5016] [0x80070006] WriteFileImage:(1002): The handle is invalid.

@javmarquez13
Copy link
Author

The application stay in a loop returning a QueryAbort into callback message

image

what could be the problem?

@javmarquez13
Copy link
Author

jeffkl another interesting thing is when i capture the image without the call back message method working fine capture the image with xpres.

What could be the issue ...

@jeffkl
Copy link
Owner

jeffkl commented Mar 30, 2021

The QueryAbort is sent to the callback method every 10MB to allow for cancellation. It would only happen endlessly if the image capture was huge. That's definitely strange that it completes fine with no callback, it must be something simple that's happening.

@javmarquez13
Copy link
Author

Jeffkl, i write a new console app and in this case the code its working fine, i don't know why not works from an windows forms applications

This is the code the i'am using in console application

  static void Main(string[] args)
    {
        WIMGAPI_CaptureImage();        
    }

    static int WIMGAPI_CaptureImage()
    {
        try
        {
            // Open a handle to the .wim file
            using (WimHandle _handle = WimgApi.CreateFile(@"W:\Test_LZX_Compress.wim",
                                                    WimFileAccess.Write,
                                                    WimCreationDisposition.CreateAlways,
                                                    WimCreateFileOptions.ShareWrite,
                                                    WimCompressionType.Xpress))
            {
                try
                {

                    //Register the callback method with the specific handle returned by wimgapi.CreateFile
                    WimgApi.RegisterMessageCallback(_handle, WimCallBackMethod);

                    WimMessageResult WimCallBackMethod(WimMessageType _MessageType, object _message, object _userData)
                    {
                        WimMessageResult _WimMessageResult = WimMessageResult.Success;


                        switch (_MessageType)
                        {
                            case WimMessageType.Progress:
                                WimMessageProgress progressMessage = (WimMessageProgress)_message;

                                Console.WriteLine("Percent: " + progressMessage.PercentComplete.ToString());

                                _WimMessageResult = WimMessageResult.Success;
                                break;


                            case WimMessageType.Process:
                                WimMessageProcess processMessage = (WimMessageProcess)_message;

                                Console.WriteLine("Copying: " + processMessage.Path);

                                _WimMessageResult = WimMessageResult.Success;
                                break;

                            case WimMessageType.Scanning:
                                WimMessageScanning wimMessageScanning = (WimMessageScanning)_message;

                                Console.WriteLine("Scanning: " + wimMessageScanning.Count);

                                _WimMessageResult = WimMessageResult.Success;
                                break;

                            case WimMessageType.Compress:
                                WimMessageCompress wimMessageCompress = (WimMessageCompress)_message;

                                Console.WriteLine("Compress: " + wimMessageCompress.Path + " " + wimMessageCompress.Compress.ToString());

                                _WimMessageResult = WimMessageResult.Success;
                                break;

                            case WimMessageType.Error:
                                _WimMessageResult = WimMessageResult.Abort;
                                break;
                        }

                        return _WimMessageResult;
                    }

                    //Always create a temporal path to create a temporal files during the capture
                    WimgApi.SetTemporaryPath(_handle, @"W:\");

                    //Register log file
                    WimgApi.RegisterLogFile(@"W:\log.txt");

                    using (WimHandle _handleByCapturingImg = WimgApi.CaptureImage(_handle, @"C:\Mavis\", WimCaptureImageOptions.None))
                    {

                    }
                }

                finally
                {
                    WimgApi.UnregisterLogFile(@"W:\log.txt");

                    // Be sure to unregister the callback method                    
                    //WimgApi.UnregisterMessageCallback(_handle, WimCallBackMethod);
                }


            }
        }
        catch (Exception ex)
        {
            
        }

        return 0;
    }

Do you tried it to capture an image from a windows form application?

Perhaps i have a threads conflict into the windows form application

@jeffkl
Copy link
Owner

jeffkl commented Mar 30, 2021

Yeah that would make sense, I bet there's a deadlock in there somewhere. I have not personally written a windows form application in a long time. Try playing around with threading and see if you can get it working.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants