Recent Posts

Pages: [1] 2 3 4 5 ... 10
1
Script / [SCRIPT] Set As Background Wallpaper (Stretched)
« Last post by total_annihilation00 on February 06, 2026, 03:38:16 »
Useful 'Set As Wallpaper (Stretched)' PowerShell Script I added as a 'Custom Context Menu' since MC doesn't give you the "Set As Background Image" option for instance when in a Flat View (doesn't show up), this custom command will always display though (change the Script FilePath tailored to your own path (remember directory subpaths must be in double slashes)) (To add to Context Menu goto Config > "Custom Context Menu") [Tested on MC 15.8 running Windows 10]:

claude-opus-4-5-20251101-thinking-32k AI Generated::
## Step 1: Fixed PowerShell Script

Save this as `C:\SetWallpaper.ps1`:

```powershell
param([string]$ImagePath)

# Load WinForms so MessageBox works
# Add-Type -AssemblyName System.Windows.Forms

# Debug: Show what path was received (remove this line after testing)
# [System.Windows.Forms.MessageBox]::Show($ImagePath)

Set-ItemProperty -Path 'HKCU:\Control Panel\Desktop' -Name WallpaperStyle -Value '2'
Set-ItemProperty -Path 'HKCU:\Control Panel\Desktop' -Name TileWallpaper -Value '0'

$code = @"
using System;
using System.Runtime.InteropServices;
public class Wallpaper {
    [DllImport("user32.dll", CharSet = CharSet.Auto)]
    public static extern int SystemParametersInfo(int uAction, int uParam, string lpvParam, int fuWinIni);
}
"@

Add-Type -TypeDefinition $code -ErrorAction SilentlyContinue
[Wallpaper]::SystemParametersInfo(20, 0, $ImagePath, 3)
```

---

## Step 2: Corrected MC.Run Command

The issue is likely the variable not expanding properly. Try this (Save this as a User-Defined Command then add it to Config > Custom Context Menu to set the selected file as a Stretched Wallpaper):

```multiscript
@var $imgPath = GetSourceFocusPath();
@var $arguments = "-ExecutionPolicy Bypass -File \"C:\\SetWallpaper.ps1\" -ImagePath \"" + $imgPath + "\"";
MC.Run CMD="powershell.exe" ARG="{$arguments}";
```

---

Notes (if you want other styles later)
These registry values are the ones Windows uses:
  • Stretch: WallpaperStyle=2, TileWallpaper=0 (used above)
  • Fill: WallpaperStyle=10, TileWallpaper=0
  • Fit: WallpaperStyle=6, TileWallpaper=0
  • Center: WallpaperStyle=0, TileWallpaper=0
  • Tile: WallpaperStyle=0, TileWallpaper=1
2
Support and Feedback / Re: Copier/Coller
« Last post by Mathias (Author) on February 05, 2026, 16:27:31 »
You can also check the log with Ctrl+L  If the renamed failed. it should be listed there.. BUT the rename operation can also be halted by security software in silent.. MC think it was successful but the security app prevented the call.
3
Support and Feedback / Re: Copier/Coller
« Last post by Jungle on February 05, 2026, 12:05:59 »
Please, describe exactly what you do step by step. MultiCommander has a "Rename" button on a toolbar. Rename can also be done via shortcut (Shift+F6 in Commander Look'n'Feel mode).
4
Support and Feedback / Copier/Coller
« Last post by bikergp on February 05, 2026, 10:33:28 »
Bonjour à tous,

Je suis nouveau à l'utilisation de ce logiciel qui est assez formidable.

Je rencontre un problème, lorsque je veux modifier le nom d'un dossier dans Multi Commander avec un copie/coller, il n'enregistre pas cette modification.

Avez vous déjà rencontré ce problème et comment le résoudre.

