01 powershell 常用命令
查看 powershell 的版本
PS> $Host.Version
Major Minor Build Revision
----- ----- ----- --------
5 1 18362 145
PS> (Get-Host).Version
Major Minor Build Revision
----- ----- ----- --------
5 1 18362 145
PS> Get-Host
Name : ConsoleHost
Version : 5.1.18362.145
InstanceId : af3c77dd-0f30-4e2e-97e5-fd583bb34a6b
UI : System.Management.Automation.Internal.Host.InternalHostUserInterface
CurrentCulture : zh-CN
CurrentUICulture : zh-CN
PrivateData : Microsoft.PowerShell.ConsoleHost+ConsoleColorProxy
DebuggerEnabled : True
IsRunspacePushed : False
Runspace : System.Management.Automation.Runspaces.LocalRunspaceGet-Command | gcm 查看命令
Get-Command | gcm 查看命令Set-Alias 设置别名
Set-Alias 设置别名Remove-Alias | Remove-Item 删除别名
Remove-Alias | Remove-Item 删除别名Invoke-Item | ii 从 powershell 中打开资源管理器
Invoke-Item | ii 从 powershell 中打开资源管理器最后更新于