Skip to content

Instantly share code, notes, and snippets.

View MarcoGriep88's full-sized avatar
🤠
Getting Shit done

Marco Griep MarcoGriep88

🤠
Getting Shit done
View GitHub Profile
@MarcoGriep88
MarcoGriep88 / docker-compose.yml
Created January 9, 2023 10:53
Keycloak Docker-Compose
version: '3'
services:
keycloak:
image: jboss/keycloak
container_name: keycloak
restart: always
#volumes:
# - ./themes/customTheme:/opt/jboss/keycloak/themes/customTheme (optional)
environment:
@MarcoGriep88
MarcoGriep88 / Script.ps1
Last active April 21, 2023 05:53
Ascotel Contacts to Avaya System Diary
# For more information visit: https://www.marcogriep.de/posts/telefonbuch-von-ascotel-zu-avaya-telefonanlage-migrieren/
$InputFile = "Input.csv"
$OutputFile = "Export.csv"
class Entry {
[string]$Name
[string]$Number
[string]$SpeedDialCode
}
$entries = @()
@MarcoGriep88
MarcoGriep88 / script.ps1
Created February 20, 2025 07:47
Snipe IT Asset Report Script for Excel
[CmdletBinding()]
param (
[Parameter()]
[string]$URL = "http://localhost/api/v1/hardware",
[Parameter()]
[string]$APIKEY = ""
)
Import-Module ImportExcel