Can I set Powershell as the default shell of Far Manager?

link|improve this question

feedback

2 Answers

up vote 4 down vote accepted

No, you cannot. But with PowerShellFar in Far Manager you can invoke PowerShell commands right from the command line with the prefix >:. That is:

Commands with console output, prefix >:

    >: Get-Date
    >: 3.14 / 3
    >: [math]::pi / 3

Commands with viewer output, prefix >>:

    >>: Get-Process
    >>: Get-ChildItem C:\TEMP\LargeFolder -Recurse -Force

Commands starting UI or background jobs normally use prefix >:

    >: $Far.Msg("Hello world!")
    >: Get-Process | Out-FarList -Text Name | Open-FarPanel
    >: Start-FarJob { Remove-Item C:\TEMP\LargeFolder -Recurse -Force }

If you expect lengthy output consider to start Far Manager as far.exe /w.

Finally see built-in PowerShellFar help, sections Command line and FAQ. You can define some accelerators. For example I use [Space] which inserts > + : + <space> into the empty command line. Thus, actually I have to type just 1 more symbol. This is a little bit inconvenient but it is perfectly compensated by the standard CMD shell at hands, CMD is not dead, especially in Far Manager.

link|improve this answer
hi @RomanKuzmin, i try to set the accelerators as is explained in the help but when i write ">: Set-FarMacro Shell Space '> : Space' 'Easy prefix' -CommandLine 0" it trows that Set-FarMacro isn't found. When i execute >: gcm far i see all the far cmdlet but Set-FarMacro is missing. What i'm doing wrong? – voodoomsr Apr 15 '11 at 22:13
You should at first invoke Import-Module FarMacro (or F11 \ PSF \ Modules \ FarMacro). I should have mentioned this in help (will do, thanks). – Roman Kuzmin Apr 16 '11 at 1:45
Thanks Roman that was the missing step, :). I have only two more thing that bothers me about Farmanager but i'm going to search where to ask that, maybe you could give some light...(after working with it, if i return to the console the actual character mark dissapear and the insert mode is on (overwrite mode), and what is more incredible is that if i press insert to deactivate the insert mode, after entering a line, the insert mode appears again) – voodoomsr Apr 16 '11 at 15:27
feedback

PowerShellFar allows you to integrate PowerShell into Far Manager.

PowerShellFar combines the rich console based user interface of Far Manager with full power of Windows PowerShell perfectly integrated into this original text friendly environment.

link|improve this answer
yea i know but how the default shell could work with powershell. That extensions allows me to execute powershell commands trough the menu f11..powershellfar..invoke.... i want to execute posh without doing all of that, if you look in the bottom of powershell far there is a command line, but for default works with cmd, :( i wanna change that – voodoomsr Apr 4 '11 at 13:49
Its simply not possible. – Justin Dearing Apr 4 '11 at 20:21
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.