Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Ulfhednar

Pages: [1] 2 3 4 5 ... 21
1
Script / Re: 7-zip profiles vs cmd line 7-zip?
« on: February 10, 2025, 12:50:50 »
Sorry for destroying your Monday morning Mathias. 
You pointed me in the right direction.
So I realized what was wrong finally!
I'd used
Code: [Select]
@var $Items = GetSourceItems();but should have used
Code: [Select]
@var $Items = GetSourceItems(1);
 ::)

Thanks for the assist :)

A bit OT:-
 https://multicommander.com/Docs/multiscript/functions/filesystem#deletefiles
Shows RECYLE, should this be amended to RECYCLE? It doesn't appear in the $options debugger output.
If I add NODIALOG & RECYLE it doesn't send to the recycle bin.  I thought it would  ??? 


Lastly .... how do you script to recurse subdirs from GetSourcePath etc?

2
Script / Re: 7-zip profiles vs cmd line 7-zip?
« on: February 10, 2025, 11:51:25 »
Thanks for the reply Mathias.
Using your code works i.e. giving the instruction a fixed path for items, when I try to get it to work calling the items in my filtered array, it hangs.

The debugger has the red highlight active on the last line but clicking on anything fails to advance the operation.
The only window that shouldn't be present is the hung dialog. (See attached) No error dialogs or windows.

All MC dialogs will minimize but won't finish the op, restart req'd.
Is it related to how the path/filename is being added to the array?  the $fullfilename is correctly enumerated in the debugger showing the whole string.

3
Script / Re: 7-zip profiles vs cmd line 7-zip?
« on: February 09, 2025, 14:04:04 »
Yes the idea was to scan subfolders; zip specifically named folders; delete those source zipped folders, leaving the 7z in their place & log operations.
(a & b were just placeholders for my test before giving it actual pathing)

I was thinking of adding a StrIsRegExpMatchNoCase or similar to delete redundant files recursively.  Basically a tidy up operation on a number of subfolders.
I got this, but the DeleteFiles instruction hangs the debugger & MC with a deletion dialog, tried with & without {}s on the last instruction.  Also tried SILENT to no effect  ???
Am I missing sth or is this a bug?

Code: [Select]
@var $currentPath = GetSourcePath();
@var $Items = GetSourceItems();
@var $count = arrayCount($Items);
@var $curItem;
@var $fullFilename;
@var $array2[];

// Loop all items in the $Items array
for( $n = 0; $n < $count; $n++)
{
  $curItem = $Items[$n];
  $fullFilename = $currentPath ^ $curItem;
  @var $isMatch = StrIsRegExpMatchNoCase($fullFilename, "[a-z0-9]{30}");

  if($isMatch)
  {
      arrayAdd($array2, $curItem);
  }
}

@var $options[] = {"NODIALOG"};
DeleteFiles($array2, $options);

Thanks in advance for looking at this

4
Script / Re: 7-zip profiles vs cmd line 7-zip?
« on: February 09, 2025, 12:46:36 »
I ended up adding a Console .bat to a button.
This works OK scanning for subfolders, 7-zipping at max compression & deleting if 7z op is OK. Ops are logged to txt on base dir.

I would like to be able to do sth like this with MS as I think I could potentially make a richer & more functionally extensive script but I'm not sharp enough on MS atm  :-\
I will see if I can come up with sth in due course ;)

Code: [Select]
@echo off
setlocal

REM Set the base directory
set "base_dir=C:\dir\to\scan\"
REM Set the full path to the 7-zip executable
set "7zip_path=C:\Program Files\7-Zip\7z.exe"
REM Set the log file path
set "log_file=%base_dir%\operations_log.txt"

REM Initialize the log file
echo Log file created on %date% at %time% > "%log_file%"

