Jump to content
Sign in to follow this  
Andrew McIsaac

runFullTrust

Recommended Posts

Good evening everyone,

 

Hope this is the correct forum. 

I am usiing C++ Builder Studio 11

Windows 10 

FMX 

Target Windows Store 64 Bit 

 

Able to create all the way to the msix file.

 

I'm trying to list my program - but Manifest File has issue

 

<Capabilities>
<rescap:Capability Name="runFullTrust"/>
</Capabilities>
 
Is ther not a way I can select criteria user needs to be able to select directories / save a sql-lite on their computer ?
How do I change the manifest file ?
 
Thank you,
Andrew
 

Share this post


Link to post
Posted (edited)

I'm not too deep in these topics, but as far as I know, the runFullTrust capability seems to be required:
https://learn.microsoft.com/en-us/windows/uwp/packaging/app-capability-declarations#restricted-capabilities, at least for certain permissions or operations:

Quote

There are several kinds of capabilities.

Quote

But there are some scenarios where a Medium IL app should declare a capability, too. In fact, a Medium IL app needs to declare the runFullTrust restricted capability. And, to be able to register out-of-process COM servers for inter-process communication (IPC), a packaged app needs runFullTrust. That feature is known as Packaged COM (for more info, see the blog post COM Server and OLE Document support for the Desktop Bridge).

 

Edited by Rollo62

Share this post


Link to post

Here something on this them:

https://stackoverflow.com/questions/77764786/remove-runfulltrust-capability-from-flutter-windows-application

 

And Win32 apps packaged as msix will need runFullTrust. You can avoid runFullTrust with UWP but a Delphi app will call all sort of Win32 API that will need runFullTrust.

Quote

Apps using the FullTrust entrypoint can call any API they want. Usually this is your main Win32/.Net executable. I’ll refer to these applications as FullTrust apps.

https://blogs.windows.com/windowsdeveloper/2017/07/06/calling-winrt-components-win32-process-via-desktop-bridge/

Share this post


Link to post

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this  

×