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 6 ... 21
26
The question is, is the following task beyond the scope of F&R (&/or MS)? 
Basically:-
I have .xml's that need search & replace operations.
I need to check multiple files for each of the entries & replace if/where found.
All SAR terms are not in all files... Both searches & replacements will change over time.  ::)

The source for the search & the replacements is currently a CSV, >1000 rows/entries.
The job is thus:-
Code: [Select]
Search for x where x is entry in CSV column 1;
   If CSV column 1 entry found, replace with CSV column 2 entry;  (Rows being SAR pairs 1|1, 2|2, 3|3 etc)
OR
   If CSV column 1 entry not found;
Step down to next row, loop til end of CSV
Resulting XML to be saved with a new name
Next file

So far in F&R I tried adding all column 1 entries to find & all column 2 entries to replace with "Find many, Replace with many" selected.
Result is error 87 see screen.
I'm guessing this is because there are mismatches & F&R doesn't step down to next term rather than there being too many entries.....?

...........Maybe I can leverage F&R with MS or something?

Any simple way to do this task?  Thanks in advance :)

27
Beta Releases / Re: Version 12 * RC *
« on: August 05, 2022, 16:36:49 »
Ref 12.0 b2901 x64 (Win10)

Had couple of incidents today after updating to this build
1 - right clicked on a file, dialog opened & MC locked completely, rest of system continued normally - killed via TM
2 - inserting a USB stick I have been using this week w/out issue, locked MC up for several minutes, killed/restarted MC & removed/reinserted the stick got round it.  Stick checked out Ok on Win10 diagnostics/repair.

Unusual behaviour for MC so thought I'd mention it.

28
Support and Feedback / Re: Can't get MC.Filesystem.Delete to work
« on: August 05, 2022, 16:27:43 »
Yes I think we're saying the same thing. (But I'm not as clever as you  ;D  )

I was trying to give example that showed its' count included items external to the selected dir... & so
Quote
you can run the command on ".."

29
Support and Feedback / Re: Can't get MC.Filesystem.Delete to work
« on: August 03, 2022, 11:56:17 »
Thanks for the reply Mathias.
FILTER to MC.Explorer.Delete = more complex - I see, just wondered ;)

CMD Reading different dirs:
I repeated this test multiple times because its results are so odd.
Opposite pane was different drive not just different dir...
Whilst wondering why I tried clicking on different areas of the pane before calling the cmd, eg <-... at top; lower empty space; different files/filetypes.
Each time as you can see from the item count it looked at other dirs both above & below. 
Maybe I'll try with more dirs & see where it jumps...

Anyway if you can force a scope lockdown that would solve it, even if it does not explain it :)


30
Tried this again experimentally
D:\test1\test2\
was focus
I added 6 dummy files incl 1 zip & 1 rar to test2, used :-
Code: [Select]
MC.Filesystem.Delete USE_CURRENT_SOURCEITEM FILTER="*.zip; *.rar"
Log output
Code: [Select]
2022-07-31 15:43:36.274 MC.FileSystem.Delete : Parameter USE_CURRENT_SOURCEITEM set. Use current source item as PATH parameter : 'D:\test1\test2\..'
2022-07-31 15:43:36.274 MC.FileSystem.Delete : Scanning folder..
2022-07-31 15:43:36.274 MC.FileSystem.Delete : Found 8 items in path
2022-07-31 15:43:36.274 MC.FileSystem.Delete : 2 Filters found
D:\test1\test2\
was focus again
I added 1 zip & 1 rar to both test1 & test2 & ran button, all were deleted, re item count:-
Code: [Select]
2022-07-31 15:47:22.824 MC.FileSystem.Delete : Parameter USE_CURRENT_SOURCEITEM set. Use current source item as PATH parameter : 'D:\test1\test2\..'
2022-07-31 15:47:22.824 MC.FileSystem.Delete : Scanning folder..
2022-07-31 15:47:22.824 MC.FileSystem.Delete : Found 10 items in path
2022-07-31 15:47:22.824 MC.FileSystem.Delete : 2 Filters found

So I added test3 folder
D:\test1\test2\test3\
Added 2 archives to each test folder: -
With test3 in focus, archives in test 2 & test 3 were deleted
With test2 in focus, only archives in test 3 were deleted, not in 1 or 2  ???

