起動スクリプトで ping コマンドを使用して、ネットワーク サーバーへの接続を確認できますか? Powershell 起動スクリプト:
$Ping=new-object System.Net.NetworkInformation.Ping
$Reply=$ping.send("MyServer01")
if ($Reply.status() -eq "Success")
{
Perform operations
}
Else
{Perform other operations}
現在、起動スクリプトの実行中は $reply は空白ですが、ログイン後に実行すると値が表示されます。
ありがとう。