Exe Protection Question

Sorry for a super basic question here since everyone here is very experienced. I have an exe program that I'm trying to license. I read into how to add licensing to Inno Setup and was able to get all that working well. However, how do I protect the actual file? For instance, once I install it on a different computer, I can easily email or share the exe with a different computer and it runs fine. How do I connect the exe with the lock?

Well, the way to protect the exe is to integrate the licensing directly into the app. We show how to do this for a variety of programming languages here: http://wyday.com/limelm/help/using-turboactivate/

But you can use any programming language. What programming language did you use to make the exe?

It's in C#. I actually had someone else write it for me, so I'm having a little trouble. I've gotten to the step where I'm working with the form. The two methods mentioned in the instructions involve having a trial version. How can I avoid the trial and just use the license to unlock and offer the full version?

Well, if you don't want to use UseTrial() and TrialDaysRemaining() then you don't have to. Is there something in particular that's tripping you up?