Umzug ins neue Repo und damit verbundene Anpassungen
This commit is contained in:
parent
e8289a2915
commit
66a66d7fd7
2
LICENSE
2
LICENSE
@ -7,3 +7,5 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|||||||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
||||||
|
|
||||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||||
|
|
||||||
|
Patrick Asmus | www.media-techport.de
|
@ -1,2 +1,8 @@
|
|||||||
# rdp-mailbenachrichtigung
|
**1. Skript: rdp-access-mail-notification.v3.ad.ps1**
|
||||||
|
|
||||||
|
- **Beschreibung:** Dieses Skript sendet eine E-Mail-Benachrichtigung an alle Mitglieder einer Gruppenrichtlinie, wenn sich jemand per Remote Desktop Protocol (RDP) auf einem Windows-System anmeldet. Es extrahiert Informationen aus dem Ereignisprotokoll und informiert die Benutzer über die Anmeldung, einschließlich Datum, Uhrzeit, Domäne, Benutzer und IP-Adresse des Clients.
|
||||||
|
|
||||||
|
|
||||||
|
**2. Skript: rdp-access-mail-notification.v3.local.ps1**
|
||||||
|
|
||||||
|
- **Beschreibung:** Dieses Skript sendet eine E-Mail-Benachrichtigung, wenn sich jemand per Remote Desktop Protocol (RDP) auf einem Windows-System anmeldet. Es verwendet Informationen aus dem Ereignisprotokoll, um die Benutzer über die Anmeldung zu informieren, einschließlich Datum, Uhrzeit, Domäne, Benutzer und IP-Adresse des Clients. Die Benachrichtigung geht an eine vordefinierte Empfängeradresse.
|
@ -1,4 +1,4 @@
|
|||||||
# Script Name: rdp-access-mail-notification.v3.ps1
|
# Script Name: rdp-access-mail-notification.v3.ad.ps1
|
||||||
# Beschreibung: Schickt allen Mitgliedern einer GG eine Mail, wenn sich jemand per RDP auf einem System anmeldet
|
# Beschreibung: Schickt allen Mitgliedern einer GG eine Mail, wenn sich jemand per RDP auf einem System anmeldet
|
||||||
# Aufruf: -
|
# Aufruf: -
|
||||||
# Autor: Patrick Asmus
|
# Autor: Patrick Asmus
|
||||||
@ -6,7 +6,7 @@
|
|||||||
# Git-Reposit.: https://git.media-techport.de/scriptos/private-script-collection.git
|
# Git-Reposit.: https://git.media-techport.de/scriptos/private-script-collection.git
|
||||||
# Version: 3.1
|
# Version: 3.1
|
||||||
# Datum: 22.10.2023
|
# Datum: 22.10.2023
|
||||||
# Modifikation: Header hinzugefuegt
|
# Modifikation: Umzug ins neue Repo und damit verbundene Anpassungen
|
||||||
#####################################################
|
#####################################################
|
||||||
|
|
||||||
# Konfigurationsparameter
|
# Konfigurationsparameter
|
||||||
@ -14,7 +14,7 @@ $SMTPServer = "smtp.media-techport.int"
|
|||||||
$FromName = "Media-Techport.DE | Notification Service"
|
$FromName = "Media-Techport.DE | Notification Service"
|
||||||
$FromEmail = "noreply@media-techport.de"
|
$FromEmail = "noreply@media-techport.de"
|
||||||
$SecurityGroupDN = "CN=GG-MailAT_RDP-Access,OU=Benachrichtigungsgruppen,OU=Benutzergruppen,DC=media-techport,DC=int"
|
$SecurityGroupDN = "CN=GG-MailAT_RDP-Access,OU=Benachrichtigungsgruppen,OU=Benutzergruppen,DC=media-techport,DC=int"
|
||||||
$LogoURL = "https://assets.media-techport.de/logos/main/LogoSchwarz.png" # URL zum Logo
|
$LogoURL = "https://assets.media-techport.de/logos/main/LogoSchwarz.png"
|
||||||
|
|
||||||
# Funktion zum Senden von E-Mails
|
# Funktion zum Senden von E-Mails
|
||||||
function Send-Email {
|
function Send-Email {
|
||||||
|
@ -1,9 +1,20 @@
|
|||||||
# Konfigurationsparameter
|
# Script Name: rdp-access-mail-notification.v3.local.ps1
|
||||||
|
# Beschreibung: Versendet eine Mail, wenn sich jemand per RDP auf einem System anmeldet
|
||||||
|
# Aufruf: -
|
||||||
|
# Autor: Patrick Asmus
|
||||||
|
# Web: https://www.media-techport.de
|
||||||
|
# Git-Reposit.: https://git.media-techport.de/scriptos/private-script-collection.git
|
||||||
|
# Version: 3.1
|
||||||
|
# Datum: 22.10.2023
|
||||||
|
# Modifikation: Umzug ins neue Repo und damit verbundene Anpassungen
|
||||||
|
#####################################################
|
||||||
|
|
||||||
|
# Konfigurationsparameter
|
||||||
$SMTPServer = "smtp.media-techport.int"
|
$SMTPServer = "smtp.media-techport.int"
|
||||||
$FromName = "Media-Techport.DE | Notification Service"
|
$FromName = "Media-Techport.DE | Notification Service"
|
||||||
$FromEmail = "noreply@media-techport.de"
|
$FromEmail = "noreply@media-techport.de"
|
||||||
$LogoURL = "https://assets.media-techport.de/logos/main/LogoSchwarz.png" # URL zum Logo
|
$LogoURL = "https://assets.media-techport.de/logos/main/LogoSchwarz.png"
|
||||||
$ManualRecipient = "system@media-techport.de" # Manuell festgelegter E-Mail-Empfänger
|
$ManualRecipient = "system@media-techport.de"
|
||||||
|
|
||||||
# Funktion zum Senden von E-Mails
|
# Funktion zum Senden von E-Mails
|
||||||
function Send-Email {
|
function Send-Email {
|
||||||
|
Loading…
Reference in New Issue
Block a user