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
  • 11:43 (UTC -07:00)
View GitHub Profile
@Krovikan-Vamp
Krovikan-Vamp / graph_client.go
Created August 23, 2024 20:13
My First Go Package
package msgraph
import (
"bytes"
"context"
"encoding/json"
"fmt"
"io"
"net/http"
"os"
@Krovikan-Vamp
Krovikan-Vamp / overseer_patch_notes.md
Last active August 8, 2024 19:29
KTP Overseer Docs

Application Update - v0.1.14

Date: 08-08-2024

New Features

  • Ticketing analytics: The application can now get analytical data from Freshdesk. This is provided via GPTicketSolver class and 15min updates for this info.
  • Conditional Access Audit Logs: Easily troubleshoot and review your reportOnly and active conditional access policies by navigating to the "Conditional Access Policies" section while viewing a tenant in GateKeeper.

Improvements

@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"
}
}