Files
Powershell-Tricks/AD-Trust-Relationship.md
2022-12-13 10:42:22 -05:00

14 lines
288 B
Markdown

# AD Trust Relationship Repair
From an elivated command prompt run:
```powershell
Test-ComputerSecureChannel
```
If everything is working correctly this should return: True
If it returns: False
Then run:
```powershell
Test-ComputerSecureChannel -Credential (Get-Credential) -Repair
```