Recent Posts

Pages: [1] 2 3 4 5 ... 10
1
Support and Feedback / Re: Trojan:Win32/Wacatac.B!ml
« Last post by wynford on Yesterday at 00:27:52 »
I use Windows Security... I never got that message
2
Feature Requests and Suggestions / [Request] Common folder tree
« Last post by milen-prg on January 07, 2026, 22:39:55 »
Please, make settings for one common Folder tree, which works with the currently active pannel (left/right).
This is very useful for small displays (laptop). Similar feature is in Double commander and Q-Dir.
3

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

Interesting, Half the feature allready exist. Thanks.
4
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.
5
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.
6
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" )
7
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
8
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





9
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.
10
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


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