0

I have completed my installation packages of my exe file , I am using SharpDevelop for it.

My issue is : how could I remove "End-User Agreement Window" from appearing to the user.

by using some scripts on SharpDevelop Project or by any other possible way.

1 Answers1

0

SharpDevelop allows you to create installers using WiX, so I am assuming that is what you are creating. If you take a look at the WiX documentation there is a section on customising the dialog sequence and shows you how to skip one of the dialogs. I have duplicated the information below from the WiX website, this assumes you are using the InstallerDir UI.

  1. Copy the element defined in WixUI_InstallerDir.wxs which is available from GitHub
  2. Remove the elements that are used to add Back and Next events for the LicenseAgreementDlg.
  3. Change the element that is used to add a Next event to the WelcomeDlg to go to the InstallDirDlg instead of the LicenseAgreementDlg.
Matt Ward
  • 47,057
  • 5
  • 93
  • 94