When I start a InnoSetup installer from a WPF app, I can’t interact with the WPF window until the setup is finished. Is there any way to prevent this?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Did you try to wrap the process spawning code for the installer inside ThreadPool.QueueWorkUserItem?
UPDATE
Try to decorate your WPF Hosted WCF Service with
to stop servicing requests on the UIThread and thus make it possible to block on the process handle.