REM Recursively scan for folders named "a" and "b"
for /d /r "%base_dir%" %%d in (.) do (
    if exist "%%d\a" (
        echo Compressing folder "a" in "%%d" >> "%log_file%"
        "C:\Program Files\7-Zip\7z.exe" a -t7z -mx=9 "%%d\a.7z" "%%d\a\" >> "%log_file%" 2>&1
        if exist "%%d\a.7z" (
            echo Zip succeeded. Deleting folder "%%d\a" >> "%log_file%"
            rmdir /s /q "%%d\a" >> "%log_file%" 2>&1
        ) else (
            echo Failed to create zip for "%%d\a" >> "%log_file%"
        )
    )

    if exist "%%d\b" (
        echo Compressing folder "b" in "%%d" >> "%log_file%"
        "C:\Program Files\7-Zip\7z.exe" a -t7z -mx=9 "%%d\b.7z" "%%d\b\" >> "%log_file%" 2>&1
        if exist "%%d\b.7z" (
            echo Zip succeeded. Deleting folder "%%d\b" >> "%log_file%"
            rmdir /s /q "%%d\b" >> "%log_file%" 2>&1
        ) else (
            echo Failed to create zip for "%%d\b" >> "%log_file%"
        )
    )
)

endlocal

5
Script / Re: 7-zip profiles vs cmd line 7-zip?
« on: February 08, 2025, 15:42:32 »
Thanks for the reply Mathias.
I will try to run it with the CLI values & see how far I get ;)
-mx9 is the max 7-Zip compression switch.

6
Script / 7-zip profiles vs cmd line 7-zip?
« on: February 07, 2025, 15:57:14 »
I was looking at using a script that calls the packer function & uses 7-zip max compression, but cannot see how to specify or change the command for MAX on 7-zip specifically in the packer profiles, I cannot get the 'external' button to work for an external packer either. Duh not activated yet :-\  ;D
Running Internal zip (MAX) doesn't give me the smallest possible output.
Is this functionality present or do I just call the external 7-zip?

I got as far as this, where I wanted to compress selected subfolders:-
Quote
@var $zipPath = "C:\Program Files\7-Zip\7z.exe";
@var $scanDir = "C:\path\to\the\directory";

@function CompressFolder($folderPath, $folderName) {
    @var $zipFileName = "$folderName.7z";
    MC.Run CMD="EXTRACT" TARGET="$folderPath" SOURCE="\"$zipFileName\"" USERCONFIRMATION="NO" ARCHIVE="$zipPath" ARGUMENTS="a -r \"$zipFileName\" \"$folderPath\\*\"";
}

@function ScanFolders($currentDir) {
    @var $dirs = MC.Filesystem.ListDirs(path="$currentDir");
    @for $dir in $dirs {
        @var $folderName = MC.GetValue(PATH="$dir", INDEX="basename");
        @if ($folderName == "a" || $folderName == "b") {
            CompressFolder($dir, $folderName);
        }
        ScanFolders($dir);
    }
}

ScanFolders($scanDir);

Any help on how to call max compression appreciated ;)

7
Beta Releases / Re: v14.6 BETA
« on: January 31, 2025, 13:01:42 »
Oh OK thanks Mathias... You had me worried!   :D


***
Yaaaay! Thanks for the fixes Mathias c/o b3066!  8) ;)

8
Beta Releases / Re: v14.6 BETA
« on: January 31, 2025, 12:47:36 »
Thanks for the update Mathias. ;)

I noticed after the update today b3064, that the filesize output is missing from the bottom left of the panel.  (Where I have put a yellow box on the image)
Tried restart, no luck. Has a setting been lost or is it broken?
Thanks

This is the Selection Status Area in MC explorer panel settings, yes? Still cannot get it to show anything , Win11 Explorer does show these details OK in Status Bar.
I wondered if enable/disable freespace display would do anything but it didn't.
I also noticed the shifting of the panel nav icons left (attached), I haven't updated my gfx drivers btw.
I guess a clean re-install is next...  :-\

9
Beta Releases / Re: v14.6 BETA
« on: January 30, 2025, 13:51:25 »
Thanks for the update Mathias. ;)

I noticed after the update today b3064, that the filesize output is missing from the bottom left of the panel.  (Where I have put a yellow box on the image)
Tried restart, no luck. Has a setting been lost or is it broken?
Thanks

10
Beta Releases / Re: v14.3
« on: November 14, 2024, 18:24:26 »
Thanks for the super fast fix Mathias.  8)
All good so far.
No ghosts & sizes correct.   :)

11
Beta Releases / Re: v14.3
« on: November 14, 2024, 14:28:21 »
Thanks for the 3038 update & fixing the file sizes output/updating Mathias!

However I have found a problem with this build I think.
F6, drag'n'drop & my buttons now hang on dialog & that also impacts the queue process.

