I have a script called CreateClass.ps1 and has 3 parameters -Name , -Grade and -Count . It’s automated script to run, so it runs as Administrator( local account), How can that script be run under the credential of the domain account for example SchDomain\Student with password Password123?
You’d either need to use Start-Process to start a new PowerShell.exe process using the alternate credential, or schedule the script using Task Scheduler to run under the alternate credential. Or, use RunAs.exe to launch the script using an alternate credential. But there’s no way to do it from within the same PowerShell session.
Thanks for the ideas and options, do you have any sample how to do it for the start-process with arguments and domain credential. I tried this but I have the problem with the parameters to include them. Thanks again.
Have you tried the $using:variable alternative for these variables?
This allows you to access variables outside of the scriptblock without the need to pass them in as arguments in the invoke-command.
It’s more cosmetic, but I’d also define the credential object before using it as a -Credential parameter value. Not a big fan of calculations in parameter blocks.
Ok, we only see part of the code. We would like to help you, but can you post the complete code of oucreate2.ps1 here? We can then maybe write code which achieves what you want.