-
I tried one time for my self messing with the files of the Xbox Game Pass files. For that i needed to give myself premissions for the trustedinstaller, and it was a big mistake (for me). Does this App messing with this trustedinstaller? or how do it work? I dont want to messing around with this trustedinstaller. Thx for your work and time xD |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Hi @zuldero , this app does not mess with the trusted installer at all, it uses an oficial Windows API to load a list of IDs and names of the UWP apps and games installed on your computer, via the Get-AppxPackageManifest powershell function, contained in our GetAUMID Script, later, by calling the ApplicationActivationManager ActivateApplication C# function using the ID of the requested application, we can launch the application without even touching the permissions system in the computer. For many people, actually UWPHook was the first way add Windows store games to Steam that actually work, because it does not need to mess with security measures in the system. If this answer is enough, you may close the thread :D |
Beta Was this translation helpful? Give feedback.
-
thats pretty impressive thx for the fast reply and this greate work |
Beta Was this translation helpful? Give feedback.
Hi @zuldero , this app does not mess with the trusted installer at all, it uses an oficial Windows API to load a list of IDs and names of the UWP apps and games installed on your computer, via the Get-AppxPackageManifest powershell function, contained in our GetAUMID Script, later, by calling the ApplicationActivationManager ActivateApplication C# function using the ID of the requested application, we can launch the application without even touching the permissions system in the computer.
For many people, actually UWPHook was the first way add Windows store games to Steam that actually work, because it does not need to mess with security measures in the system.
If this answer is enough, y…