- PowerShell 教程
- PowerShell - 主頁
- PowerShell - 概述
- PowerShell - 環境設定
- PowerShell - Cmdlet
- PowerShell - 檔案和資料夾
- PowerShell - 日期和時間
- PowerShell - 檔案輸入/輸出
- PowerShell - 高階 Cmdlet
- PowerShell - 指令碼編寫
- PowerShell - 特殊變數
- PowerShell - 運算子
- PowerShell - 迴圈
- PowerShell - 條件
- PowerShell - 陣列
- PowerShell - 雜湊表
- PowerShell - 正則表示式
- PowerShell - 反引號
- PowerShell - 括號
- PowerShell - 別名
- PowerShell 有用的資源
- PowerShell - 快速指南
- PowerShell - 有用的資源
- PowerShell - 討論
Powershell - 賦值運算子示例
以下指令碼演示賦值運算子。
> $a = 10 > $b = 20 > $c = $a + $b > $c 30 > $c += $a > $c 40 > $c -= $a > $c 30
powershell_operators.htm
廣告