Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removes forced priveledge mode #43

Merged
merged 1 commit into from
Sep 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,9 @@ This application wouldn't exist without the help of several amazing open source
**Does WinReform support multiple monitors?**
> The answer is yes.

**Why do some of my applications not show up?**
> By default, the application runs in non-privileged mode, which allows it to interact only with non-privileged windows. If you're trying to access a privileged window, you'll need to restart WinReform as an administrator.

## License
WinReform is provided as-is under the Apache License Version 2.0. For more information see [LICENSE](./LICENSE.md).

Expand Down
2 changes: 1 addition & 1 deletion src/WinReform/WinReform/app.manifest
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<security>
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
<!--<requestedExecutionLevel level="asInvoker" uiAccess="false" />-->
<requestedExecutionLevel level="requireAdministrator" uiAccess="false" />
<!--<requestedExecutionLevel level="requireAdministrator" uiAccess="false" />-->
<!--<requestedExecutionLevel level="highestAvailable" uiAccess="false" />-->
</requestedPrivileges>
</security>
Expand Down
Loading