Where I use a button + User Defined Command in my move operations the dialog now hangs for as long as I leave it @0%.
i.e. User Defined Commands 
Code: [Select]
MC.Explorer.Move NODIALOG USEEXISTINGQUEUE
This seems to be related to the delete phase when a single item is moved as it shows the progress bar but hangs on open, folder+file(s) move is less likely to behave at all.
I will check, It started in 3038 ?  3036 was fine ?

Hi Mathias, yes was fine in the 3036 build (I just had the size update issue)
& I just added above - "I notice the move op done via Win ctrl-X / ctrl-V leaves a 'ghost' file & size value in the folder." in case you missed it ;)

12
Beta Releases / Re: v14.3
« on: November 14, 2024, 14:00:09 »
Thanks for the 3038 update & fixing the file sizes output/updating Mathias!

However I have found a problem with this build I think.
F6, drag'n'drop & my buttons now hang on dialog & that also impacts the queue process.

Where I use a button + User Defined Command in my move operations the dialog now hangs for as long as I leave it @0%.
i.e. User Defined Commands 
Code: [Select]
MC.Explorer.Move NODIALOG USEEXISTINGQUEUE
This seems to be related to the delete phase when a single item is moved as it shows the progress bar but hangs on open, folder+file(s) move is less likely to behave at all.
{Update}  I notice the move op done via Win ctrl-X / ctrl-V leaves a 'ghost' file & size value in the folder.

13
Beta Releases / Re: v14.2 BETA
« on: July 29, 2024, 12:36:29 »
Just wanted to say thanks Mathias for the updates & additions of this month.
Lot of things I need to experiment with  ;D

14
Beta Releases / Re: Copy to zip: skip all doesn't work.
« on: May 17, 2024, 23:38:55 »
I should have considered/mentioned the encrypted filenames  ::)
Allowing for that has restored normal service!  I am glad you figured it out.
Thanks for the fixes Mathias ;)

15
Beta Releases / Re: Copy to zip: skip all doesn't work.
« on: May 17, 2024, 11:34:47 »
I just double click on part 1 of the rar-set. If I don't use MC I get the PW dialog as expected. 

Hmm strange.. I can Navigate into the rar (multi rar archive). select files,  select copy.  asked for password.. enter password. and copy continues..
Not sure what is different.

yes search settings should be remembered

Thanks for info Mathias.
Could it be related to the build of RAR that was used to create the set?
I'll see if I have some old files & try them.

16
Beta Releases / Re: Copy to zip: skip all doesn't work.
« on: May 15, 2024, 18:41:12 »
I just double click on part 1 of the rar-set. If I don't use MC I get the PW dialog as expected. 
Normally doing this in MC would also bring up the PW dialog, now CTD & MC restart.  Tried again now on different set & got  1914-I115CF error.
Sent the error report.

OT
In the Search Dialog shouldn't selections be persistent?  I'm seeing file content check boxes lose the selection between uses. Or is this a change I've not noticed?

Sorry to be creating work for you Mathias...  ;)

17
Beta Releases / Re: Copy to zip: skip all doesn't work.
« on: May 14, 2024, 22:53:38 »
Could it be because it is a spanned .rar with pw? 
Error  1914-Y114TW in FSRAR.DLL (report sent)

18
Beta Releases / Re: Copy to zip: skip all doesn't work.
« on: May 14, 2024, 18:11:38 »
Sorry for the delayed reply Mathias. 
I did see the comment about error handling changes, so far that seems improved in speed & relevance. I should have added the crash ID above but I did send the report in.
I get a crash when trying to browse encrypted archives now, previously I would be asked for the PW - MC doesn't get to that now.  Crash  ID 1914-E114RS

This dialog & selection do not work, skip all = skip.

**whilst typing this a new build has appeared  ;D
Thanks Mathias, skip all working now, .rar with PW not working.

19
Beta Releases / Re: Copy to zip: skip all doesn't work.
« on: May 13, 2024, 11:36:47 »
Thanks for the reply Mathias.
I was trying to sync a folder & had some matching files; dialog opens asks for input - skip overwrite etc, clicked skip all & it immediately opened the same dialog for every next matching file. I.e. skip all isn't working for me.  Using the portable MC I was able to complete the operations normally.

...& I have just tried a regular copy operation of dissimilar files & MC 3007 CTD'd, error report dialog opened & then also crashed.  ??? :o

