Key Authorization for Batch Program
Moderator: DosItHelp
Key Authorization for Batch Program
Is it possible to enter an authentication key associated with the customer's HWID? So that the program cannot be used on other users on other PCs?
-
- Expert
- Posts: 1166
- Joined: 06 Sep 2013 21:28
- Location: Virginia, United States
Re: Key Authorization for Batch Program
Batch is an interpreted language, so any obfuscation has to eventually get undone so that the command prompt can actually run the code. Making the code read-only won't help either, since people can just copy and paste the code into another instance of Notepad.
That said, you can certainly get the output of wmic csproduct get uuid and check it against any allowed values.
That said, you can certainly get the output of wmic csproduct get uuid and check it against any allowed values.