Jump to content

Recommended Posts

  • Premium

It's easy to bind application to hardware.

#define _WIN32_WINNT 0x0400

#include <windows.h>
#include <stdio.h>

int main()
{
	HW_PROFILE_INFO hwProfileInfo;

	if(GetCurrentHwProfile(&hwProfileInfo) != NULL){
		printf("Hardware GUID: %sn",	 hwProfileInfo.szHwProfileGuid);
		printf("Hardware Profile: %sn", hwProfileInfo.szHwProfileName);
	}else{
		return 0;
	}

	getchar();
}

source:

http://skilinium.com/blog/?p=323

anyway, i have program which check your hardware id, connect to server on my ip, check version & licence and send information to client (everything via encrypted packet)

This is good way to check license i think.

Link to comment
Share on other sites

It's easy to bind application to hardware.

 

#define _WIN32_WINNT 0x0400

#include <windows.h>
#include <stdio.h>

int main()
{
	HW_PROFILE_INFO hwProfileInfo;

	if(GetCurrentHwProfile(&hwProfileInfo) != NULL){
		printf("Hardware GUID: %sn",	 hwProfileInfo.szHwProfileGuid);
		printf("Hardware Profile: %sn", hwProfileInfo.szHwProfileName);
	}else{
		return 0;
	}

	getchar();
}
source:

http://skilinium.com/blog/?p=323

anyway, i have program which check your hardware id, connect to server on my ip, check version & licence and send information to client (everything via encrypted packet)

This is good way to check license i think.

 

No Windows. FreeBSD 

Link to comment
Share on other sites

  • Premium

It's easy to bind application to hardware.

 

#define _WIN32_WINNT 0x0400

#include <windows.h>
#include <stdio.h>

int main()
{
	HW_PROFILE_INFO hwProfileInfo;

	if(GetCurrentHwProfile(&hwProfileInfo) != NULL){
		printf("Hardware GUID: %sn",	 hwProfileInfo.szHwProfileGuid);
		printf("Hardware Profile: %sn", hwProfileInfo.szHwProfileName);
	}else{
		return 0;
	}

	getchar();
}
source:

http://skilinium.com/blog/?p=323

anyway, i have program which check your hardware id, connect to server on my ip, check version & licence and send information to client (everything via encrypted packet)

This is good way to check license i think.

 

 

Never use GUID! It's not unique and every Windows 8+ computer have the same id.

  • Love 2
Link to comment
Share on other sites





It's easy to bind application to hardware.
#define _WIN32_WINNT 0x0400 #include <windows.h> #include <stdio.h> int main() { HW_PROFILE_INFO hwProfileInfo; if(GetCurrentHwProfile(&hwProfileInfo) != NULL){ printf("Hardware GUID: %sn", hwProfileInfo.szHwProfileGuid); printf("Hardware Profile: %sn", hwProfileInfo.szHwProfileName); }else{ return 0; } getchar(); }
source:
http://skilinium.com/blog/?p=323


anyway, i have program which check your hardware id, connect to server on my ip, check version & licence and send information to client (everything via encrypted packet)

This is good way to check license i think.


Never use GUID! It's not unique and every Windows 8+ computer have the same id.

It does not see my job. Because I use the Windows operating system.


+++
Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

Announcements



  • Similar Content

  • Activity

    1. 3

      Crystal Metinstone

    2. 3

      Feeding game source to LLM

    3. 113

      Ulthar SF V2 (TMP4 Base)

    4. 3

      Feeding game source to LLM

    5. 0

      Target Information System

    6. 3

      Feeding game source to LLM

    7. 2

      anti exp explanation pls

  • Recently Browsing

    • No registered users viewing this page.
×
×
  • Create New...

Important Information

Terms of Use / Privacy Policy / Guidelines / We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.