Per sapere come controllare l'ID del modello utente delle app installate su Windows 11, ecco una guida che ti sarà utile.
Un AppUserModelID, o semplicemente AppID o AppUserModelID, è un numero identificativo assegnato a ogni app installata indipendentemente dal nome visualizzato del programma, dalla sua directory di installazione o dal percorso. Questo articolo ti aiuterà a scoprire come trovarlo in Windows 11 e Windows 10. Windows sfrutta i dati AUMID o AppID per identificare le applicazioni con un nome per l'avvio, la telemetria o la commutazione. Avrai anche bisogno dell'AUMID delle applicazioni per impostare l'accesso assegnato e creare un dispositivo dedicato o chiosco. Quindi, chiunque voglia conoscere l'ID del modello utente dell'applicazione dei programmi installati, questa è la guida definitiva che dovresti provare; ottenere l'AppID dei programmi installati non richiederà alcuno strumento di terze parti.
Windows 11/10 eleva l'AppID di tutti i programmi installati tramite
Trova l'ID del modello utente dell'applicazione delle app installate in Windows 11
Finora abbiamo discusso quattro metodi integrati per trovare l'ID del modello utente dell'applicazione o AUMID o AppID delle app installate in Windows 11/10. Di seguito sono riportati quelli:
È possibile conoscere l'ID del modello utente dell'applicazione di tutte le app installate tramite Esplora file.
Ottieni l'ID del modello utente dell'applicazione di tutti i programmi installati tramite Windows PowerShell.
È possibile utilizzare l'Editor del Registro di sistema per trovare l'AUMID o l'AppID di un'applicazione.
Scopri gli identificatori univoci di tutte le app installate utilizzando il prompt dei comandi.
Ora diamo un'occhiata a questi metodi.
1. Utilizzare Esplora file per cercare l'ID del modello utente dell'applicazione di tutti i programmi installati.
Sarebbe più comodo per trovare gli ID del modello utente dell'applicazione dei programmi installati sul tuo computer Windows 11 o 10. Devi fare quanto segue:
Aprire la casella di comando Esegui con Win+R.
Nel campo di testo, scrivi shell:Appsfolder.
Digita "Invio" e premi "Go". Vedrai tutte le applicazioni e le app installate nella scheda della cartella Applicazioni in Esplora file.
Fare clic sull'opzione Ordina, quindi selezionare "Raggruppa per"AppUserModelID".
Tutte le applicazioni sono ordinate ed è possibile visualizzare gli AppID insieme al nome di ciascuna applicazione con le icone e i loghi.
Sarà possibile modificare la modalità Raggruppa per delle app installate in base a Nome, Nome visualizzato lungo o Nessuno dopo aver registrato o ottenuto l'ID del modello utente dell'applicazione di tutte le app.
You can also use File Explorer to find out about the AUMIDs of installed applications in another way.
Right-click on any open area in the Applications folder in File Explorer, then click Group by and then the More. option from the menu. Click on AppUserModelID under the Choose Details pop-up box that will appear, then OK.
You can get the section menu for Group by again by right-clicking an empty space. Now, you should be able to view the AppUserModelID option there. Click on it. Now, applications will be grouped using AppIDs. Once your goal is achieved, you can set the Group by mode back to None.
2. Get Application User Model IDs of all installed programs using Windows PowerShell.
Run the option on your Start menu for Windows PowerShell and retrieve all the installed Application User Model IDs. You can't find applications that are not showing in your Start menu.
Open Windows Terminal and create a new tab for the PowerShell profile. Alternatively, you could use the Search box or howsoever way you have preferred bringing about directly Windows PowerShell. Start the PowerShell and run:
Select "Get-StartApps" and then "Format-Table."
Using the Get-StartApps cmdlet will display all of the apps in the Start menu installed on your Windows 10 machine. You can format the output using the Format-Table cmdlet.
Alternatively, you may run the following script to get the output. From Windows PowerShell, copy the script below and execute it. Depending on your system you may need to hit Enter to get the output.
A list variable $installedapps = Get-AppxPackage is created, and the properties are assigned to variables, respectively: $app, $installedapps, and $id are collected through using the function Get-AppxPackageManifest on $app. "!"+$id+$app.packagefamilyname; Finally, $aumidList is added to a list of $aumid
You will not get the list of installed apps from the above script. The AUMIDs are generated only for the installed apps. Since the AUMID or AppID itself also carries the name of the respective app, to identify which AUMID belongs to which app is easy.
If you want to know when Windows PC apps and programs were installed, read here.
3. Discover AUMID or AppID with Registry Editor.
Although this path is quite long, using Registry Editor, you can determine the AUMID or AppID for each installed app for the current user. Here's how:
Open Registry Editor in Windows 11 or Windows 10.
In the Registry, go to the Classes key. Here's how:
Software classes registry key
Once you get to the Classes key, open it. You will see a very long list of sub-keys there. If you are looking for keys that are named something like this: AppX0t69n30jztar4a12pv0h1xh91e8jsacr, AppX0resaq7r5ermbh4b96ke39yqc1atfhjr, etc., then scroll down further. Those keys correspond to installed applications. Since program names are not part of the Registry keys, things get a bit more complicated based on this solution. So, you will have to check them one by one.
Extend each of these sub-keys individually. As you can observe, within each sub-key, there is one registry key known as Application refer to the above screenshot. Under the Application Registry Key, after clicking, it opens the data, showing AppID or AUMID and the name of the App, which is AppUserModelID.
The subsequent response has a less complicated way to apply the benefits of the approach discussed here. Let's check it out.
4. Use Command Prompt to retrieve installed AppIDs or AUMIDs of applications.
This option will look to the Windows Registry to find what the Application User Model ID is for each app the current user has installed. When an app's AppID or AppUserModelID is found to exist under the HKEY_CURRENT_USER root key in the Windows Registry, data of the said app should be retrieved. That requires a great deal of pain and intricacy to get such information directly from the Windows Registry. Still, with this option, you can simplify the process in front of you and get the job done in no time.
Open the Command Prompt and run the following command in order to get the AppIDs or AUMIDs of all apps installed on the current user's device:
REG_SZ search in HKCUSoftwareClasses using regex.
A collection of AppUserModelIDs at your fingertips.
Learn here in which folder your Microsoft Store apps are stored and how to get to that folder!
Some apps are associated with an application GUID. In Windows, where do I find this?
A GUID, or Globally Unique Identifier, is a 128-bit number that is typically presented in a format of 8 groups of 4 hexadecimal digits, then 3 groups of 12 hexadecimal digits, and so on. Such a number seems to be 7D29FB40-AV72-1067-D91D-00AA030663RA. Of course, it is much easier to start elevated Windows PowerShell and get the GUID of MSI packages installed on your computer by using the following command for getting the list of IdentifyingNumber, Name, and LocalPackage:
Get-WmiObject Win32_Product | Sort-Object -Property Name | Format-Table IdentifyingNumber, Name, LocalPackage -autosize
On a Windows computer, GUID can be found in the Windows Registry.
Which is the following command on windows to find an application's id?
Apri Task Manager su Windows 11/10. Fai clic sulla scheda Processi. Fai clic con il pulsante destro del mouse su una qualsiasi colonna come Nome, Stato, ecc. e seleziona l'opzione PID. Dopo aver eseguito questa operazione, vedrai i vari ID di processo di tutte le applicazioni e i processi in esecuzione del tuo sistema Windows in una nuova colonna che mostra il PID. Gli identificatori di processo dell'applicazione possono anche essere individuati tramite PowerShell, Registry Editor e lo strumento Resource Monitor.
Siamo abbastanza certi che questi passaggi ti aiuteranno a verificare in modo piuttosto semplice l'ID del modello utente delle applicazioni installate su Windows 11.
Scopri come utilizzare efficacemente Gemini Code Assist in Windows 11 per migliorare la tua esperienza di programmazione
Scopri come ricostruire il file Boot Configuration Data (BCD) in Windows 11 con la nostra guida dettagliata.
Correggi gli errori persistenti dell'unità in Windows 11 dopo ilriavvio. Scopri soluzioni efficaci per risolvere i problemi e riparareil tuo sistema per prestazioni ottimali.
Ti guiderò su come installare MSTY LLM su Windows 11
Oggi ti insegnerò come risolvere il problema per cui la funzione Ordina per data di modifica in Windows 11 non funziona
In questo documentario ti spiegherò come risolvere il problemaper cui Windows non può essere installato, la crittografia dell'unitàBitLocker è abilitata
Se non sai come risolvere il problema rilevato da Windows sul tuo dispositivo grafico, ecco una guida che ti aiuterà.
Qui trovi una guida completa per imparare come risolvere facilmente i guasti del PC durante l'installazione di Windows.
Oggi vi spiegherò come correggere l'errore durante la scrittura del nuovo contenuto del valore nel Registro in Windows 11
Ti insegnerò come risolvere ATTENZIONE: problemi noti con il driver grafico in Windows 11
Ti insegnerò come riparare una ventola Windows laptop che continua a funzionare costantemente