PowerShell | クズリーマンのカス備忘録

PowerShell

スポンサーリンク
PowerShell

PowerShellでリモート先のサーバーのポートが空いているか確認するコマンド

Test-NetConnection -ComputerName <サーバーのIPアドレス> -Port <ポート番号>例)> Test-NetConnection -ComputerName 127.0.0.1 -Port 80Compu...
PowerShell

powershellスクリプト入門 最初の一歩

Hello world を表示してみる ファイル拡張子 .ps1 中身 "Hello world" 以上。 頭にecho付けなくても、 "Hello world" だけでもOK。 powershellスクリプトを実行するとノートパッ...
スポンサーリンク