Hi @Mountain Pond , if I'm understanding your question correctly, you are trying to run an application as an on-premises Active Directory user on a machine that is not joined to the domain. In this case, you can use the "runas" command with the "/netonly" switch to run the application as a domain user.
The "/netonly" switch tells Windows to use the provided credentials for remote connections only. This means that the credentials will be used to authenticate to the domain controller, but not to the local machine.
Here's an example of how to use the "runas" command with the "/netonly" switch:
runas /netonly /user:domain\user cmd
This will open a command prompt window as the specified domain user. You can then run your application from within this command prompt window.
If you are still getting an "Invalid login or password" error, please double-check that you are using the correct domain name, username, and password. You can also try specifying the UPN (User Principal Name) of the domain user instead of the domain name and username, like this:
runas /netonly /user:******@domain.com cmd
Please let me know if you have any questions and I can help you further.
If this answer helps you please mark "Accept Answer" so other users can reference it.
Thank you,
James