プログラム 【PowerShell】ifについて ifの書き方 If($test -ge 10){ 処理A}ElseIf($test -le 2000) { 処理B}Else{ 処理C} 比較演算子 PowerShellイメージ-eq=-ne!=-gt>-ge>=... 2022.12.17 プログラム
Windows10 【PowerShell】実行ポリシーについて 一時的に実行する powershell -ExecutionPolicy RemoteSigned -File C:\work\hoge.ps1 ポリシーを確認する Get-ExecutionPolicy Rest... 2022.12.03 Windows10プログラム