Log shows the command thinks I am in test3 (ran this 3 times with same result, it can't tell my focus is ..\test2\
Code: [Select]
2022-07-31 16:13:51.481 MC.FileSystem.Delete : Parameter USE_CURRENT_SOURCEITEM set. Use current source item as PATH parameter : 'D:\test1\test2\test3'
2022-07-31 16:13:51.481 MC.FileSystem.Delete : Scanning folder..
2022-07-31 16:13:51.481 MC.FileSystem.Delete : Found 5 items in path
2022-07-31 16:13:51.481 MC.FileSystem.Delete : 2 Filters found
So quite interesting...! 

A dialog could be helpful but only if the reason why the command includes other folders in such a surprising way gets caught.  Would adding FILTER to MC.Explorer.Delete be easier?
 
But in any case, don't let this ruin your summer Mathias.  ;)

31
Well thanks for the fun Mathias!  ;)
You got me twice,
1. because I was using the earlier release without the updated function
2. it killed <20 files it found in the directory above the focused one.

No problem as I was able to recover them.  Only lost a zip with all my crypto-currency addresses, but what's $1.6m between friends....   ;D  :P
 ...A few more tests will be needed I think!

32
Thanks for trying to make this function work Mathias.
I have just attempted to use this command.
I get Failed to volume item whenever I use it.
I've tried :-
Code: [Select]
MC.Filesystem.Delete USE_CURRENT_SOURCEITEM FILTER="*.zip; *.rar"
MC.Filesystem.Delete USE_CURRENT_SOURCEITEM "*.zip; *.rar"
MC.Filesystem.Delete USE_CURRENT_SOURCEITEM="*.zip; *.rar"

It does appear to try to action the command, but even with files selected doesn't like something & always gives that error.  ???

33
Thanks for the replies.
I am relieved that I haven't gone completely mad ...even if I did forget to add the build #!   ::) ;D

Thanks for the details Mathias, hopefully the USE_CURRENT_SOURCEITEM parameter will do what I need.  It certainly looks like a good solution.
I will have to run a few tests on dummy files first but if it is being logged it should be OK.

....I always wanted to try juggling hand-grenades so this will be a step in the right direction.   ;)

34
Support and Feedback / Can't get MC.Filesystem.Delete to work
« on: July 28, 2022, 18:02:16 »
So I have a user defined command attached to a button:-
Code: [Select]
MC.Filesystem.Delete FILTER="*.zip; *.rar"But it won't work & I get no error or dialog of any kind.
I've assumed I can only use one command in a button of this type, not multiple as with a script, so I haven't added a select option first, I get the same result with files pre-selected or unselected.
What have I missed.....?   :-\
 

35
Beta Releases / Re: Version 12 * BETA *
« on: June 07, 2022, 22:45:34 »
& I noticed that the tabs - with custom colours now get blacked out randomly.... bug or not?

Hmm not see anything with that. what does it look like?

Hi Mathias,
did you find anything on the tabs issue I have? 
Here are some more examples, 3 screens of the same section of tab bar:-
Mouse cursor position determines color for some tabs, as you can see mousing away reverts others to black & in some cases color changes if selected (red to blue in the attached).
Tabs still showing colors are persistent between MC starts/reboots, the black tabs seem to always be the same & will call color on mouse contact.
I've tried reassigning colors to 'faulty' tabs but the new settings don't have any effect.

No able to recreate that  yet,
Hm wait I think there are a change, If you go in to tab properties you can now define different colors for when tab is active and inactive.
Might be that if that is not configure if does not fallback to the correct color ? So test if it helps to define an color for when tab is inactive

Thanks Mathias.

With b2877 I am able to: - reset to default>apply; change color>apply & it works now.
I can also set active/inactive color options & the settings are retained & persist after restarts.
It may be worth noting that this switch between active & inactive color assignments only works for 'Solid' color.
I believe that the active/inactive drop-down was previously only accessible when 'solid color' was selected, now it is accessible for both schemes.

......But I will now be able to sleep again!   ;D

36
Beta Releases / Re: Version 12 * BETA *
« on: June 04, 2022, 22:24:24 »
& I noticed that the tabs - with custom colours now get blacked out randomly.... bug or not?

Hmm not see anything with that. what does it look like?

Hi Mathias,
did you find anything on the tabs issue I have? 
Here are some more examples, 3 screens of the same section of tab bar:-
Mouse cursor position determines color for some tabs, as you can see mousing away reverts others to black & in some cases color changes if selected (red to blue in the attached).
Tabs still showing colors are persistent between MC starts/reboots, the black tabs seem to always be the same & will call color on mouse contact.
I've tried reassigning colors to 'faulty' tabs but the new settings don't have any effect.

37
Beta Releases / Re: Version 12 * BETA *
« on: May 27, 2022, 22:49:14 »
Thanks for the reply Mathias.

