Skip to content

Instantly share code, notes, and snippets.

View Krovikan-Vamp's full-sized avatar
📝
Working hard

Zackery Hatch Krovikan-Vamp

📝
Working hard
  • Kobargo Technology Partners
  • Surprise, Arizona
  • 08:08 (UTC -07:00)
View GitHub Profile
@Krovikan-Vamp
Krovikan-Vamp / user_ad_attribute_updater.ps1
Last active June 5, 2024 15:47
AD User attribute updater script.
Function Write-Message([String]$Message) { Add-Content -Path YOUR_LOG_FILE.log $Message }
Function UserUpdate($reset_logs, $max_users_count, $csvFileName) {
# Delete log files if they exist
if ($reset_logs -eq $true) {
if (Test-Path "*.log") {
Remove-Item "*.log"
}
}