Skip to content

Instantly share code, notes, and snippets.

@t2psyto
Created December 17, 2021 02:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save t2psyto/78552fe7195cc15a1f153ea6d4cf2088 to your computer and use it in GitHub Desktop.
Save t2psyto/78552fe7195cc15a1f153ea6d4cf2088 to your computer and use it in GitHub Desktop.
powershell コマンドライン引数のテスト
#ショートカット作成: powershell -NoProfile -ExecutionPolicy Unrestricted -File testarg.ps1
Param(
[String]$arg1 = ""
)
if ($arg1 -eq "") {
echo "引数を指定してください。"
pause
exit
}
echo ($arg1 + "foo")
pause
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment