次のスクリプトを使用して、マシン上のノードを停止しています。しかし、Getting Stop-NlbClusterNode を取得しています: パラメーター名 'Credential' に一致するパラメーターが見つかりません。power-shell スクリプトと Windows 2012 を使用してノードを停止中にエラーが発生しました。また、このスクリプトでパスワードを渡すにはどうすればよいですか。ガイドしてください。
#This script monitors stopped application pools along with websites on the current host
$RemoteHostName = "testserver"
#set hostname
#import NLB module. In PS v3 these lines should be redundant and can be removed.
import-module NetworkLoadBalancingClusters
"Networking Load Balancing Clusters Module imported"
# requests the user's credentials and assigns the credentials to an object
$Credential = Get-Credential "domain\testuser"
"Get credentials for test user done"
#uses the nlb cmdlets to check the state of the current cluster
$clusterstatus = get-nlbclusternode -nodename $RemoteHostName
[string]$status = $clusterstatus | select -expand state
"Got the status of cluster $clusterstatus"
#if the node has already been stopped dont do anything
if ($status -eq "Stopped")
{
#donothing
"Node alrerady stopped"
}
#if the node hasnt been stopped, stop the node and then send an email out
else
{
"Starting to drain stop the node"
stop-NlbClusterNode -HostName $RemoteHostName -Credential $Credential -Drain
}
開始スリープ -s 30