What options are there to deploy a web application to a heavily locked down machine without WinRM?
The situation is as followed.
- Code is in Azure DevOps cloud
- Release server is in a semi-secured area with access to download artifacts from DevOps
- Target server is in a very locked down zone.
If release server can only copy files to a specific temporary folder target machine, is there a way to do deployment to it without WinRM?
My initial thought is to have a script on the Target machine to watch for the artifact showing up and deploy it. I want to know if there's a better way or if that's my best option?