suffa
suffa

Reputation: 3796

Executing a script in windows and locking down a script

I have two brief question:

  1. Is there a way that I can click on my script and get the cmd prompt to start (I'm using Python cmd; a command line in dos)?
  2. Can I lock down my script so no one can look at it, or at least change anything?

Cheers!

Upvotes: 0

Views: 80

Answers (1)

orlp
orlp

Reputation: 117691

It seems you are shipping your code to third parties. If you don't want them to look at your code you can create a frozen binary. This creates a .exe that can't be just opened with notepad and edited.

Note that this isn't a very secure way, they can still extract the code out of it, if they are skilled.

Upvotes: 1

Related Questions