We have a SSIS Package that unzips files using Execute Process Task.
The property "Window Style is Hidden". It works perfectly fine in BIDS.
Now we have created a SQL Server Agent Job to execute this package in Production environment using a production account as 'Run As' proxy.
Now, if I remote login to the server with the proxy account and start the job with the same proxy, the job executes without any trouble. It neatly unzips the file.
But when I remote login with my credentials, the job starts executing but never stops. It just gets Halted/Hangs at the Unzip task and doesn’t move forward.
Assuming there is some winzip popup that is blocking the job, we logged in to the server with that account and turned off the 'Tips of the day' in winzip and checked if there is any first time license window getting opened. It didnt help. My credentials has the complete access to the folders where the files are present, etc.
Now the interesting part is that, the job executes successfully from my credential when the proxy account is also remote logged in parallel. (Means, I have remote logged in at the same time when proxy account is also remote logged in. Then the job executes successfully and unzips the file from my remote login connection).
Has anybody faced a similar issue and were you able to rectify?