How to check whether files have deployed in a particular server without having any access to it? | AzureDevOps

Sometimes we DevOps folks might be facing an tricky situation where we may not have access to the QA or PRODUCTION server to check whether the required files has been deployed as nowdays the server access are only restricted to the Infra team

But there might be a pressing need for us to see whether the files has been copied to the deployment server in that case we may use an powershell task and login into the machine using Username and password given as group variables and see whether the files have been actually deployed

Solution: Create a PowerShell Task and login into the target server. Go to the specific directory to check whether the required files have been deployed.

By this way we can ensure that all the files have been deployed and also can see in the Azure DevOps Tasks

You may also like...