Recent Posts

Pages: 1 ... 3 4 5 6 [7] 8 9 10
61
Support and Feedback / Re: Trojan:Win32/Wacatac.B!ml
« Last post by Mathias (Author) on January 07, 2026, 15:22:19 »
Very common that happens.. Filemanager application does a lot of stuff with files that are suspicious.
Normally fixes it self after 2-3 day after release.
62
Support and Feedback / Trojan:Win32/Wacatac.B!ml
« Last post by KT on January 07, 2026, 15:06:02 »
Just a notice to everyone that when I went to do the upgrade to v15.7 (build 3130) on my company laptop, Microsoft Defender quarantined the download as a severe threat.

***https://www.microsoft.com/en-us/wdsi/threats/malware-encyclopedia-description?name=Trojan%3AWin32%2FWacatac.B!ml&threatid=2147735505

I had to go into the Windows Security app to release the file for installation.
63
Ok if you just what to make the foldername same a filename without ext. then it is a lot easier.

I'm not an powershell expert.. but to fix the powershell script. try asking ChatGPT or similar.. they are pretty good at fixing scripts..

(The reverse is in MC as a copy plugin.  "Copy Content" )
64
Hello

I have posted this questions on another place, like Discord, an a user propose this powershell script. I share with you.
This is a feature not often necessary but usefull when needed. The reverse possibility is also needed sometime.

Sorry for the french below.
--------------------------------------------------------------------------------------------------------------------------------------------------------
Sous window, va dans ton dossier ou ce trouve ceux dans des dossiers et non, fait shift + clic droit dans le vide et choisi l'option ouvrir une fenêtre powershell.

ensuite copie ce script dans powershell et fait enter (n'oublie pas les deux accolade fermante en fin de script:

Get-ChildItem -File | ForEach-Object {
    $folderName = [System.IO.Path]::GetFileNameWithoutExtension($_.Name)
    if (!(Test-Path $folderName)) {
        New-Item -ItemType Directory -Name $folderName | Out-Null
        Move-Item $_.FullName $folderName
    }
}

Tous tes fichiers qui ne seront pas déjà dans un dossier le seront (à leurs noms respectifs), ceux qui le sont déjà ne seront pas changé.
----------------------------------------------------------------------------------------------------------------------------------------------------


EDIT:
Don't work for all because sometime caracters not handled on the filename with this script:

Move-Item : Impossible de récupérer les paramètres dynamiques pour l'applet de commande. Le modèle de caractères
génériques spécifié n’est pas valide :
Les.Nus.et.les.Morts.(The.Naked.and.the.Dead).1958.BRRiP.720p.x264.AC3.[Repack.Jean.Jacques}.mkv
Au caractère Ligne:5 : 9
+         Move-Item $_.FullName $folderName
+         ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : InvalidArgument : (:) [Move-Item], ParameterBindingException
    + FullyQualifiedErrorId : GetDynamicParametersException,Microsoft.PowerShell.Commands.MoveItemCommand

Move-Item : Impossible de trouver une partie du chemin d'accès.
Au caractère Ligne:5 : 9
+         Move-Item $_.FullName $folderName
+         ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : WriteError: (M:\Films-HUSH-2...AAC-Notag...mkv:FileInfo) [Move-Item], DirectoryNotFoundE
   xception
    + FullyQualifiedErrorId : MoveFileInfoItemIOError,Microsoft.PowerShell.Commands.MoveItemCommand
65
That is a very special use case.. There is no built in ready to go feature like that.

But you should be able to create a UserDefinedCommand of MultiScript type to do that.
The hard part is to figure out what that the folder name should be. If the folder name can be generated from what the filename is.. then it is easier.

From MultiScript you can get all selected files
Go through them one by one and from file name create the Directory name you want,.
Create that folder and then move the file to that folder..

Then you assign that command to a HotKey/Button/Menu and when you select that command it will run that on all selected files.

https://multicommander.com/Docs/UDC_multiscript
https://multicommander.com/Docs/multiscript/functions/getfilefromview#getselectedpaths
https://multicommander.com/Docs/multiscript/functions/filesystem#movefile
https://multicommander.com/Docs/multiscript/functions/string
https://multicommander.com/Docs/multiscript/examples#file-operations





66
Hello

I have HDDs with lots of movies files, some of them are inside drawer (some hundred) and some of them without (files directly clickable).

I would like to know if it's possible allready in MultiCommander.

- Select a movie file.
- Use a Multicommander feature that:
- Create a drawer with the name of the movie.
- Put the movie on the drawer

And the best is to do that with one click for hundreds movies.

Thanks for your help.
67
Thanks, I see that I can change the font for the free-space but the icons to the right of them are still miniature and do not change at all.   I don't use the Windows Scaling function as that screws up a lot of windows apps so you cannot get to some things, especially if they are at the bottom like Save or other buttons down there. Please ignore the squiggles as Undo doesn't seem to exist in snip.. -Bill


68
Support and Feedback / Re: Commander Panel
« Last post by Mathias (Author) on January 04, 2026, 11:13:23 »
I don't know what "commander panel" is.
There is no extra extension in MC that is called that.

MC do not have a full folder compare and sync feature yet..
It has so it can compare two folders. and select what is different based on some rules. it does not compare subitems in folders. only what is shown in the two panels with each other
Menu > Edit > "Compare Folders , Advanced..."



69
Support and Feedback / Commander Panel
« Last post by sbankscharles on January 04, 2026, 05:57:50 »
I wanted to do folder compare between two computers and tried to use Multi Commander.  Long story short, I discovered that you can only do this in commander panel.  Then I discovered that I do not have that extension in my version.  Then I discovered the correct setup file is not on the download page, even for previous versions.

Is there any way to get the correct version to run commander panel?

Thanks
70
MC will scale with Windows scale settings.. Unless you turn that off and if you want  everything bigger.. scaling with Windows Scaling is often a better chooice

The font for the Freespace field is changed is changed in Explorer Panel Settings. the icons should scale automatically
Pages: 1 ... 3 4 5 6 [7] 8 9 10