Author Topic: Look for script  (Read 8961 times)

Mathias (Author)

  • Administrator
  • VIP Member
  • *****
  • Posts: 4265
    • View Profile
    • Multi Commander
Look for script
« on: December 06, 2020, 13:39:57 »
I know many of you are write scripts.

I'm look for nice generic script that you think should be included in a standard installation of MultiCommander.
Both as fully functional and as examples..

Tips of scripts and/or full script are wanted.
« Last Edit: December 06, 2020, 14:05:53 by Mathias (Author) »

Stéphane P.

  • Junior Member
  • **
  • Posts: 15
    • View Profile
Re: Look for script
« Reply #1 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}"
 }

ReneMiner

  • Newbie
  • *
  • Posts: 5
    • View Profile
Re: Look for script
« Reply #2 on: April 09, 2021, 22:29:45 »
i don"t get the script together myself but described how to mount the registry from a currently offline windows installation to fix and repair it or to change settings that prevent the other installation from successful boot.

http://forum.multicommander.com/forum/index.php/topic,4179.msg11897.html#msg11897
« Last Edit: April 09, 2021, 22:33:34 by ReneMiner »