Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>In Powershell 2, you'll get a list of defined aliases. It tells, for exemple, that <code>gal</code> is an alias to <code>get-alias</code>.</p> <p>Running <code>Get-Help alias | more</code> brings this:</p> <blockquote> <p>PS C:\Users\Fernando> Get-Help alias | more</p> <p>PROVIDER NAME Alias</p> <p>DRIVES Alias:</p> <p>SYNOPSIS Provides access to the Windows PowerShell aliases and the values that they represent.</p> <p>DESCRIPTION The Windows PowerShell Alias provider lets you get, add, change, clear, and delete aliases in Windows PowerShell.</p> <pre><code>An alias is an alternate name for a cmdlet, function, or executable </code></pre> <p>file. Windows PowerShell includes a set of buil t-in aliases. And, you can add your own aliases to the current session and to your Windows PowerShell profile.</p> <pre><code>The Alias provider is a flat namespace that contains only the alias </code></pre> <p>objects. The aliases have no child items.</p> <pre><code>Each alias is an instance of the System.Management.Automation.AliasInfo </code></pre> <p>class.</p> <pre><code>The Alias provider exposes its data store in the Alias: drive. To </code></pre> <p>work with aliases, you can change your location t o the Alias: drive by using the following command:</p> <pre><code> set-location alias: Or, you can work from any other Windows PowerShell drive. To reference </code></pre> <p>an alias from another location, use the Alia s: drive name in the path.</p> <pre><code>Windows PowerShell includes a set of cmdlets that are designed to view </code></pre> <p>and to change aliases:</p> <pre><code> Export-Alias Get-Alias Import-Alias New-Alias Set-Alias When you use these cmdlets, you do not need to specify the Alias: drive </code></pre> <p>in the name.</p> <pre><code>The Alias provider supports all the cmdlets that have the Item noun </code></pre> <p>except for the Invoke-Item cmdlet. And, it supp orts the Get-Content and Set-Content cmdlets. The Alias provider does not support the cmdlets that have the ItemPro perty noun. And, the Alias provider does not support the Filter parameter in any cmdlet.</p> <pre><code>All changes to the aliases affect the current session only. To save the </code></pre> <p>changes, add the changes to the Windows Pow erShell profile. Or, use the Export-Alias and Import-Alias cmdlets.</p> </blockquote>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload