- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-05-2023 08:02 AM
Hello everyone.
When using the Certificate Management module for Microsoft CA Servers to automate the request flow for new/renew certificates, there is an OOB flow action called Request/Renew Microsoft Certificate (requestrenew_microsoft_certificate) that is triggered by the routing policy, once a request is created. This action has a PowerShell step that specifies "CredSSP" authentication:
Invoke-Command -ComputerName $computer -credential $cred -Authentication CredSSP -ScriptBlock
In our environment, CredSSP is disabled due to security concerns, so the action above fails.
Did anyone face similar issue or managed to fix it? Thank you.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-19-2025 01:37 PM
Nope, but I managed to make it functional by editing the OOB script and changing like below:
Invoke-Command -ComputerName $computer -credential $cred -Authentication Negotiate -ScriptBlock
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-19-2025 10:18 AM
Did you receive an answer to this?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-19-2025 01:37 PM
Nope, but I managed to make it functional by editing the OOB script and changing like below:
Invoke-Command -ComputerName $computer -credential $cred -Authentication Negotiate -ScriptBlock