ankee
ankee

Reputation: 21

Setup.exe is rolling back (Built for Asp.net Application In Install Shield12)

I build Setup.exe file in Install Shield 12 for Web Project of .Net Framework. When i m going to run this setup.exe file , i got rolling back error while execute Virtual Directory and setup had not been completed. How could i resolve this Rolling Back error due to Virtual Directory ? With which application of install shield this issues is connected ?

Upvotes: 0

Views: 1380

Answers (1)

Lynn Crumbling
Lynn Crumbling

Reputation: 13367

You need to find out what the actual error is that is causing the rollback to occur. To do this, you'll want the installer to create a log for you.

You can do this by running the exe like this:

setup /V"/L*v c:\everything.log"

Then, look through the log file and find out where it decides to rollback (searching for "rollback", then looking just above that should get you close.)

Upvotes: 3

Related Questions