What is the unique element which is used to identify desktop softwares?

46 views Asked by At

Just like there is an android app id for every android apps(com.microsoft.teams), what is the equivalent element for desktop software?

1

There are 1 answers

0
Brijesh Kumar Tripathi On

You can get unique App Guid using following code:

String AppGuid = ((GuidAttribute)Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(GuidAttribute), true)[0]).Value;