Introduction to PowerShell

Article Updated: 2020-03-03

A, PowerShell Profile

To be honest, I always feel PowerShell cmd is an enhanced version, but look at the official presentation, function is very powerful, we use to be discovered.

Two, PowerShell use

1, commonly used commands

The following list shows common cmd.exe and UNIX commands that can be used in PowerShell:
Figure I

2, Command Aliases

Get-Alias cmdletYou can view an alias,
for example Get-Alias cat
Set-Alias cmdletyou can set an alias,
such asSet-Alias -Name gi -Value Get-Item

Noun or title abbreviation
Get g
Set s
Item i
Location l
Command cm
Alias al
Get-Item give
Set-Item and
Get-Location gl
Set-Location sl
Get-Command gcm
Get-Alias gal

Third, view the help information

1、Get-Help

Get-Help Get-ChildItemCan be obtained on Get-ChildItemthe help information
or useGet-ChildItem -?

2、man Get-ChildItem

NOTE: The following Get-ChildItemrefers to the specific command.
To display only a help content, you can use man Get-ChildItemto view information about Get-ChildItemhelp information.
To display detailed information, you can use Get-Help Get-ChildItem -Detailedto get.
To show all the help information can be used Get-Help Get-ChildItem -Fullto get.
To get more information on the parameters of a command can be used Get-Help Get-ChildItem -Parameter *to get.
To show only examples help content, but use Get-Help Get-ChildItem -Examplesto obtain.
To get online help content, you can use Get-Help Get-ChildItem -Onlineto get.

Fourth, landscaping PowerShell interface

1, adjust the size of PowerShell

For easy viewing content, you can transfer large window font, but the attendant window is also bigger, even more than the screen size, very unfriendly. Here you can adjust the height of the window title bar right in PowerShell, property layout. Here was adjusted to 2000, you can adjust according to the actual situation.
Figure II

2, adjust the color of PowerShell

To look good, you can adjust the background color PowerShell, font and color properties, color. And transparency.
Figure III

五、Enjoy!

Published 75 original articles · won praise 8 · views 10000 +

Guess you like

Origin blog.csdn.net/qq_21516633/article/details/104627420