PowerShell configuration with rc-like file

What is the script and where should I write to determine:

  • alias for ll="ls -l"
  • alias/function cd = "original cd; ll"

So my question is about the parts where the rc files for Power Shell are located in Windows 7 and how llis the - ls -land cd- alias cd; ll?

+5
source share
1 answer

Create a file at the location where the power shell indicates as you type $profile, and press enter if it does not exist. (For more information, see here .)

I also found many good examples. There powershell.exeis an example folder in my system where there is a file with a name profile.ps1with the following code:

set-alias cat        get-content
set-alias cd         set-location
set-alias clear      clear-host
set-alias cp         copy-item
set-alias h          get-history
set-alias history    get-history
set-alias kill       stop-process
set-alias lp         out-printer
set-alias ls         get-childitem
set-alias mount      new-mshdrive
set-alias mv         move-item
set-alias popd       pop-location
set-alias ps         get-process
set-alias pushd      push-location
set-alias pwd        get-location
set-alias r          invoke-history
set-alias rm         remove-item
set-alias rmdir      remove-item
set-alias echo       write-output

set-alias cls        clear-host
set-alias chdir      set-location
set-alias copy       copy-item
set-alias del        remove-item
set-alias dir        get-childitem
set-alias erase      remove-item
set-alias move       move-item
set-alias rd         remove-item
set-alias ren        rename-item
set-alias set        set-variable
set-alias type       get-content

function help
{
    get-help $args[0] | out-host -paging
}

function man
{
    get-help $args[0] | out-host -paging
}

function mkdir
{
    new-item -type directory -path $args
}

function md
{
    new-item -type directory -path $args
}

function prompt
{
    "PS " + $(get-location) + "> "
}

& {
    for ($i = 0; $i -lt 26; $i++) 
    { 
        $funcname = ([System.Char]($i+65)) + ':'
        $str = "function global:$funcname { set-location $funcname } " 
        invoke-expression $str 
    }
}

. , $profile, :

Microsoft.PowerShell_profile.ps1 , . . get-help about_signing.

:

PS C:\Windows\System32> Get-ExecutionPolicy
Restricted
PS C:\Windows\System32>

, : . ( Powershell, " " ).

PS C:\Windows\System32> Set-Executionpolicy -ExecutionPolicy Unrestricted
+7

All Articles