Il semble même y avoir un problème ici, j'ai mis copier/coller en sujet et pas copieur/collectionneur  :'(



Merci d'avance,


 
5
Support and Feedback / Re: Dotfiles won't copy/move? Just...hangs?
« Last post by Mathias (Author) on February 05, 2026, 08:57:06 »
Thanks for the information.. I will take a look.

I have not checked yet But I suspect the error is because of some workaround that MC has for the "hidden" file attributes and linux.
Linux does not have that file attribute, but on Linux a file is "hidden" if it begins with dot "."
So Samba (the thing on linux that make file sharing on Linux windows compatible) then say that the file has hidden attribute set since it is.
and that causes some combability issue. since you can't remove or set that attribute since it is based on filename.. so MC has some workaround for "." files and Linux.
So i maybe something might be wrong with the logic around that.

6
Support and Feedback / Re: Dotfiles won't copy/move? Just...hangs?
« Last post by mpwilson on February 04, 2026, 23:11:16 »
Sorry about the response lag.  I've narrowed this down a bit more meaningfully, though I've got a lot of test cases yet to go through.

I didn't realize how narrow a niche my use case really is.

The most reliable case thusfar is:

From: Windows local machine
To:     Linux remote machine, file already exists in destination.

Attempting to update the remote file reliably cause it to hang as described.  I WILL get an overwrite confirmation dialog if appropriate.  But "overwrite" will just close the dialog and put me back in to the individual file copy dialog. 

Elapsed time will continue to update and I can hit "skip" to move past that singular file.

Windows -> Linux (remote) new file: works
Linux (remote) -> Windows new file: works
Local new/overwrite:  Works.

Here's the options on a 3 file copy and the queue shot, just in case.

Weird stuff.
7
Support and Feedback / Re: [BUG] Unicode NOT work
« Last post by Mathias (Author) on February 04, 2026, 10:39:42 »
Yes font is important.  the font need to support the characters else it will not render correct
8
Support and Feedback / Re: [BUG] Unicode NOT work
« Last post by total_annihilation00 on February 03, 2026, 17:55:06 »
O.K. I did some further testing & got to the bottom of it: It only happens on custom-defined fonts. I had 1 duplicate separate MultiCommander using "Segoe UI" fonts, & it displayed the file properly, but my *main* MultiCommander, which uses "KDam Thmor Pro" (it's a Google font (free downloadable fonts.google.com)) 'causes severe rendering glitches when showing the file on screen !! So that's the prob really: the font, not an issue /w Windowz 10 or MC ! I think "KDam Thmor Pro" font can't display those unsupported & unusual characters !
9
Support and Feedback / Re: [BUG] Unicode NOT work
« Last post by total_annihilation00 on February 03, 2026, 15:59:48 »
Strange. MC do not convert filenames and Windows NTFS is using Unicode for filename. So it should just work.

If you got a filename that does not work. create an empty file with that name.. and just 7Zip to pack that.. (7Zip should support unicode.. Zip does not) and send me it.

Here you go… (in .7z format) & 0 Btyes, created via "Edit new file" (Shift + F4) ! The file is glitchy when viewed from MC —it isn't rendered properly clearly, & you probably cannot interact /w it in any way whatsoever… P.S: Will expire in 50 days as I cannot upload .7z on this forum, so I used Upload.ee, they mangle the filename but the PDF inside should be intact. I don't know whether it's safe to upload to Dropbox/ Mega.nz/ 4Shared. Lemme know if you run into any issues /w the upload… https://www.upload.ee/files/19043668/Introduction_to_OOP_with_C____Josep_Maria_Rib___Ismet_Maksumi___Sini_a__ehaji____Z-Library_.7z.html
10
Support and Feedback / Re: [BUG] Unicode NOT work
« Last post by Mathias (Author) on February 03, 2026, 14:51:01 »
Strange. MC do not convert filenames and Windows NTFS is using Unicode for filename. So it should just work.

If you got a filename that does not work. create an empty file with that name.. and just 7Zip to pack that.. (7Zip should support unicode.. Zip does not) and send me it.
Pages: [1] 2 3 4 5 ... 10