教程 Powershell 教程 Powershell - 赋值运算符示例 Powershell - 赋值运算符示例 Created: November-02, 2018 以下脚本演示了赋值运算符。 > $a = 10 > $b = 20 > $c = $a + $b > $c 30 > $c += $a > $c 40 > $c -= $a > $c 30 Powershell - 格式宽的 CmdletPowershell - Format-List Cmdlet