Restart system after Rollback
-
Hi, In my case, i need to prompt user to restart system after rollback in dot net web setup project. I am able to prompt user to restart system after install and uninstall, but no clue how to do it after rollback. Please help me in this.
Pradeep Reddy
-
Hi, In my case, i need to prompt user to restart system after rollback in dot net web setup project. I am able to prompt user to restart system after install and uninstall, but no clue how to do it after rollback. Please help me in this.
Pradeep Reddy
Make a master setup which will call your setup so that you can handle this easily. :) :)
Abhishek Sur
My Latest Articles **Create CLR objects in SQL Server 2005 C# Uncommon Keywords Read/Write Excel using OleDB
**Don't forget to click "Good Answer" if you like to.
-
Make a master setup which will call your setup so that you can handle this easily. :) :)
Abhishek Sur
My Latest Articles **Create CLR objects in SQL Server 2005 C# Uncommon Keywords Read/Write Excel using OleDB
**Don't forget to click "Good Answer" if you like to.
Abhishek Sur wrote:
Make a master setup which will call your setup so that you can handle this easily.
We have the hurlde at the first place itself. You can not run more than two MSIs together. So, no point of calling one setup from another.
Manas Bhardwaj Please remember to rate helpful or unhelpful answers, it lets us and people reading the forums know if our answers are any good.
-
Abhishek Sur wrote:
Make a master setup which will call your setup so that you can handle this easily.
We have the hurlde at the first place itself. You can not run more than two MSIs together. So, no point of calling one setup from another.
Manas Bhardwaj Please remember to rate helpful or unhelpful answers, it lets us and people reading the forums know if our answers are any good.
Have I ever mentioned calling MSI from another.. :laugh: MSI and Setups are quite different.. Setups are invoked using Windows Installer. The Best example is if you look into Any .NET installer. The Setup invokes at least 100 of msi within it. :) :)
Abhishek Sur
My Latest Articles **Create CLR objects in SQL Server 2005 C# Uncommon Keywords Read/Write Excel using OleDB
**Don't forget to click "Good Answer" if you like to.
-
Abhishek Sur wrote:
Make a master setup which will call your setup so that you can handle this easily.
We have the hurlde at the first place itself. You can not run more than two MSIs together. So, no point of calling one setup from another.
Manas Bhardwaj Please remember to rate helpful or unhelpful answers, it lets us and people reading the forums know if our answers are any good.
Manas Bhardwaj wrote:
You can not run more than two MSIs together
Also, I think I can run as many MSI's as I want from the single setup as well. Each Msi will run in its own MsiExec process. :) I have already tried it out and it worked. Only thing is to run in a new process from master setup. :rose::rose:
Abhishek Sur
My Latest Articles **Create CLR objects in SQL Server 2005 C# Uncommon Keywords Read/Write Excel using OleDB
**Don't forget to click "Good Answer" if you like to.