Windows Powershellによるドメインコントローラとのセキュアな通信ができなくなった場合の確認と・修復方法(ドメインコンピュータにログイン出来なくなった場合)する方法を紹介
ドメインコントローラとのセキュアな通信ができなくなった場合の確認と・修復方法(ドメインコンピュータにログイン出来なくなった場合)
サンプルソース
ドメインコントローラとのセキュアな通信ができなくなった場合のセキュアチャネルの破損確認(trueであれば問題なし)
(入力)
test-computersecurechannel
(出力)
true
サンプルソース
ドメインコントローラとのセキュアな通信ができなくなった場合のセキュアチャネルの修復方法
(入力)
$User = "domain\user01"
$PWord = ConvertTo-SecureString -String "password01" -AsPlainText -Force
$Credential = New-Object -TypeName System.Management.Automation.PSCredential -ArgumentList $User, $PWord
test-computersecurechannel -Credential $Credential -Repair
(出力)
true