Active Directory, Microsoft 365, and Exchange management and reporting
Hybrid AD, cloud, and file auditing; security; and compliance
Identity security with adaptive MFA, SSPR, and SSO
Reporting, auditing, and monitoring for hybrid Exchange and Skype
Active Directory, Microsoft 365, and Exchange backup and recovery
Hybrid AD, cloud, and file auditing; security; and compliance
SharePoint reporting and auditing
Microsoft 365 security
Cloud security monitoring and analytics
File auditing, data leak prevention, and data risk assessment
File security and storage analysis
Automated patching across multiple OSs and over 850+ third-party apps
Simplified third-party patch deployment via ConfigMgr and Intune
Seamless mobile device management from onboarding to retirement
Remote troubleshooting with integrated chat, voice, and video
Automated OS image creation and seamless role-based deployment
Prioritization-focused enterprise vulnerability management
App control and endpoint privilege management software
Data theft prevention with strict peripheral device control
Browser security with isolation, lockdown, and activity tracking
Sensitive data protection and compliance for endpoint devices
Real-time ransomware mitigation and file recovery for business continuity
Next-gen antivirus software for threat detection and breach prevention
Full-stack observability with AIOps and digital experience monitoring
AI-powered, all-in-one SaaS platform for observability and digital experience monitoring
Digital experience, application performance, and infrastructure monitoring
All-in-one vendor risk assessment tool to ensure domain security
Network, server, and storage performance monitoring
Bandwidth monitoring and traffic analysis
Network change and configuration management
Firewall rule, configuration, and log management
IP address and switch port management
Centralized IT alert management
Status pages for real-time status and incident communication
A cloud-native identity platform for workforce IAM
Full-stack service management for enterprises
IT asset management with an integrated CMDB
Unified endpoint management and security
Comprehensive mobile device management
Enterprise remote access
Automated multi-OS patch management
Full-stack monitoring for IT admins, DevOps, and SREs
Status pages for real-time status and incident communication
Cloud cost management for modern software teams
SaaS management platform to maximize ROI
Centralized IT alert management
Secure your IT infrastructure and prove compliance from the cloud
AI-powered unified analytics platform to correlate all IT data
An all-in-one DNS management service to keep your business online
Low-code application development platform
Remote support software
Collaborative project management
Agile project management
All-in-one collaboration tool for unified communication
Secure email hosting solution for businesses
All-in-one video conferencing solution for remote business meetings
All-in-one AR remote assistance software solution for remote collaboration.
Unified network monitoring and endpoint management for MSPs
Unified Active Directory management and reporting solution for MSPs
Unified SIEM solution for MSSPs
Log management and advanced threat intelligence for MSSPs
Complete privileged access security for enterprises
Privileged password management
Full-stack service management for MSPs
Applications Manager supports usage of Regular Expressions (Regex) while searching for data. A regular expression is a special sequence of characters defines a search pattern for strings.
Here is the table listing down all the regular expression metacharacter syntax available in Java:
Subexpression | Matches |
---|---|
^
|
Matches beginning of line. |
$
|
Matches end of line. |
.
|
Matches any single character except newline. Using m option allows it to match newline as well. |
[...]
|
Matches any single character in brackets. |
[^...]
|
Matches any single character not in brackets |
\A
|
Beginning of entire string |
\z
|
End of entire string |
\Z
|
End of entire string except allowable final line terminator. |
re*
|
Matches 0 or more occurrences of preceding expression. |
re+
|
Matches 1 or more of the previous thing |
re?
|
Matches 0 or 1 occurrence of preceding expression. |
re{ n}
|
Matches exactly n number of occurrences of preceding expression. |
re{ n,}
|
Matches n or more occurrences of preceding expression. |
re{ n, m}
|
Matches at least n and at most m occurrences of preceding expression. |
a| b
|
Matches either a or b. |
(re)
|
Groups regular expressions and remembers matched text. |
(?: re)
|
Groups regular expressions without remembering matched text. |
(?> re)
|
Matches independent pattern without backtracking. |
\w
|
Matches word characters. |
\W
|
Matches nonword characters. |
\s
|
Matches whitespace. Equivalent to [\t\n\r\f]. |
\S
|
Matches nonwhitespace. |
\d
|
Matches digits. Equivalent to [0-9]. |
\D
|
Matches nondigits. |
\A
|
Matches beginning of string. |
\Z
|
Matches end of string. If a newline exists, it matches just before newline. |
\z
|
Matches end of string. |
\G
|
Matches point where last match finished. |
\n
|
Back-reference to capture group number "n" |
\b
|
Matches word boundaries when outside brackets. Matches backspace (0x08) when inside brackets. |
\B
|
Matches nonword boundaries. |
\n, \t, etc.
|
Matches newlines, carriage returns, tabs, etc. |
\Q
|
Escape (quote) all characters up to \E |
\E
|
Ends quoting begun with \Q |
See Also
Monitor Information - File / Directory Monitor | Create Other New Monitors