In the screen shot you can see some tabs that are coloured & some are black, they should all be coloured.
They do show colour when the mouse is hovering & on click but return to black one mouse moves away.

PDFs - I'm using W10, & I guessed there should be a preview but the tooltip is pretty big for all that blank space so I thought I better mention it. :)

38
Beta Releases / Re: Version 12 * BETA *
« on: May 26, 2022, 22:58:20 »
Thanks for the new features Matthias. ;)

The enhanced hover tooltip looks good.  Shows a lot of blank space for my pdf's (see attached) but nice preview on jpgs.

See attached - I'm running in Dark mode & I noticed that the tabs - with custom colours now get blacked out randomly.... bug or not?

39
Beta Releases / Re: version 11.3 BETA (Last updated 10-Sep-21)
« on: September 10, 2021, 14:50:51 »
Thanks Mathias! 
A PC without MC is like eating broken glass!  ;D

40
Beta Releases / Re: version 11.3 BETA (Last updated 10-Sep-21)
« on: September 10, 2021, 14:13:22 »
Thanks Mathias.
Yeah I figured the appcrash stuff was minimal use (hence FWIW) next time I'll just use the dump creation.
I have just been looking at windows logs & for dumps but you beat me to it ;)

BTW The upload URL gives a
Quote
"Sorry, there was a problem uploading your file.

Storage is low on free disk space"
msg  :(

41
Beta Releases / Re: version 11.3 BETA (Last updated 10-Sep-21)
« on: September 10, 2021, 12:43:19 »
Just installed 2809
Cannot get past the startup flag @ reading config.  No idea if anything (eg error dialog) is behind it as it is 'fixed'.
Clicking on it makes it crash/close.

Really like the new copy / move dialog that appeared in the last release. Thanks Mathias   ;) 8)

FWIW Appcrashview gives me this data:-

