0

I want to Prevent perform the installation if it exceeds a certain date, how can i do that?

any ideas are greatly appreciated. thanks!

(Note: Using Wise Installation Studio version 7)

1 Answers1

0

It's difficult to do this effectively in MSI because it would be so easy to bypass it. You'd be better served by either building a self-extracting EXE that does the date time check or moving the business logic into the application proper so that it stops working after a certain date time.

Christopher Painter
  • 54,556
  • 6
  • 63
  • 100
  • I agree - it is too easy to simply change the date for the install, then reset it to the actual date. Having to set the date every time the app runs is more inconvenient. The only reliable solution is to connect to a server and get the date and see if it's too late. – PhilDW Dec 08 '14 at 20:24