Windows PowerShell 是微软发布的一种命令行外壳程序和脚本环境,使命令行用户和脚本编写者可以利用 .NET Framework的强大功能。
引入了许多非常有用的新概念,从而进一步扩展了在 Windows 命令提示符和 Windows Script Host 环境中获得的知识和创建的脚本。
==============================================
微软尝试使用各种方法使PowerShell取代目前的CMD
在Windows 7中内置了PowerShell2.0, Windows 8中内置了PowerShell3.0,Windows 10,11中内置了PowerShell5.1
==============================================
执行Windows PowerShell:
1.在任意文件夹按住 按住 shift+右键,选择[在此处打开PowerShell窗口(S)]
2.按Windows + R打开“运行”对话框,然后在文本框中键入“ powershell”。您可以单击“确定”(或按Enter)打开常规的PowerShell窗口
3.由于PowerShell是默认的Windows 10程序,因此可以在“开始”菜单的“所有应用程序”部分单击“ Windows PowerShell”文件夹,然后选择“ Windows PowerShell”将其打开
==============================================
Windows PowerShell 属性
颜色:
屏幕文字: 红51,绿255, 蓝61
屏幕背景:黑色
字体:
大小36
字体:黑体
光标:中
==============================================
https://learn.microsoft.com/zh-cn/host-integration-server/core/powershell-module-cmdlets-and-commands
https://zhuanlan.zhihu.com/p/670834959
传统CMD是32位的命令行程序【cmd.exe】,继承DOS操作模式
Cmdlet是PowerShell的命令,所有的cmdlet命令都遵循动词-名词这样语法结构,PowerShell提供了Get-Command这个强大的命令,可以查找所有的cmdlet命令。
powershell中的cmdlet命令
https://www.cnblogs.com/hyyx/p/13935900.html
PowerShell系列:从零开始学习PowerShell系列教程
https://blog.csdn.net/xishining/category_12311171.html
标签:Windows,powershell,https,cmdlet,com,PowerShell From: https://www.cnblogs.com/sangern/p/18223487