Code: [Select]
Version=1
EventType=AppHangB1
EventTime=132757472076039982
ReportType=3
Consent=1
UploadTime=132757472122232046
ReportStatus=97
ReportIdentifier=ef49423f-8ba7-486a-8c45-df45b8c12307
IntegratorReportIdentifier=077d47fd-d181-4bb4-9bab-aacdd03fdd55
Wow64Host=34404
NsAppName=MultiCommander.exe
OriginalFilename=MultiCommander.exe
AppSessionGuid=00001470-0001-0161-53da-79a337a6d701
TargetAppId=W:000062a2fa18afa015773728ce58b21093580000ffff!000023ab6dcefbd6cb178c4737c1e7fe252734fefb8f!MultiCommander.exe
TargetAppVer=2021//09//10:10:03:35!0!MultiCommander.exe
BootId=4294967295
TargetAsId=1340
UserImpactVector=269484304
IsFatal=1
EtwNonCollectReason=1
Response.type=4
Sig[0].Name=Application Name
Sig[0].Value=MultiCommander.exe
Sig[1].Name=Application Version
Sig[1].Value=11.3.0.2809
Sig[2].Name=Application Timestamp
Sig[2].Value=613b2d77
Sig[3].Name=Hang Signature
Sig[3].Value=9d8b
Sig[4].Name=Hang Type
Sig[4].Value=134217728
DynamicSig[1].Name=OS Version
DynamicSig[1].Value=10.0.19041.2.0.0.256.48
DynamicSig[2].Name=Locale ID
DynamicSig[2].Value=2057
DynamicSig[22].Name=Additional Hang Signature 1
DynamicSig[22].Value=9d8b9ffd33d6dda0da85aa18a57c4970
DynamicSig[23].Name=Additional Hang Signature 2
DynamicSig[23].Value=0ca7
DynamicSig[24].Name=Additional Hang Signature 3
DynamicSig[24].Value=0ca7a69a953559d9a15d5c8b3b3286a6
DynamicSig[25].Name=Additional Hang Signature 4
DynamicSig[25].Value=9d8b
DynamicSig[26].Name=Additional Hang Signature 5
DynamicSig[26].Value=9d8b9ffd33d6dda0da85aa18a57c4970
DynamicSig[27].Name=Additional Hang Signature 6
DynamicSig[27].Value=0ca7
DynamicSig[28].Name=Additional Hang Signature 7
DynamicSig[28].Value=0ca7a69a953559d9a15d5c8b3b3286a6
UI[3]=Multi Commander - File Management For Professionals is not responding
UI[4]=If you close the program, you might lose information.
UI[5]=Close the program
UI[6]=Close the program
UI[7]=Close the program
LoadedModule[0]=C:\Program Files\MultiCommander (x64)\MultiCommander.exe
LoadedModule[1]=C:\WINDOWS\SYSTEM32\ntdll.dll
LoadedModule[2]=C:\WINDOWS\System32\KERNEL32.DLL
LoadedModule[3]=C:\WINDOWS\System32\KERNELBASE.dll
LoadedModule[4]=C:\WINDOWS\System32\SHLWAPI.dll
LoadedModule[5]=C:\WINDOWS\System32\msvcrt.dll
LoadedModule[6]=C:\WINDOWS\System32\SETUPAPI.dll
LoadedModule[7]=C:\WINDOWS\System32\cfgmgr32.dll
LoadedModule[8]=C:\WINDOWS\System32\ucrtbase.dll
LoadedModule[9]=C:\WINDOWS\System32\RPCRT4.dll
LoadedModule[10]=C:\WINDOWS\System32\bcrypt.dll
LoadedModule[11]=C:\WINDOWS\System32\USER32.dll
LoadedModule[12]=C:\WINDOWS\System32\win32u.dll
LoadedModule[13]=C:\WINDOWS\System32\GDI32.dll
LoadedModule[14]=C:\WINDOWS\System32\gdi32full.dll
LoadedModule[15]=C:\WINDOWS\System32\msvcp_win.dll
LoadedModule[16]=C:\WINDOWS\System32\COMDLG32.dll
LoadedModule[17]=C:\WINDOWS\SYSTEM32\VERSION.dll
LoadedModule[18]=C:\WINDOWS\System32\combase.dll
LoadedModule[19]=C:\WINDOWS\System32\shcore.dll
LoadedModule[20]=C:\WINDOWS\SYSTEM32\MSIMG32.dll
LoadedModule[21]=C:\WINDOWS\System32\SHELL32.dll
LoadedModule[22]=C:\WINDOWS\System32\ADVAPI32.dll
LoadedModule[23]=C:\WINDOWS\System32\sechost.dll
LoadedModule[24]=C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.19041.844_none_ca00b6081b84eb1d\COMCTL32.dll
LoadedModule[25]=C:\WINDOWS\System32\ole32.dll
LoadedModule[26]=C:\WINDOWS\SYSTEM32\WINSPOOL.DRV
LoadedModule[27]=C:\WINDOWS\System32\OLEAUT32.dll
LoadedModule[28]=C:\WINDOWS\System32\WS2_32.dll
LoadedModule[29]=C:\WINDOWS\System32\PSAPI.DLL
LoadedModule[30]=C:\WINDOWS\SYSTEM32\UxTheme.dll
LoadedModule[31]=C:\WINDOWS\SYSTEM32\oledlg.dll
LoadedModule[32]=C:\WINDOWS\SYSTEM32\USERENV.dll
LoadedModule[33]=C:\WINDOWS\SYSTEM32\dbghelp.dll
LoadedModule[34]=C:\WINDOWS\SYSTEM32\WININET.dll
LoadedModule[35]=C:\WINDOWS\SYSTEM32\WTSAPI32.dll
LoadedModule[36]=C:\WINDOWS\SYSTEM32\NETAPI32.dll
LoadedModule[37]=C:\WINDOWS\SYSTEM32\WINMM.dll
LoadedModule[38]=C:\WINDOWS\SYSTEM32\MPR.dll
LoadedModule[39]=C:\WINDOWS\WinSxS\amd64_microsoft.windows.gdiplus_6595b64144ccf1df_1.1.19041.928_none_faefac437613c6cc\gdiplus.dll
LoadedModule[40]=C:\WINDOWS\SYSTEM32\OLEACC.dll
LoadedModule[41]=C:\WINDOWS\SYSTEM32\dbgcore.DLL
LoadedModule[42]=C:\WINDOWS\SYSTEM32\SRVCLI.DLL
LoadedModule[43]=C:\WINDOWS\SYSTEM32\NETUTILS.DLL
LoadedModule[44]=C:\WINDOWS\System32\IMM32.DLL
LoadedModule[45]=C:\Windows\system32\guard64.dll
LoadedModule[46]=C:\WINDOWS\system32\fltlib.dll
LoadedModule[47]=C:\WINDOWS\SYSTEM32\windows.storage.dll
LoadedModule[48]=C:\WINDOWS\SYSTEM32\Wldp.dll
LoadedModule[49]=C:\WINDOWS\SYSTEM32\kernel.appcore.dll
LoadedModule[50]=C:\WINDOWS\System32\bcryptPrimitives.dll
LoadedModule[51]=C:\WINDOWS\System32\MSCTF.dll
LoadedModule[52]=C:\WINDOWS\SYSTEM32\iphlpapi.dll
LoadedModule[53]=C:\WINDOWS\System32\NSI.dll
LoadedModule[54]=C:\WINDOWS\SYSTEM32\dhcpcsvc.DLL
LoadedModule[55]=C:\WINDOWS\SYSTEM32\SspiCli.dll
LoadedModule[56]=C:\WINDOWS\SYSTEM32\TextShaping.dll
LoadedModule[57]=C:\WINDOWS\SYSTEM32\textinputframework.dll
LoadedModule[58]=C:\WINDOWS\System32\CoreUIComponents.dll
LoadedModule[59]=C:\WINDOWS\System32\CoreMessaging.dll
LoadedModule[60]=C:\WINDOWS\SYSTEM32\ntmarta.dll
LoadedModule[61]=C:\WINDOWS\SYSTEM32\wintypes.dll
LoadedModule[62]=C:\WINDOWS\System32\clbcatq.dll
LoadedModule[63]=C:\WINDOWS\system32\dataexchange.dll
LoadedModule[64]=C:\WINDOWS\system32\d3d11.dll
LoadedModule[65]=C:\WINDOWS\system32\dcomp.dll
LoadedModule[66]=C:\WINDOWS\system32\dxgi.dll
LoadedModule[67]=C:\WINDOWS\system32\twinapi.appcore.dll
LoadedModule[68]=C:\Program Files\Common Files\microsoft shared\ink\tiptsf.dll
LoadedModule[69]=C:\WINDOWS\SYSTEM32\CRYPTBASE.DLL
LoadedModule[70]=C:\WINDOWS\SYSTEM32\WindowsCodecs.dll
LoadedModule[71]=C:\WINDOWS\SYSTEM32\mscms.dll
LoadedModule[72]=C:\WINDOWS\SYSTEM32\ColorAdapterClient.dll
LoadedModule[73]=C:\WINDOWS\SYSTEM32\WINSTA.dll
LoadedModule[74]=C:\WINDOWS\SYSTEM32\PROPSYS.dll
LoadedModule[75]=C:\WINDOWS\SYSTEM32\profapi.dll
LoadedModule[76]=C:\Windows\System32\thumbcache.dll
LoadedModule[77]=C:\WINDOWS\SYSTEM32\apphelp.dll
LoadedModule[78]=C:\Windows\System32\dlnashext.dll
LoadedModule[79]=C:\WINDOWS\system32\wpdshext.dll
OsInfo[0].Key=vermaj
OsInfo[0].Value=10
OsInfo[1].Key=vermin
OsInfo[1].Value=0
OsInfo[2].Key=verbld
OsInfo[2].Value=19041
OsInfo[3].Key=ubr
OsInfo[3].Value=985
OsInfo[4].Key=versp
OsInfo[4].Value=0
OsInfo[5].Key=arch
OsInfo[5].Value=9
OsInfo[6].Key=lcid
OsInfo[6].Value=1033
OsInfo[7].Key=geoid
OsInfo[7].Value=242
OsInfo[8].Key=sku
OsInfo[8].Value=48
OsInfo[9].Key=domain
OsInfo[9].Value=0
OsInfo[10].Key=prodsuite
OsInfo[10].Value=256
OsInfo[11].Key=ntprodtype
OsInfo[11].Value=1
OsInfo[12].Key=platid
OsInfo[12].Value=10
OsInfo[13].Key=sr
OsInfo[13].Value=0
OsInfo[14].Key=tmsi
OsInfo[14].Value=221259749
OsInfo[15].Key=osinsty
OsInfo[15].Value=3
OsInfo[16].Key=iever
OsInfo[16].Value=11.789.19041.0-11.0.1000
OsInfo[17].Key=portos
OsInfo[17].Value=0
OsInfo[18].Key=ram
OsInfo[18].Value=16334
OsInfo[19].Key=svolsz
OsInfo[19].Value=237
OsInfo[20].Key=wimbt
OsInfo[20].Value=0
OsInfo[21].Key=blddt
OsInfo[21].Value=191206
OsInfo[22].Key=bldtm
OsInfo[22].Value=1406
OsInfo[23].Key=bldbrch
OsInfo[23].Value=vb_release
OsInfo[24].Key=bldchk
OsInfo[24].Value=0
OsInfo[25].Key=wpvermaj
OsInfo[25].Value=0
OsInfo[26].Key=wpvermin
OsInfo[26].Value=0
OsInfo[27].Key=wpbuildmaj
OsInfo[27].Value=0
OsInfo[28].Key=wpbuildmin
OsInfo[28].Value=0
OsInfo[29].Key=osver
OsInfo[29].Value=10.0.19041.985.amd64fre.vb_release.191206-1406
OsInfo[30].Key=buildflightid
OsInfo[30].Value=64B36024-B63D-4CD5-8CFA-3B295DB8B77B.1
OsInfo[31].Key=edition
OsInfo[31].Value=Professional
OsInfo[32].Key=ring
OsInfo[32].Value=Retail
OsInfo[33].Key=expid
OsInfo[33].Value=RS:847B
OsInfo[34].Key=fconid
OsInfo[35].Key=containerid
OsInfo[36].Key=containertype
OsInfo[37].Key=edu
OsInfo[37].Value=0
FriendlyEventName=Stopped responding and was closed
ConsentKey=AppHangXProcB1
AppName=Multi Commander - File Management For Professionals
AppPath=C:\Program Files\MultiCommander (x64)\MultiCommander.exe
ReportDescription=A problem caused this program to stop interacting with Windows.
NsPartner=windows
NsGroup=windows8
ApplicationIdentity=90F8AD5027199C64C3863DD150F1FB13
MetadataHash=834502349

