来自 C# 的 USB 笔式驱动器标识符
我有一个通过 USB 驱动器运行的演示,我想防止有人复制该演示的简单情况。 我想我可以获取有关 USB 驱动器的具体信息,例如制造商、尺寸、固件版本和/或标识符。 由于我们将演示放在一起并将其发送出去,因此它可以与驱动器的特定供应商联系起来。 我可能会使用 c# 来完成此操作。
I have a demo that runs off of a USB drive and I would like to prevent the simple case where some one copies the demo. I was thinking that I could just get something specific about the USB drive like manufacture,size, firmware version and or identifier. Since we are putting the demo together and sending it out it could be tied to a specific vendor for the drive. I will probably be doing this using c#.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用它,您可以获得 USB 记忆棒的序列号,并可以在应用程序中对其进行编码:如何在 C# 中获取 USB 棒的序列号
但无论你做什么,有人都可以使用 Reflector 或其他程序并从你的程序中拿走该检查。
Using this you can get the serialnumber for the USB-stick and can code that in the application: How to get serial number of USB-Stick in C#
But whatever you do, someone can use reflector or some other program and take away that check from your program.