-
Notifications
You must be signed in to change notification settings - Fork 174
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
AppControl Manager v.1.8.9.0 #588
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Logs page no longer has a size limit for log files. MSIXBundle will be used instead of MSIX file for new app installations which brings ARM64 platform support as well.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Copilot reviewed 5 out of 8 changed files in this pull request and generated 1 comment.
Files not reviewed (3)
- AppControl Manager/AppControl Manager.csproj: Language not supported
- AppControl Manager/Pages/Logs.xaml: Language not supported
- AppControl Manager/Pages/UpdatePageCustomMSIXPath.xaml: Language not supported
Comments suppressed due to low confidence (1)
AppControl Manager/Pages/Update.xaml.cs:248
- The regex pattern for extracting version and architecture was removed, but these values might still be needed. Ensure that the version and architecture are not required later in the code.
// Get the version and architecture of the installing MSIX package app
You can now swap unsigned non-system base policies in the system information page. Cleaned up XAML by utilizing the XAML resources file to reduce repeated code. Made FilePath rule types only for user-mode files.
Unified XAML styles in pages and gird resources Improved code comments Added MDE Advanced Hunting queries examples to the UI
Added info about the new features
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
What's New
The AppControl Manager can now be natively installed on non-X64 platforms such as ARM64. It no longer uses MSIX files, it uses MSIXBundle files which include the MSIX files for multiple platforms, making the installation simpler and more straightforward.
The Logs page no longer has a file size limit. It will display log files of any size in an optimized and high-performance way.
The Logs folder would previous be automatically cleaned up when it reached 100MB. The new limit is now set to 1GB.
Removed the color pickers from the Logs page which resulted in the removal of an extra dependency package from the application. They were used to control the logs text color and highlight color which are no longer needed. Now, the text color is defined by your OS theme which makes it more accessible and readable, and the highlight color is defined by your OS accent color.
Significantly improved the search experience in the Logs page.
FilePath or Wildcard FilePath rules are no longer created for kernel-mode files because only user-mode files can be allowed/denied via File Path. Using FilePath rules for kernel-mode files simply has no effect.
✨You can now effortlessly swap any deployed policy in the System Information page. For example, if you have the "Allow Microsoft" policy deployed and you want to change it instantly to "Default Windows", you can select "Default Windows" from the dropdown menu and confirm the action. All of the supplemental policies associated with that base policy will continue to work. At the moment this feature only works for unsigned policies and will cover signed policies in a future version.
In the MDE Advanced Hunting page, added a new section where you can view query examples that generate standard logs compatible with the AppControl Manager, as suggested here.