newtofoxpro
Programmer
I am developing and distributing my application developed in fpw26 from last 10 years. For copy protection I am using BIOSDATE. For some reason, I am going to migrate my application in VFP8. I used SEARCH tool to find out similar post. And I found like CPU-ID, HDD-Serial No., Mac-Address etc., It's good information works similar to BIOSDATE.
Please don't advise " Copying is the best way of 'advertising' the app you want to sell. "
I have distributed my application where I can't go, its far away from my city. BIOSDATE works fine for me. Yet, I know my user mis-using my application. How ?
For the first time I installed myapp to user-pc and locked by BIOSDATE. After couple of months user ring/phone me, "MY PC CRASH-BURN-OUT OR I UPGRADE WITH NEW PC AND I SAVED ONLY MYAPP.DBF, I HAVE PURCHASED NEW PC. SO PLEASE SEND ANOTHER COPY" I have to trust him, and send another copy.
One solution I found is USB-PEN-DRIVE.
oWMi = getobject("winmgmts://")
col = oWMI.ExecQuery("Select * from win32_diskdrive")
OutString=""
for each disk in col
OutString=disk.PNPDeviceID
IF OutString="USB"
EXIT
ENDIF
NEXT
RETURN OutString
I am not sure, how it is safe. Please advise, is it safe ? As well as I wish to know how expert members distribute their application ?
Please don't advise " Copying is the best way of 'advertising' the app you want to sell. "
I have distributed my application where I can't go, its far away from my city. BIOSDATE works fine for me. Yet, I know my user mis-using my application. How ?
For the first time I installed myapp to user-pc and locked by BIOSDATE. After couple of months user ring/phone me, "MY PC CRASH-BURN-OUT OR I UPGRADE WITH NEW PC AND I SAVED ONLY MYAPP.DBF, I HAVE PURCHASED NEW PC. SO PLEASE SEND ANOTHER COPY" I have to trust him, and send another copy.
One solution I found is USB-PEN-DRIVE.
oWMi = getobject("winmgmts://")
col = oWMI.ExecQuery("Select * from win32_diskdrive")
OutString=""
for each disk in col
OutString=disk.PNPDeviceID
IF OutString="USB"
EXIT
ENDIF
NEXT
RETURN OutString
I am not sure, how it is safe. Please advise, is it safe ? As well as I wish to know how expert members distribute their application ?