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 - Stéphane P.

Pages: [1]
1
Script / Re: Look for script
« on: December 08, 2020, 20:01:09 »
Hello,

Some examples to show the different possibilities.

System Variable
Code: [Select]
@var $env = TranslateEnvString("%COMPUTERNAME%");
SetClipboardText( $env);
MessageBox( "Env Var", $env,0);

Run system executable
Code: [Select]
MC.Run CMD={"c:\windows\System32\shutdown.exe /r /f /t 0"}
Read File and Put Content to the clipboard
Code: [Select]
@var $content = LoadStringFromFile( '\\10.69.0.200\CounterString_1000.txt' );
SetClipboardText( $content );

Create folder with the date of the day
Code: [Select]
@var $now = GetTime();
@var $date = FormatDate( "dd-dddd" , $now );
@var $folder;
@var $FolderBaseName = GetSourcePath();
{
 $folder = $FolderBaseName ^ $date;
 MC.Filesystem.Makedir PATH="{$folder}"
 }

2
Support and Feedback / Re: how to call the WINDOWS Terminal?
« on: July 03, 2020, 13:19:24 »
Hello,

That is a pure Windows problem and not related at all to Mc. Anyway, have you tried the Microsoft wrapper wt.exe?
For specific folder launch that is quiet not yet possible, see https://weblog.west-wind.com/posts/2019/Sep/03/Programmatically-Opening-Windows-Terminal-in-a-Specific-Folder

Regards.

3
Quote
- Many dialog is not change to DarkMode. All of them will not be change. But request the dialogs that pops up often for you that you want to be updated.

Hello Mathias,
I think it might be a lot of work, but what about the MultiDataViewer? I often use it, so I'm trying my luck.

Regards.

4
Hello Mathias,

Regarding translations, can we start on this version, or is it better to wait for a more stable version?

Regards.

5
Hello,

If you want to exchange with most of us, please use a 'common' language as English.
Your question:
Where does most of the content on this site come from?
It is the creator of the application that is managing all the web site and also gives 99% of the answers of this forum.

Is it possible to share information?
What do you mean? What do you want to do with the content?
Do you want to help translate to Finnish?

As everything is Matthias property, once again, ask him directly your thoughts.

Best regards.

6
Support and Feedback / Re: Portable Editions?!
« on: September 03, 2016, 14:04:24 »
Hello,

See http://multicommander.com/docs/Installation

Portable Installer (.zip)
The portable installer is named MultiCommander_x64_Portable_([version]).zip or MultiCommander_win32_Portable_([version]).zip
The portable package is a zip archive that you only need to unpack to a folder. Just make sure that you keep the folder structure from the zip package.
The portable version is the same as the installed version. The difference is that the portable version is configured to store all settings and configuration in the folder that Multi Commander is installed in and run from.
The portable version does not save anything to the registry or to the user account folder. Everything is saved in the Multi Commander folder. So the program must have write permissions to the folder that you start Multi Commander from.
This version is ideal to be installed to - and run from - a USB memory stick.

Regards.


7
Translations And Language Packs / Re: Language Changes 6.2> 6.4
« on: July 27, 2016, 21:10:42 »
Hi Alan,

If I remember correctly my exchanges with Mathias on this, it is a way of commenting entries in English reference files. It is not impacting the translation process.
He told me that he may be cleaned one day.

Best regards.

8
Attached is the last translation of the MC_LangPack_fr_5.9.5_Build2805_BETA.



9
Hi,

Very quick overview.

In the Submit Language Pack, an extra & character, "wit" without the "h"

"press then "Export/Send" button.&

A windows with a dropdown wit three options will be shown."

The google translation option do not appear too. Wanted?

Regards.

10
Hello Mathias,

A script function to be able to download files from the internet using the HTTP, HTTPS or FTP protocol.

Regards.

11
Script / Script to retreive and/or update sysinternals tools
« on: July 22, 2014, 21:59:30 »
I share my script in case of it can interest other people.
The need is to update "Process Explorer" tools from Sysinternals to the last version.
It verifies the registry to see if the EULA has been accepted. If it is the case, it retreives the running path to overwrite it if a newer version exists.
If no EULA, retreives the last version in a defined path.

The only possible problems is that live.sysinternlas.com may take a long time to respond.

Code: [Select]
// 191.236.128.229 = live.sysinternals.com
// Return Only wants "num"

@var $ProcExpOnlineVersion, $ProcExpLocalVersion;
@var $ProcExpOnlinePath, $ProcExpLocalPath;

@var $ExecutableName = "procexp.exe";
@var $ExeRegName = "Process Explorer";
@var $l, $o;


function GetOnlineVersion($ExecutableName)
{
 @var $Result
 $ProcExpOnlinePath = '\\191.236.128.229\Tools' ^ $ExecutableName;
 $ProcExpOnlineVersion = GetFileProp($ProcExpOnlinePath , "ExtendedProp.prodVersion");
 $Result= StrReplace($ProcExpOnlineVersion , "." , "" );
 return $Result;
}

function GetLocalVersion($ExeRegName)
{
 @var $Result
 @var $exists = RegKeyExists("HKCU","Software\\Sysinternals\\" + $ExeRegName );
 if( $exists == 1 )
 {
  $ProcExpLocalPath = RegValueGetSZ("HKCU","Software\\Sysinternals\\" + $ExeRegName, "OriginalPath");
  $ProcExpLocalVersion= GetFileProp($ProcExpLocalPath , "ExtendedProp.prodVersion");
  $Result= StrReplace($ProcExpLocalVersion, "." , "" );
  return $Result;
 }
 else
 {
  $ProcExpLocalPath = "C:\\Temp" ^ $ExecutableName;
  return 0;
 }
}

function CopySysTool()
{
 CopyFile( $ProcExpLocalPath , $ProcExpOnlinePath , "NODIALOG, OVERWRITE_ALL");
}

$o = GetOnlineVersion($ExecutableName);
$l = GetLocalVersion($ExeRegName);

if( StrCompareNoCase($l , "0" ) == 0 )
{
 CopySysTool();
}
else
{
 if($o > $l)
 {
  CopySysTool();
 }
}

12
Feature Requests and Suggestions / Hot Paths by Tab.
« on: July 23, 2012, 16:12:02 »
Is it possible to have for each panel explorer it's own Hot Paths list?

13
Is it possible to add a Stop Service button when it is a service that is using the locked file?

14
Feature Requests and Suggestions / Re: language.
« on: December 05, 2011, 19:46:04 »
Hello PBDier.nl,

Do you plan to realize the NL Language? If not, I can help in the way of realizing the translation files using online tools, but as I do not know at all NL language I will not understand the results and for sure it will need corrections, ... So if you are ready to verify/correct the work, I can work on it. Let me know.


15
When this option is used, no file is created in the destination folder selected.
Tested using the default name unkown.txt and with another one.

More the type combobox is not available in the Save As dialog.

Pages: [1]