I can use the current portable build OK. This seems to be related to this build as it is new behaior since the update. Guess I will try fresh install also.

** managed to get the error dialog to stay up, fault in MultiCommander.exe, report sent.

20
Beta Releases / Re: Copy to zip: skip all doesn't work.
« on: May 11, 2024, 10:55:28 »
Same issue but not just for archives, drive to drive copy / move also affected. v14 b3007 W11 x64

I'm not able to update anything ATM, pdf, jpg, rar, zip etc all fail with the skip all failing to persist error. Bit of a problem when trying to back up stuff....   :(
I also noticed some strange behavior with rar crashing MC under some circumstances.  Will try to repeat it & send in a report.

Is it best to revert builds or is a fix due soon?  I can use the portable! Duh!  ;D

21
Beta Releases / Re: v13.5 Issues
« on: January 27, 2024, 11:37:00 »
Thanks for the rockstar rapid coding Mathias, everything seems good now   8) :D

22
Beta Releases / Re: v13.5 Issues
« on: January 26, 2024, 14:05:13 »
Not exactly the right thread but using MC 13.5 b2982 x64 W11 I'm seeing MC refuse to open .rars.

Otherwise so far so good ;)
Thanks for your continuing work Mathias

23
Beta Releases / Re: v13.3 Beta
« on: December 07, 2023, 14:16:08 »
Thanks for looking at this again Mathias.

