I have a PowerShell script that runs perfectly on each of my servers when executed locally. Now, I'm looking to run this same script from a jump server to six different target servers. What steps do I need to take to do this successfully?
1 Answer
If you're using PowerShell Remoting, make sure to set up Delegation correctly. You should look into the Kerberos double-hop issue, which has a lot of information that will guide you based on your security settings and environment requirements. It can be a bit tricky depending on what policies you have in place.
Yes, it's a production environment, so I'm hesitating about making changes directly on the production servers.