42
Thanks Mathias.
I never get a msg box, so nothing I can click. Just the splash flag which is static.

But I must have had an instance active when I edited the xml.  Made sure MC was all closed & it saved it correctly this time ::) :-[
No idea why I allowed that as it is obvious.  Too long in lock-down maybe!   :D


43
Hi Mathias.
I deleted all lines below <\config> & added the <startup> tags below </save>as you showed in your post.
So that section I used as example is :-
Code: [Select]
  </tweak>
    <SortLanguageAware value="0"/>
    <SortFilesBeforeFolders value="0"/>
    <AdjustDateTimeForDTS value="1"/>
    <HighlightSortColumn value="0"/>
  </layout>
  <tweak>
    <CacheRowData value="0"/>
  </tweak>
  <save>
    <path value="1"/>
    <onlylocal value="1"/>
    <sort value="1"/>
    <onlylocked value="0"/>
    <itemfocus value="1"/>
  </save>   
 <startup>
  </startup>   
  <selection>
    <comparefolders>
      <files value="1"/>
      <folders value="1"/>
    </comparefolders>

Closing & restarting MC appends the lines from the <save> section =
Code: [Select]
</config>
<DelayUpdate value="1"/>
<onlylocal value="0"/>
<onlylocked value="0"/>
<itemfocus value="1"/>
<sort value="1"/>
& MC hangs.  <startup> is removed from the xml.
MC isn't even listed in the alt+tab window.  The splash screen appears on the desktop & that's it.
MC must be accessed & killed via TM.


I ran windbg on the dump to see if that would help.
Here's the output:

Code: [Select]
*******************************************************************************
*                                                                             *
*                        Exception Analysis                                   *
*                                                                             *
*******************************************************************************

*** WARNING: Unable to verify checksum for MultiCommander.exe

KEY_VALUES_STRING: 1

    Key  : Analysis.CPU.Sec
    Value: 1

    Key  : Analysis.DebugAnalysisProvider.CPP
    Value: Create: 8007007e on DESKTOP-LDE1BEV

    Key  : Analysis.DebugData
    Value: CreateObject

    Key  : Analysis.DebugModel
    Value: CreateObject

    Key  : Analysis.Elapsed.Sec
    Value: 28

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

    Key  : Analysis.System
    Value: CreateObject

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

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


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:  00003ebc

PROCESS_NAME:  MultiCommander.exe

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

EXCEPTION_CODE_STR:  80000003

STACK_TEXT: 
000000ae`1e76adb8 00007fff`c951d6f1 : 00000000`00000000 00000000`000000e5 00000000`0003088c 00007fff`c94f0000 : win32u!NtUserWaitMessage+0x14
000000ae`1e76adc0 00007fff`c951d461 : 00000000`00000100 00000000`00000000 00000000`00000001 00000000`00000000 : user32!DialogBox2+0x261
000000ae`1e76ae60 00007fff`c956bc1b : 00000000`00010009 000000ae`1e76afc0 000000ae`1e76b1e0 00000288`571b1120 : user32!InternalDialogBox+0x12d
000000ae`1e76aec0 00007fff`c956a535 : 00000000`00000000 00000000`000000a9 00000000`000002f0 00000000`00000032 : user32!SoftModalMessageBox+0x85b
000000ae`1e76b010 00007fff`c956b327 : 00007fff`c94feb96 00000000`00000012 00000000`0000000e 00000000`00000800 : user32!MessageBoxWorker+0x341
000000ae`1e76b1c0 00007fff`c956b3ae : 00000000`00000000 00000000`00000376 00000000`00000000 00000288`571d9f68 : user32!MessageBoxTimeoutW+0x1a7
000000ae`1e76b2c0 00007ff7`dba64a93 : 00000000`00000000 00007ff7`dc170310 00007ff7`0000007d 00000000`00000030 : user32!MessageBoxW+0x4e
000000ae`1e76b300 00007ff7`dba647c2 : 00000288`571d8e00 00007ff7`db9e5724 00000288`571dbbf0 00000288`55bf4200 : MultiCommander+0x84a93
000000ae`1e76b590 00007ff7`dbde6e06 : 00000288`571d9f68 00000000`00000000 00000288`571dbbf0 00000000`00000001 : MultiCommander+0x847c2
000000ae`1e76b5d0 00007ff7`dbde2077 : 00000288`571d8e00 00000288`571d9f68 00000288`55bf4298 00000288`55bf4201 : MultiCommander+0x406e06
000000ae`1e76b610 00007ff7`dbde277b : 000000ae`1e76b718 000000ae`1e76b701 00000288`55bf4298 00000288`55bf4298 : MultiCommander+0x402077
000000ae`1e76b660 00007ff7`dbde9fe6 : 00000000`00000000 000000ae`1e76b740 00000288`571d6f00 00000000`00002710 : MultiCommander+0x40277b
000000ae`1e76b6d0 00007ff7`dbf87374 : 00000288`571d6f00 00007ff7`db9e6501 000000ae`1e76b870 ffffc148`3d83c610 : MultiCommander+0x409fe6
000000ae`1e76b760 00007ff7`dbf1dce3 : 00000288`571d6fc0 000000ae`1e76b800 000000ae`1e76b870 00000288`572807a0 : MultiCommander+0x5a7374
000000ae`1e76b7a0 00007ff7`dbf2ebb5 : 00000288`00000000 00000288`5719e510 00000288`571d6fb0 00000288`571d6fa0 : MultiCommander+0x53dce3
000000ae`1e76b810 00007ff7`dbf304c7 : 00000288`55bf4400 00000288`5719e510 00000288`571d6fb0 00000288`571d6fc8 : MultiCommander+0x54ebb5
000000ae`1e76b870 00007ff7`dbdf5de1 : 00000288`57168c90 00000288`571d6ff8 00000288`571dbd90 00000000`00000052 : MultiCommander+0x5504c7
000000ae`1e76f9c0 00007ff7`dbdfa864 : 00000288`55bf4380 000000ae`1e76fab0 00000288`571d6fa0 00000288`56fc6af0 : MultiCommander+0x415de1
000000ae`1e76fa00 00007ff7`dbc1f5ff : 00000288`571d63b8 000000ae`1e76fab0 00000288`56fc6af0 00007ff7`dc028a01 : MultiCommander+0x41a864
000000ae`1e76fa40 00007ff7`dbc23a35 : 00000288`570b9c48 00000000`00000001 00000000`00000000 00000288`55bf4290 : MultiCommander+0x23f5ff
000000ae`1e76fad0 00007ff7`dbccea49 : 00000288`55c29af0 00000288`55c655b0 00007ff7`dc170310 00000288`55bf0850 : MultiCommander+0x243a35
000000ae`1e76fb70 00007ff7`dbcda419 : 00000000`03e30123 00007ff7`dba6111c 00007ff7`dc170310 00000288`55cc85c8 : MultiCommander+0x2eea49
000000ae`1e76fba0 00007ff7`dbb30fe3 : 00000288`00000000 00000000`00000001 00000000`00000000 00000288`53b324e0 : MultiCommander+0x2fa419
000000ae`1e76fc90 00007ff7`dbaa6f6e : 00000000`00000001 00000000`00000000 00000000`00000000 00000000`00000000 : MultiCommander+0x150fe3
000000ae`1e76fcd0 00007fff`c8107034 : 00000000`00000000 00000000`00000000 00000000`00000000 00000000`00000000 : MultiCommander+0xc6f6e
000000ae`1e76fd10 00007fff`c9efd0d1 : 00000000`00000000 00000000`00000000 00000000`00000000 00000000`00000000 : kernel32!BaseThreadInitThunk+0x14
000000ae`1e76fd40 00000000`00000000 : 00000000`00000000 00000000`00000000 00000000`00000000 00000000`00000000 : ntdll!RtlUserThreadStart+0x21


STACK_COMMAND:  ~0s; .ecxr ; kb

SYMBOL_NAME:  win32u!NtUserWaitMessage+14

MODULE_NAME: win32u

IMAGE_NAME:  win32u.dll

FAILURE_BUCKET_ID:  BREAKPOINT_80000003_win32u.dll!NtUserWaitMessage

OS_VERSION:  10.0.19041.1

BUILDLAB_STR:  vb_release

OSPLATFORM_TYPE:  x64

OSNAME:  Windows 10

FAILURE_ID_HASH:  {a106cd41-a8b1-c51d-6d94-a75661270841}

44
Hi Mathias.
I can see the values that are added at the end of the xml in what I assume is the correct place:-
Code: [Select]
  </tweak>
    <SortLanguageAware value="0"/>
    <SortFilesBeforeFolders value="0"/>
    <AdjustDateTimeForDTS value="1"/>
    <HighlightSortColumn value="0"/>
  </layout>
  <tweak>
    <CacheRowData value="0"/>
  </tweak>
  <save>
    <path value="1"/>
    <onlylocal value="1"/>
    <sort value="1"/>
    <onlylocked value="0"/>
    <itemfocus value="1"/>
  </save>       
  <selection>
    <comparefolders>
      <files value="1"/>
      <folders value="1"/>
    </comparefolders>

these are echoed at the end on MC shut down as I said.
I added the
 <startup>
  </startup>
beneath   </save>
& MC removed the starup entries & echoed those lines again & is back hanging on the 'loading' comment.

Tried uploading a dmp  & 
Quote
Sorry, there was a problem uploading your file.

Storage is low on free disk space

......I'll try again later  ;)

45
Updated & ran this build OK for 5hrs approx.
Subsequently shut down & restarted PC & now hangs on splash screen at ''Loading extension : Explorer Panel'' statement.
Needs to be terminated via Task Manager.  Running as Admin on win10 x64.

Following Lukasz' comment, I altered the end section of the ExplorerPanel.xml file & MC then correctly starts.
I.E.
Code: [Select]
<DelayUpdate value="1"/>
<onlylocal value="0"/>
<onlylocked value="0"/>
<itemfocus value="1"/>
<sort value="1"/>

<<<< I commented out this trailing extra block>>>>

<!--<DelayUpdate value="1"/>-->
<!--<onlylocal value="0"/>-->
<!--<onlylocked value="0"/>-->
<!--<itemfocus value="1"/>-->
<!--<sort value="1"/>-->

Closing MC reverts to lock-up at next start with ExplorerPanel.xml being incorrectly formatted again.

Need your help Mathias ;)