Sorry for the misinterpretation of what you needed. 
I've created a dump from 2967.
Still getting 502 when I try to upload :(  so have sent you a link via contact form.

24
Beta Releases / Re: v13.3 Beta
« on: December 06, 2023, 13:47:10 »
OK. Thanks Mathias.
BTW Did you get the dump I posted? 
I still get 'bad gateway' using the upload link here.
No.. it does not find any matching debug symbols.  What version is that ?. might be that symbols for that version is removed.

See attached for version of Windbg - It's what Win11 installs, bit different to the Win10 environment I'm slightly familiar with.
Don't know if this output is different from what you see or helps: -

Code: [Select]
>>>>>>>>>>>>> Preparing the environment for Debugger Extensions Gallery repositories completed, duration 0.000 seconds

************* Waiting for Debugger Extensions Gallery to Initialize **************

>>>>>>>>>>>>> Waiting for Debugger Extensions Gallery to Initialize completed, duration 0.156 seconds
   ----> Repository : UserExtensions, Enabled: true, Packages count: 0
   ----> Repository : LocalInstalled, Enabled: true, Packages count: 36

Microsoft (R) Windows Debugger Version 10.0.25921.1001 AMD64
Copyright (c) Microsoft Corporation. All rights reserved.


Loading Dump File [..\MultiCommander.DMP]


************* Preparing the environment for Debugger Extensions Gallery repositories **************
   ExtensionRepository : Implicit
   UseExperimentalFeatureForNugetShare : true
   AllowNugetExeUpdate : true
   AllowNugetMSCredentialProviderInstall : true
   AllowParallelInitializationOfLocalRepositories : true

   -- Configuring repositories
      ----> Repository : LocalInstalled, Enabled: true
      ----> Repository : UserExtensions, Enabled: true

>>>>>>>>>>>>> Preparing the environment for Debugger Extensions Gallery repositories completed, duration 0.000 seconds

************* Waiting for Debugger Extensions Gallery to Initialize **************

>>>>>>>>>>>>> Waiting for Debugger Extensions Gallery to Initialize completed, duration 0.016 seconds
   ----> Repository : UserExtensions, Enabled: true, Packages count: 0
   ----> Repository : LocalInstalled, Enabled: true, Packages count: 36

Microsoft (R) Windows Debugger Version 10.0.25921.1001 AMD64
Copyright (c) Microsoft Corporation. All rights reserved.


Loading Dump File [..\MultiCommander.DMP]
User Mini Dump File with Full Memory: Only application data is available


************* Path validation summary **************
Response                         Time (ms)     Location
Deferred                                       srv*
Symbol search path is: srv*
Executable search path is:
Windows 10 Version 22621 MP (16 procs) Free x64
Product: WinNt, suite: SingleUserTS
Edition build lab: 22621.1.amd64fre.ni_release.220506-1250
Debug session time: Thu Nov 16 21:26:09.000 2023 (UTC + 0:00)
System Uptime: 0 days 13:42:14.600
Process Uptime: 0 days 12:13:25.000
................................................................
................................................................
..................................
Loading unloaded module list
................................................................
For analysis of this file, run !analyze -v
win32u!NtUserMsgWaitForMultipleObjectsEx+0x14:
00007fff`9c34acf4 c3              ret
0:000> !analyze -v
*******************************************************************************
*                                                                             *
*                        Exception Analysis                                   *
*                                                                             *
*******************************************************************************


KEY_VALUES_STRING: 1

    Key  : Analysis.CPU.mSec
    Value: 2156

    Key  : Analysis.Elapsed.mSec
    Value: 2725

    Key  : Analysis.IO.Other.Mb
    Value: 0

    Key  : Analysis.IO.Read.Mb
    Value: 0

    Key  : Analysis.IO.Write.Mb
    Value: 0

    Key  : Analysis.Init.CPU.mSec
    Value: 124

    Key  : Analysis.Init.Elapsed.mSec
    Value: 10376

    Key  : Analysis.Memory.CommitPeak.Mb
    Value: 139

    Key  : Failure.Bucket
    Value: BREAKPOINT_80000003_win32u.dll!NtUserMsgWaitForMultipleObjectsEx

    Key  : Failure.Hash
    Value: {ab2d2e3e-edb3-a979-68f2-e3be023a5515}

    Key  : Timeline.OS.Boot.DeltaSec
    Value: 49334

    Key  : Timeline.Process.Start.DeltaSec
    Value: 44005

    Key  : WER.OS.Branch
    Value: ni_release

    Key  : WER.OS.Version
    Value: 10.0.22621.1

    Key  : WER.Process.Version
    Value: 13.3.0.2962


FILE_IN_CAB:  MultiCommander.DMP

NTGLOBALFLAG:  0

PROCESS_BAM_CURRENT_THROTTLED: 0

PROCESS_BAM_PREVIOUS_THROTTLED: 0

APPLICATION_VERIFIER_FLAGS:  0

EXCEPTION_RECORD:  (.exr -1)
ExceptionAddress: 0000000000000000
   ExceptionCode: 80000003 (Break instruction exception)
  ExceptionFlags: 00000000
NumberParameters: 0

FAULTING_THREAD:  00001f20

PROCESS_NAME:  MultiCommander.exe

ERROR_CODE: (NTSTATUS) 0x80000003 - {EXCEPTION}  Breakpoint  A breakpoint has been reached.

EXCEPTION_CODE_STR:  80000003

STACK_TEXT: 
0000000f`7a11d6d8 00007fff`9e5252f7     : 00000000`00000000 00007fff`9ee2ab11 00000168`41291700 00000000`00000010 : win32u!NtUserMsgWaitForMultipleObjectsEx+0x14
0000000f`7a11d6e0 00007ff6`0d8881c7     : 00000168`454517e0 00000000`0000000b 00000168`45450750 00000168`45450750 : user32!MsgWaitForMultipleObjects+0x57
0000000f`7a11d720 00007ff6`0d888ca4     : 00000168`42a56880 0000000f`7a11d710 00007ff6`0d756683 00000168`41291700 : MultiCommander+0x4d81c7
0000000f`7a11d790 00007ff6`0d88b064     : 00000168`42a567f8 00007ff6`0db8d1f0 00000000`00000001 00007ff6`0da93dd0 : MultiCommander+0x4d8ca4
0000000f`7a11d7e0 00007ff6`0d876b4e     : 00000168`42a56858 00000000`00000000 00000168`41295390 00007ff6`0da91a48 : MultiCommander+0x4db064
0000000f`7a11d810 00007ff6`0d66bc90     : 00000000`00000000 00000000`00000000 00000000`00000001 00007ff6`0da438e0 : MultiCommander+0x4c6b4e
0000000f`7a11d840 00007ff6`0d70406f     : 00000000`00000000 00000000`00000001 00000168`41291700 00007ff6`0da5ad88 : MultiCommander+0x2bbc90
0000000f`7a11d870 00007ff6`0d44f4b8     : 00007ff6`0d703e60 0000000f`7a11d9a0 00000000`00000000 00000000`00000000 : MultiCommander+0x35406f
0000000f`7a11d8a0 00007ff6`0d704ba3     : 00000000`00000000 00000000`00000010 00000000`00000000 00000000`00000000 : MultiCommander+0x9f4b8
0000000f`7a11da20 00007ff6`0d450e5f     : 00000168`41291700 00000000`00000010 00000000`00000000 00000000`00000000 : MultiCommander+0x354ba3
0000000f`7a11da60 00007ff6`0d70386c     : 00000000`00000000 00000168`41291700 00000000`00000000 00000000`00000000 : MultiCommander+0xa0e5f
0000000f`7a11daa0 00007ff6`0d44ab40     : 00000000`00080bf2 00000168`3f21e6a8 00000000`00000000 00000000`00000010 : MultiCommander+0x35386c
0000000f`7a11dae0 00007ff6`0d44b5ec     : 27000000`000d000c 00000000`00080bf2 00007fff`825be060 0000000f`7a11e070 : MultiCommander+0x9ab40
0000000f`7a11dbe0 00007fff`9e518241     : 00000000`00000000 0000000f`7a11e031 00000000`80006011 00000000`80006011 : MultiCommander+0x9b5ec
0000000f`7a11dc20 00007fff`9e517efc     : 00000000`c0000388 00007ff6`0d44b598 00000000`00080bf2 00000000`80000000 : user32!UserCallWinProcCheckWow+0x2d1
0000000f`7a11dd80 00007fff`9e52302d     : 00000000`00000000 00000000`00000000 00000000`00000000 00000000`00000000 : user32!DispatchClientMessage+0x9c
0000000f`7a11dde0 00007fff`9ee933b4     : 00000000`00000000 00000000`00000000 00000000`80006011 00000000`00000001 : user32!_fnDWORD+0x3d
0000000f`7a11de40 00007fff`9c341554     : 00007fff`9bc69dfb 00000000`00000004 00000168`471562d0 00000000`00000000 : ntdll!KiUserCallbackDispatcherContinue
0000000f`7a11dec8 00007fff`9bc69dfb     : 00000000`00000004 00000168`471562d0 00000000`00000000 00007fff`9c22d8ee : win32u!NtUserMessageCall+0x14
0000000f`7a11ded0 00007fff`9e516655     : 00000000`00080bf2 00000000`00000112 00000000`0000f060 00000000`0096068a : guard64!Exported+0x35f6b
0000000f`7a11dfb0 00007fff`9e516162     : 00000000`00060bbe 00007ff6`0d447908 ffffffff`fffffffe 00007fff`9e51ab09 : user32!RealDefWindowProcWorker+0x155
0000000f`7a11e090 00007fff`9918f490     : 0000000f`7a11e210 00000000`00080bf2 00000168`3f223f90 00007fff`9ee43330 : user32!RealDefWindowProcW+0x52
0000000f`7a11e0d0 00007fff`99173032     : 0000000f`7a11e240 00000000`fffffffe 000051d6`6d5443d0 00000000`0096068a : uxtheme!DoMsgDefault+0x38
0000000f`7a11e110 00007fff`99186d9c     : 00000000`00000000 00000000`00080bf2 00000168`40cd0900 00000000`00080bf2 : uxtheme!OnDwpSysCommand+0x32
0000000f`7a11e140 00007fff`99185821     : 00000168`3f8feab0 00007ff6`0d44b598 00000000`00060bbe 00000000`fffffe15 : uxtheme!_ThemeDefWindowProc+0x156c
0000000f`7a11e360 00007fff`9e5162e5     : 00000000`00000000 00000000`80000000 00007ff6`0d44b598 00000000`00000000 : uxtheme!ThemeDefWindowProcW+0x11
0000000f`7a11e3a0 00007fff`9e518241     : 00000000`00000000 00000000`80006011 00000000`00000001 00000000`00000000 : user32!DefWindowProcW+0x135
0000000f`7a11e410 00007fff`9e517a8b     : 00000000`00080bf2 00007fff`9ee8f040 00000000`00080bf2 00000000`00000112 : user32!UserCallWinProcCheckWow+0x2d1
0000000f`7a11e570 00007ff6`0d44c967     : 00000168`41291700 00000000`00000112 00000000`0000f060 00007ff6`0d447908 : user32!CallWindowProcW+0x8b
0000000f`7a11e5c0 00007ff6`0d44c9c7     : 00000168`41291700 0000000f`7a11e7b0 00000000`0096068a 00007fff`9e51a76e : MultiCommander+0x9c967
0000000f`7a11e600 00007ff6`0d4649c0     : 000051d6`6d544650 00000168`412f4010 00000000`00000000 00000000`00000215 : MultiCommander+0x9c9c7
0000000f`7a11e640 00007ff6`0d7014ce     : 00000000`0000f060 00007fff`9e5184e6 00000000`00000000 00000000`00000000 : MultiCommander+0xb49c0
0000000f`7a11e670 00007ff6`0d44f5ee     : 00007ff6`0d701424 00000000`0096068a 00000000`00000486 00000000`0096068a : MultiCommander+0x3514ce
0000000f`7a11e6b0 00007ff6`0d704ba3     : 00000000`0096068a 00000000`00000112 00000000`0000f060 00000000`0000f060 : MultiCommander+0x9f5ee
0000000f`7a11e830 00007ff6`0d450e5f     : 00000168`41291700 00000000`00000112 00000000`0000f060 00000000`0096068a : MultiCommander+0x354ba3
0000000f`7a11e870 00007ff6`0d70386c     : 00000000`00000000 00000168`41291700 00000000`0096068a 00000000`0000f060 : MultiCommander+0xa0e5f
0000000f`7a11e8b0 00007ff6`0d44ab40     : 00000000`00080bf2 00000168`3f21e6a8 00000000`0000f060 00000000`00000112 : MultiCommander+0x35386c
0000000f`7a11e8f0 00007ff6`0d44b5ec     : 00000000`00000000 00000000`00080bf2 00000000`00000112 00000000`00000001 : MultiCommander+0x9ab40
0000000f`7a11e9f0 00007fff`9e518241     : 00000000`00000000 0000000f`7a11ee41 00000000`80006011 00000000`0096068a : MultiCommander+0x9b5ec
0000000f`7a11ea30 00007fff`9e517efc     : 00000000`00000388 00007ff6`0d44b598 00000000`00080bf2 00000000`80000000 : user32!UserCallWinProcCheckWow+0x2d1
0000000f`7a11eb90 00007fff`9e52302d     : 00000000`00000000 00000000`00000000 00000000`0000f060 00000000`00000004 : user32!DispatchClientMessage+0x9c
0000000f`7a11ebf0 00007fff`9ee933b4     : 0000000f`7a11ec88 0000002c`00000050 00007fff`9c341554 00007fff`8cecd107 : user32!_fnDWORD+0x3d
0000000f`7a11ec50 00007fff`9c341554     : 00007fff`9bc69dfb 00000000`00000400 00000168`471562d0 00000000`00000000 : ntdll!KiUserCallbackDispatcherContinue
0000000f`7a11ecd8 00007fff`9bc69dfb     : 00000000`00000400 00000168`471562d0 00000000`00000000 ffffffff`0000029e : win32u!NtUserMessageCall+0x14
0000000f`7a11ece0 00007fff`9e516655     : 00000000`00080bf2 00000000`000000a1 00000000`00000014 00000000`0096068a : guard64!Exported+0x35f6b
0000000f`7a11edc0 00007fff`9e516162     : 00000000`000000a1 0000000f`7a11f060 00000000`00000014 00007fff`9918ede9 : user32!RealDefWindowProcWorker+0x155
0000000f`7a11eea0 00007fff`9918f490     : 0000000f`7a11f030 00000000`00080bf2 00000000`00080bf2 00007fff`9e5184e6 : user32!RealDefWindowProcW+0x52
0000000f`7a11eee0 00007fff`991730ca     : 000051d6`6d544d70 0000000f`7a11f030 0000000f`7a11f060 00000000`00080bf2 : uxtheme!DoMsgDefault+0x38
0000000f`7a11ef20 00007fff`99186d9c     : 00000000`00000000 00000000`00000000 00000168`40cd0900 00000000`00080bf2 : uxtheme!OnDwpNcLButtonDown+0x7a
0000000f`7a11ef60 00007fff`99185821     : 00000000`00000000 0000000f`7a230800 00000000`00010c56 00000000`00000001 : uxtheme!_ThemeDefWindowProc+0x156c
0000000f`7a11f180 00007fff`9e5162e5     : 0000000f`7a11f2a9 00007fff`9e5162b9 00000000`00000000 00000000`00000363 : uxtheme!ThemeDefWindowProcW+0x11
0000000f`7a11f1c0 00007fff`9e518241     : 00000000`00000000 00000000`80006011 00000000`00000001 00000000`00000000 : user32!DefWindowProcW+0x135
0000000f`7a11f230 00007fff`9e517a8b     : 00000000`00080bf2 00007fff`9ee8f040 00000000`00080bf2 00000000`000000a1 : user32!UserCallWinProcCheckWow+0x2d1
0000000f`7a11f390 00007ff6`0d44c967     : 00000168`41291700 00000000`000000a1 00000000`00000014 00000000`00000014 : user32!CallWindowProcW+0x8b
0000000f`7a11f3e0 00007ff6`0d450e7e     : 00000168`41291700 00000000`000000a1 00000000`00000014 00000000`0096068a : MultiCommander+0x9c967
0000000f`7a11f420 00007ff6`0d70386c     : 00000000`00000000 00000168`41291700 00000000`0096068a 00000000`00000014 : MultiCommander+0xa0e7e
0000000f`7a11f460 00007ff6`0d44ab40     : 00000000`00080bf2 00000168`3f21e6a8 00000000`00000014 00000000`000000a1 : MultiCommander+0x35386c
0000000f`7a11f4a0 00007ff6`0d44b5ec     : 00000000`00000000 00000000`00080bf2 00000168`3f90cb60 00007fff`9e51a525 : MultiCommander+0x9ab40
0000000f`7a11f5a0 00007fff`9e518241     : 00000000`00000000 00000168`3f21e668 00000000`80006011 00000000`80006011 : MultiCommander+0x9b5ec
0000000f`7a11f5e0 00007fff`9e517d01     : 00000000`00000000 00007ff6`0d44b598 00000000`00080bf2 00000168`3f21e668 : user32!UserCallWinProcCheckWow+0x2d1
0000000f`7a11f740 00007ff6`0d45b56a     : 00000168`3f21e668 00000168`00000000 00000168`3f21e668 00000000`00000002 : user32!DispatchMessageWorker+0x1f1
0000000f`7a11f7c0 00007ff6`0d45bddd     : 00000000`00000000 00000000`00000002 00000000`00000001 00000168`3f216df8 : MultiCommander+0xab56a
0000000f`7a11f7f0 00007ff6`0d531627     : 00000000`00000001 00007ff6`0d3b0000 00000000`00000000 00000168`41291700 : MultiCommander+0xabddd
0000000f`7a11f830 00007ff6`0d48ca1e     : 00000000`00000001 00000000`00000000 00000000`00000000 00000000`00000000 : MultiCommander+0x181627
0000000f`7a11f870 00007fff`9e15257d     : 00000000`00000000 00000000`00000000 00000000`00000000 00000000`00000000 : MultiCommander+0xdca1e
0000000f`7a11f8b0 00007fff`9ee4aa58     : 00000000`00000000 00000000`00000000 00000000`00000000 00000000`00000000 : kernel32!BaseThreadInitThunk+0x1d
0000000f`7a11f8e0 00000000`00000000     : 00000000`00000000 00000000`00000000 00000000`00000000 00000000`00000000 : ntdll!RtlUserThreadStart+0x28


STACK_COMMAND:  ~0s; .ecxr ; kb

SYMBOL_NAME:  win32u!NtUserMsgWaitForMultipleObjectsEx+14

MODULE_NAME: win32u

IMAGE_NAME:  win32u.dll

FAILURE_BUCKET_ID:  BREAKPOINT_80000003_win32u.dll!NtUserMsgWaitForMultipleObjectsEx

OS_VERSION:  10.0.22621.1

BUILDLAB_STR:  ni_release

OSPLATFORM_TYPE:  x64

OSNAME:  Windows 10

IMAGE_VERSION:  10.0.22621.2506

FAILURE_ID_HASH:  {ab2d2e3e-edb3-a979-68f2-e3be023a5515}

Followup:     MachineOwner
---------


One thing I have noticed is that whenever I do an update MC is shut down perfectly by the updater...

As Win11 is proving awkward, I guess I may have to wait for Win12, which is being forecast for late 2024 - shame that they still haven't fixed Win7 though  :P

25
Beta Releases / Re: v13.3 Beta
« on: December 02, 2023, 15:20:30 »
OK. Thanks Mathias.
BTW Did you get the dump I posted? 
I still get 'bad gateway' using the upload link here.

Pages: [1] 2 3 4 5 ... 21