How can I make auto deletable my Main-GUI (*.exe) programm in specific date/time to prevent extra use?
2 次查看(过去 30 天)
显示 更早的评论
Hi I write the GUI code and make it as *.exe (stand alone application). But I want to delete main file (*.exe) in specific date/Time to prevent extra use. How can I do this?
0 个评论
采纳的回答
Doug Hull
2012-12-21
This is a bad idea. Do not do this. People will be able to undo it anyways.
That being said, just call out to the system to delete the files.
delete('file.ext')
2 个评论
Walter Roberson
2012-12-21
There are some cross-checks that can be done, such as examining the dates of other files to see if any of them are in the "future".
There are techniques such as contacting a remote site and asking it for the current time using an encrypted transmission. It is difficult to make this completely secure, though. (Quantum Encryption.)
If you are not able to use quantum secure channels, then there is no way to really prove what time it "really" is. At most you can make it a nuisance for people to break the software.
If your program is sufficiently valuable, then people will find a way to break it. There are people who specialize in doing this just to prove that they can, that they are more clever than you. Therefore the best way to ensure that your program does not get broken is to make your software so useless than no-one would want to use it.
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!