46
Support and Feedback / Re: File Coloring Rules Editor dialog
« on: March 13, 2021, 17:57:00 »
Thanks Mathias.
Well that shows how long I've been happy with my colors  ;D
Only on the last update did my system files suddenly become invisible in dark mode.
The absence of the system files setting threw me but I can see that there are lots of options with the new filter setup, which is good.  ;)
I will have to think about how I can use the increased functions.  :)

47
Support and Feedback / File Coloring Rules Editor dialog
« on: March 09, 2021, 15:27:24 »
Has the default dialog changed, Mathias?
I added a filter so it does what i want.  But I'm wondering whether the dialog has changed.
It was

but I now get a different version with fewer presets.

I wanted to change the 'System' file colors but that entry doesn't appear to be present in MC v11 b2770 x64 (run as admin, dark mode) editor dialog...  ???


48
Thanks Mathias, not to worry.
I had wondered if it was an obvious or known limitation of the search panel.
I will try & do some experiments & see if I can track it down & get back to you.  :)

49
Thanks for the reply Mathias.

I haven't tried many scripts via the RES, but the one that would like most, name as folder (from the thread I mentioned above), doesn't work on single or multiple selected files.
Using less complex instructions does work in some cases e.g. search & replace chars in a found item, works fine.

I'm guessing the call to get the folder name doesn't interpret the virtual path of the RES correctly.  :-\
Maybe I just need to alter how the folder name variable is looked for by MS?

50
I'd like to be able to select files in the RES window & run my scripts on them.

EG Would like to block select & run 'name as folder' script on found files in multiple folders via the RES.
(Re:- http://forum.multicommander.com/forum/index.php/topic,945.msg2836.html#msg2836 )

I think this may be a complex thing to incorporate given the variables but maybe it's possible???   ??? ;)

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