Skip to content

Instantly share code, notes, and snippets.

@LaurCzT
LaurCzT / password_expire_reminder.ps1
Created March 30, 2024 10:29
PowerShell script to send reminder of password expire to all user in Active Directory
# Function to send email notification
function Send-Email {
param (
[string]$recipient,
[string]$subject,
[string]$message
)
# SMTP Configuration
$smtpServer = "your_smtp_server"