Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Windows phone: how get current application id

Is there any way to get ID of my application in app store without hardcode? I need to use this value it self, so this way http://forums.create.msdn.com/forums/p/88847/533072.aspx will not help.

like image 215
xander27 Avatar asked May 18 '12 05:05

xander27


People also ask

How do I find my Windows application ID?

Open Run, enter shell:Appsfolder, and select OK. A File Explorer window opens. Press Alt > View > Choose details. In the Choose Details window, select AppUserModelId, and then select OK.

What's an application ID?

Application ID means an application identifier used to tag specific routing applications within the Customer'sRouting Plan.

How do I find the PowerShell application ID?

Launch PowerShell as the admin. To view information about an app that you know by name or partially by name, use Get-AppxPackage *<app_name> . You can also use wildcard characters if you do not know the entire name of the app.

How do I find my Clsid application?

The Class ID, or CLSID, is a serial number that represents a unique ID for any application component in Windows. In practice, this means all registry entries for an application component can usually be found under the registry key HKEY_CLASSES_ROOT\CLSID\{CLSID value}.


1 Answers

try this : var appId = Windows.ApplicationModel.Store.CurrentApp.AppId; it's documentation here

like image 150
Mohamed Osama Ahmed Avatar answered Oct 10 '22 19:10

Mohamed Osama Ahmed