https://github.com/latzox/lsemgmt365
A PowerShell module to manage and monitor Microsoft 365 environments, including user activity, license usage, security compliance, and mailbox monitoring.
https://github.com/latzox/lsemgmt365
automation cloud-management microsoft-365 powershell
Last synced: 7 months ago
JSON representation
A PowerShell module to manage and monitor Microsoft 365 environments, including user activity, license usage, security compliance, and mailbox monitoring.
- Host: GitHub
- URL: https://github.com/latzox/lsemgmt365
- Owner: Latzox
- License: mit
- Created: 2024-09-17T09:10:39.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-09-17T09:17:28.000Z (about 1 year ago)
- Last Synced: 2024-09-25T00:10:30.608Z (about 1 year ago)
- Topics: automation, cloud-management, microsoft-365, powershell
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# LSEMgmt365
**LSEMgmt365** is a PowerShell module for managing and monitoring Microsoft 365 environments, including tasks like user activity tracking, license usage, group management, and mailbox usage monitoring.
## Features
- `Connect-CloudServices`: Establish a connection to Microsoft 365 services.
- `Get-M365UserActivity`: Retrieve activity logs for Microsoft 365 users.
- `Get-M365LicenseUsage`: Retrieve Microsoft 365 license usage.
- `New-M365Group`: Create a new Microsoft 365 group.
- `Get-M365SecurityComplianceStatus`: Retrieve security and compliance status of your Microsoft 365 environment.
- `Monitor-M365MailboxUsage`: Track mailbox usage in Microsoft 365.## Installation
To install this module from the PowerShell Gallery:
```PowerShell
Install-Module -Name LSEMgmt365 -Repository PSGallery
```## Usage
Here are some usage examples:#### Connect to Microsoft 365 services
```PowerShell
Connect-CloudServices -Service "M365"
```#### Get Microsoft 365 user activity logs
```PowerShell
Get-M365UserActivity -UserName "user@example.com" -Type "Email"
```#### Monitor Microsoft 365 license usage
```PowerShell
Get-M365LicenseUsage
```