This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 = @() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3' | |
services: | |
keycloak: | |
image: jboss/keycloak | |
container_name: keycloak | |
restart: always | |
#volumes: | |
# - ./themes/customTheme:/opt/jboss/keycloak/themes/customTheme (optional) | |
environment: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
param( | |
[string]$argServer = 'mybls-server.intranet.int:8085', | |
[string]$argUser = 'domain\username', | |
[string]$argPassword = 'DSMPassoword', | |
[string]$context = "emdb:\rootDSE\Managed Users & Computers\*" | |
) | |
#============================================== | |
# IDENTIFY ALL DSM COMPUTERS | |
#============================================== |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Get-WindowsCapability -Online | ? {$_.Name -like "*RSAT*" -and $_.State -eq "NotPresent"} | Add-WindowsCapability -Online | |
# Oder: | |
#DISM /Online /Add-Capability /CapabilityName:Rsat.ActiveDirectory.DS-LDS.Tools~~~~0.0.1.0 | |
#Install-Module ImportExcel | |
class HostInfo { | |
[string]$Hostname | |
[string]$LastSync | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
param | |
( | |
[string]$argServer = 'localhost:8090', | |
#localhost:8090 | |
[string]$argUser = 'domain\user', | |
#domain\username | |
[string]$argPassword = 'password', | |
#Password123 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# ---------------------------------------------------------- | |
# Author: Griep Marco, www.marcogriep.de | |
# License: | |
# You can edit, distribute or sell this snippet if you want, | |
# but please contribute to my webpage www.marcogriep.com | |
# | |
# If you use this Script commercially, please send a dollar | |
# to "griepmarco@gmail.com" via paypal. (Pay-What-You-Want) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ===================================================== | |
# Author: Griep Marco | |
# Last Change: 2018-02-16 | |
# | |
# Release Notes: Initial Commit | |
# Contributors: - | |
# ===================================================== | |
import-module psx7 -DisableNameChecking |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Install-Module ImportExcel | |
#Connection Options | |
param | |
( | |
[string]$argServer = 'meinbls.intranet.int:8090', | |
#localhost:8090 | |
[string]$argUser = 'domain\username', | |
#domain\username |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Install-Module ImportExcel | |
#Connection Options | |
param | |
( | |
[string]$argServer = '', | |
#localhost:8090 | |
[string]$argUser = '', | |
#domain\username |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Connection Options | |
param | |
( | |
[string]$argServer = '', #localhost:8090 | |
[string]$argUser = '', #domain\username | |
[string]$argPassword = '', #Password123 | |
[string]$loggedInUser = '', #Optional for Logging | |
[string]$context = "emdb:\rootDSE\Managed Users & Computers\2\. Computers\*" | |
) |
NewerOlder