Compare commits
5 Commits
c98477e70a
..
master
| Author | SHA1 | Date | |
|---|---|---|---|
| 1bdbb38eb6 | |||
| 9d98e83f6e | |||
| deddbc92ca | |||
| 6041b5c804 | |||
| 1a7e112df3 |
@@ -0,0 +1,2 @@
|
|||||||
|
/build/
|
||||||
|
*.spec
|
||||||
Generated
+3
@@ -0,0 +1,3 @@
|
|||||||
|
# Default ignored files
|
||||||
|
/shelf/
|
||||||
|
/workspace.xml
|
||||||
+6
@@ -0,0 +1,6 @@
|
|||||||
|
<component name="InspectionProjectProfileManager">
|
||||||
|
<settings>
|
||||||
|
<option name="USE_PROJECT_PROFILE" value="false" />
|
||||||
|
<version value="1.0" />
|
||||||
|
</settings>
|
||||||
|
</component>
|
||||||
Generated
+4
@@ -0,0 +1,4 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="ProjectRootManager" version="2" project-jdk-name="Python 3.9 (server-info) (2)" project-jdk-type="Python SDK" />
|
||||||
|
</project>
|
||||||
Generated
+8
@@ -0,0 +1,8 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="ProjectModuleManager">
|
||||||
|
<modules>
|
||||||
|
<module fileurl="file://$PROJECT_DIR$/.idea/server-info.iml" filepath="$PROJECT_DIR$/.idea/server-info.iml" />
|
||||||
|
</modules>
|
||||||
|
</component>
|
||||||
|
</project>
|
||||||
Generated
+10
@@ -0,0 +1,10 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<module type="PYTHON_MODULE" version="4">
|
||||||
|
<component name="NewModuleRootManager">
|
||||||
|
<content url="file://$MODULE_DIR$">
|
||||||
|
<excludeFolder url="file://$MODULE_DIR$/venv" />
|
||||||
|
</content>
|
||||||
|
<orderEntry type="inheritedJdk" />
|
||||||
|
<orderEntry type="sourceFolder" forTests="false" />
|
||||||
|
</component>
|
||||||
|
</module>
|
||||||
Generated
+6
@@ -0,0 +1,6 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="VcsDirectoryMappings">
|
||||||
|
<mapping directory="$PROJECT_DIR$" vcs="Git" />
|
||||||
|
</component>
|
||||||
|
</project>
|
||||||
@@ -1,45 +1,43 @@
|
|||||||
import mysql.connector
|
|
||||||
import subprocess
|
import subprocess
|
||||||
import csv
|
import csv
|
||||||
from datetime import datetime
|
from datetime import datetime
|
||||||
import mysql_connect
|
from Controller import mysql_connect
|
||||||
|
|
||||||
|
|
||||||
def adcontroller (ip,name):
|
def adcontroller (ip,name):
|
||||||
# command = ["powershell", "-Command",
|
command = ["powershell", "-Command",
|
||||||
# "Get-ADUser -Filter * -Properties * | Export-Csv -NoTypeInformation -Encoding UTF8 -Path 'users.csv'"]
|
"Get-ADUser -Filter * -Properties * | Export-Csv -NoTypeInformation -Encoding UTF8 -Path 'users.csv'"]
|
||||||
# subprocess.run(command)
|
subprocess.run(command)
|
||||||
#
|
# CSV-Datei einlesen und Feldnamen auslesen
|
||||||
# # CSV-Datei einlesen und Feldnamen auslesen
|
with open("users.csv", "r", encoding='utf-8-sig') as file:
|
||||||
# with open("users.csv", "r", encoding='utf-8-sig') as file:
|
reader = csv.DictReader(file)
|
||||||
# reader = csv.DictReader(file)
|
fieldnames = reader.fieldnames
|
||||||
# fieldnames = reader.fieldnames
|
|
||||||
#
|
# Tabelle erstellen, falls sie noch nicht existiert
|
||||||
# # Tabelle erstellen, falls sie noch nicht existiert
|
table_name = "Active-Directory-User"
|
||||||
# table_name = "Active-Directory-User"
|
create_table_query = f"CREATE TABLE IF NOT EXISTS `{table_name}` (id INT AUTO_INCREMENT PRIMARY KEY, importdate BIGINT(11), "
|
||||||
# create_table_query = f"CREATE TABLE IF NOT EXISTS `{table_name}` (id INT AUTO_INCREMENT PRIMARY KEY, importdate BIGINT(11), "
|
for field in fieldnames:
|
||||||
# for field in fieldnames:
|
create_table_query += f"`{field}` TEXT, "
|
||||||
# create_table_query += f"`{field}` TEXT, "
|
create_table_query = create_table_query.rstrip(", ") + ")"
|
||||||
# create_table_query = create_table_query.rstrip(", ") + ")"
|
mysql_connect.create_database(create_table_query, name)
|
||||||
# mysql_connect.create_database(create_table_query,name)
|
|
||||||
#
|
# Daten aus der CSV-Datei in die Tabelle einfügen
|
||||||
# # Daten aus der CSV-Datei in die Tabelle einfügen
|
with open("users.csv", "r", encoding='utf-8-sig') as file:
|
||||||
# with open("users.csv", "r", encoding='utf-8-sig') as file:
|
reader = csv.reader(file)
|
||||||
# reader = csv.reader(file)
|
next(reader) # Überspringe die erste Zeile (Feldnamen)
|
||||||
# next(reader) # Überspringe die erste Zeile (Feldnamen)
|
for row in reader:
|
||||||
# for row in reader:
|
row = [cell if cell.strip() else "-" for cell in row]
|
||||||
# row = [cell if cell.strip() else "-" for cell in row]
|
unix_time = int(datetime.now().timestamp())
|
||||||
# unix_time = int(datetime.now().timestamp())
|
print(unix_time)
|
||||||
# print(unix_time)
|
row = [unix_time] + row
|
||||||
# row = [unix_time] + row
|
insert_query = f"INSERT INTO `{table_name}` (importdate, `{'`, `'.join(fieldnames)}`) VALUES (%s, {', '.join(['%s'] * len(fieldnames))})"
|
||||||
# insert_query = f"INSERT INTO `{table_name}` (importdate, `{'`, `'.join(fieldnames)}`) VALUES (%s, {', '.join(['%s'] * len(fieldnames))})"
|
mysql_connect.add_user(insert_query, name, row)
|
||||||
# mysql_connect.add_user(insert_query, name, row)
|
|
||||||
#
|
# Datenbankverbindung schließen
|
||||||
# # Datenbankverbindung schließen
|
|
||||||
#
|
command = ["powershell", "-Command",
|
||||||
# command = ["powershell", "-Command",
|
"Get-ADGroupMember -Identity G-RDP-User | Export-Csv -NoTypeInformation -Encoding UTF8 -Path 'group.csv'"]
|
||||||
# "Get-ADGroupMember -Identity G-RDP-User | Export-Csv -NoTypeInformation -Encoding UTF8 -Path 'group.csv'"]
|
subprocess.run(command)
|
||||||
# subprocess.run(command)
|
|
||||||
|
|
||||||
# CSV-Datei einlesen und Feldnamen auslesen
|
# CSV-Datei einlesen und Feldnamen auslesen
|
||||||
with open("group.csv", "r", encoding='utf-8-sig') as file:
|
with open("group.csv", "r", encoding='utf-8-sig') as file:
|
||||||
@@ -50,7 +48,7 @@ def adcontroller (ip,name):
|
|||||||
for field in fieldnames:
|
for field in fieldnames:
|
||||||
create_table_query += f"`{field}` TEXT, "
|
create_table_query += f"`{field}` TEXT, "
|
||||||
create_table_query = create_table_query.rstrip(", ") + ")"
|
create_table_query = create_table_query.rstrip(", ") + ")"
|
||||||
mysql_connect.create_database(create_table_query,name)
|
mysql_connect.create_database(create_table_query, name)
|
||||||
|
|
||||||
# Daten aus der CSV-Datei in die Tabelle aktualisieren oder einfügen
|
# Daten aus der CSV-Datei in die Tabelle aktualisieren oder einfügen
|
||||||
with open("group.csv", "r", encoding='utf-8-sig') as file:
|
with open("group.csv", "r", encoding='utf-8-sig') as file:
|
||||||
@@ -60,7 +58,7 @@ def adcontroller (ip,name):
|
|||||||
|
|
||||||
# Abfrage, um die ID für den Benutzernamen zu erhalten
|
# Abfrage, um die ID für den Benutzernamen zu erhalten
|
||||||
query_id = f"SELECT id FROM `{table_name}` WHERE SamAccountName = %s"
|
query_id = f"SELECT id FROM `{table_name}` WHERE SamAccountName = %s"
|
||||||
result = mysql_connect.get_user(query_id,name, (sam_account_name,))
|
result = mysql_connect.get_user(query_id, name, (sam_account_name,))
|
||||||
|
|
||||||
if result:
|
if result:
|
||||||
user_id = result[0]
|
user_id = result[0]
|
||||||
@@ -72,10 +70,13 @@ def adcontroller (ip,name):
|
|||||||
update_query = update_query.rstrip(", ")
|
update_query = update_query.rstrip(", ")
|
||||||
update_query += ", `importdate` = %s" # Importdate als Unix-Timestamp aktualisieren
|
update_query += ", `importdate` = %s" # Importdate als Unix-Timestamp aktualisieren
|
||||||
update_query += " WHERE id = %s"
|
update_query += " WHERE id = %s"
|
||||||
|
|
||||||
row_data = [row[field] for field in fieldnames if field != "SamAccountName"]
|
row_data = [row[field] for field in fieldnames if field != "SamAccountName"]
|
||||||
row_data.append(int(datetime.now().timestamp())) # Aktuelle Zeit als Unix-Timestamp
|
unix_time = int(datetime.now().timestamp())
|
||||||
|
row_data = row_data + [unix_time]
|
||||||
row_data.append(user_id)
|
row_data.append(user_id)
|
||||||
mysql_connect.add_user(update_query,name, row_data)
|
print(row_data)
|
||||||
|
mysql_connect.add_user(update_query, name, row_data)
|
||||||
else:
|
else:
|
||||||
insert_query = f"INSERT INTO `{table_name}` ("
|
insert_query = f"INSERT INTO `{table_name}` ("
|
||||||
insert_query += ", ".join(fieldnames) # Spaltennamen in die INSERT-Abfrage einbeziehen
|
insert_query += ", ".join(fieldnames) # Spaltennamen in die INSERT-Abfrage einbeziehen
|
||||||
@@ -1,8 +1,7 @@
|
|||||||
import mysql.connector
|
|
||||||
import subprocess
|
import subprocess
|
||||||
import csv
|
import csv
|
||||||
from datetime import datetime
|
from datetime import datetime
|
||||||
import mysql_connect
|
from Controller import mysql_connect
|
||||||
|
|
||||||
|
|
||||||
def exchange (ip,name):
|
def exchange (ip,name):
|
||||||
@@ -32,7 +31,7 @@ def exchange (ip,name):
|
|||||||
row_length = len(create_table_query)
|
row_length = len(create_table_query)
|
||||||
print(row_length)
|
print(row_length)
|
||||||
print(create_table_query)
|
print(create_table_query)
|
||||||
mysql_connect.create_database(create_table_query,name)
|
mysql_connect.create_database(create_table_query, name)
|
||||||
|
|
||||||
with open("exuser.csv", "r", encoding='utf-8-sig') as file:
|
with open("exuser.csv", "r", encoding='utf-8-sig') as file:
|
||||||
reader = csv.reader(file)
|
reader = csv.reader(file)
|
||||||
@@ -0,0 +1,82 @@
|
|||||||
|
import mysql.connector.locales.eng
|
||||||
|
import mysql.connector
|
||||||
|
import os
|
||||||
|
import Controller.ssh_tunnel as ssh_tunnel
|
||||||
|
|
||||||
|
filename = os.path.basename(__file__)
|
||||||
|
def ping(host):
|
||||||
|
# Führe den Ping-Befehl aus und erfasse die Ausgabe
|
||||||
|
result = os.system("ping -c 1 " + host)
|
||||||
|
if result == 0:
|
||||||
|
hostname = "172.17.1.21", 22
|
||||||
|
else:
|
||||||
|
hostname = "forward.stines.de", 2223
|
||||||
|
return hostname
|
||||||
|
|
||||||
|
|
||||||
|
def database(query,name,user):
|
||||||
|
# server.start()
|
||||||
|
print(f"{filename}-SSH Server start Port:{ssh_tunnel.server_port()}")
|
||||||
|
|
||||||
|
mydb = mysql.connector.connect(
|
||||||
|
host="127.0.0.1",
|
||||||
|
port=ssh_tunnel.server_port(),
|
||||||
|
user="root",
|
||||||
|
password="N53yBCswuawzBzS445VNAhWVMs3N59Gb9szEsrzXRBzarDqpdETpQeyt5v5CGe",
|
||||||
|
database="" + name,
|
||||||
|
auth_plugin='mysql_native_password',
|
||||||
|
)
|
||||||
|
mydb.connect()
|
||||||
|
print(f"{filename}-SQL Server Connect")
|
||||||
|
print(f"{filename}-{query}")
|
||||||
|
cursor = mydb.cursor()
|
||||||
|
if "SELECT" in query:
|
||||||
|
if user:
|
||||||
|
cursor.execute(query, user)
|
||||||
|
return cursor.fetchone()
|
||||||
|
else:
|
||||||
|
cursor.execute(query, user)
|
||||||
|
print(f"{filename}- Inside SELECT ALL")
|
||||||
|
return cursor.fetchall()
|
||||||
|
if "SHOW" in query:
|
||||||
|
cursor.execute(query)
|
||||||
|
return cursor.fetchall()
|
||||||
|
if "INSERT" in query:
|
||||||
|
cursor.execute(query)
|
||||||
|
mydb.commit()
|
||||||
|
if "UPDATE" in query:
|
||||||
|
cursor.execute(query)
|
||||||
|
mydb.commit()
|
||||||
|
mydb.close()
|
||||||
|
# server.stop()
|
||||||
|
def get_ip(query):
|
||||||
|
print(f"{filename}-GetIP")
|
||||||
|
user = ""
|
||||||
|
name = ""
|
||||||
|
return database(query, name, user)
|
||||||
|
def get_database():
|
||||||
|
name = ""
|
||||||
|
user = ""
|
||||||
|
query = 'SHOW DATABASES'
|
||||||
|
return database(query,name,user)
|
||||||
|
def create_database(query,name):
|
||||||
|
try:
|
||||||
|
user = ""
|
||||||
|
database(query,name,user)
|
||||||
|
except Exception as e:
|
||||||
|
print(f"{filename}-Ein Fehler ist aufgetreten:", str(e))
|
||||||
|
def add_user(query,name,user):
|
||||||
|
try:
|
||||||
|
database(query, name, user)
|
||||||
|
return print(f"{filename}-User Added")
|
||||||
|
except Exception as e:
|
||||||
|
print(f"{filename}-Ein Fehler ist aufgetreten:", str(e))
|
||||||
|
|
||||||
|
def get_user(query,name,user):
|
||||||
|
return database(query,name,user)
|
||||||
|
|
||||||
|
def get_cpu(query,name,cpu):
|
||||||
|
return database(query,name,cpu)
|
||||||
|
|
||||||
|
def update_cpu(query,name):
|
||||||
|
database(query,name)
|
||||||
@@ -1,13 +1,16 @@
|
|||||||
import subprocess
|
import subprocess
|
||||||
from datetime import datetime
|
from datetime import datetime
|
||||||
import mysql_connect
|
from Controller import mysql_connect
|
||||||
|
import os
|
||||||
|
filename = os.path.basename(__file__)
|
||||||
def rds (ip,name):
|
def rds (ip,name):
|
||||||
|
print(f"INSIDE-{filename}")
|
||||||
powershell_command = "quser | Select-String -Pattern 'Aktiv'"
|
powershell_command = "quser | Select-String -Pattern 'Aktiv'"
|
||||||
result = subprocess.run(["powershell", "-Command", powershell_command], capture_output=True, text=True)
|
result = subprocess.run(["powershell", "-Command", powershell_command], capture_output=True, text=True)
|
||||||
fieldname = ["Benutzername","Anmeldezeit","Anmeldedatum"]
|
fieldname = ["Benutzername","Anmeldezeit","Anmeldedatum"]
|
||||||
# Die Ausgabe des Befehls aufteilen und die Benutzernamen und Anmeldezeiten extrahieren
|
# Die Ausgabe des Befehls aufteilen und die Benutzernamen und Anmeldezeiten extrahieren
|
||||||
output_lines = result.stdout.strip().split('\n')[1:]
|
output_lines = result.stdout.strip().split('\n')[1:]
|
||||||
|
print(f"{filename}-{output_lines}")
|
||||||
logged_in_users = []
|
logged_in_users = []
|
||||||
|
|
||||||
# Tabelle erstellen, falls sie noch nicht existiert
|
# Tabelle erstellen, falls sie noch nicht existiert
|
||||||
@@ -18,7 +21,8 @@ def rds (ip,name):
|
|||||||
create_table_query = create_table_query.rstrip(", ") + ")"
|
create_table_query = create_table_query.rstrip(", ") + ")"
|
||||||
create_table_query += " ROW_FORMAT=DYNAMIC"
|
create_table_query += " ROW_FORMAT=DYNAMIC"
|
||||||
user = ""
|
user = ""
|
||||||
mysql_connect.create_database(create_table_query,name)
|
mysql_connect.create_database(create_table_query, name)
|
||||||
|
print(f"{filename}-{create_table_query}")
|
||||||
|
|
||||||
for line in output_lines:
|
for line in output_lines:
|
||||||
parts = line.split()
|
parts = line.split()
|
||||||
@@ -26,10 +30,12 @@ def rds (ip,name):
|
|||||||
login_time = parts[5]
|
login_time = parts[5]
|
||||||
login_date = parts[6]
|
login_date = parts[6]
|
||||||
logged_in_users.append((username,login_date, login_time))
|
logged_in_users.append((username,login_date, login_time))
|
||||||
|
print(f"{filename}-{logged_in_users}")
|
||||||
|
|
||||||
for user in logged_in_users:
|
for user in logged_in_users:
|
||||||
user = [cell if cell.strip() else "-" for cell in user]
|
user = [cell if cell.strip() else "-" for cell in user]
|
||||||
unix_time = int(datetime.now().timestamp())
|
unix_time = int(datetime.now().timestamp())
|
||||||
user = [unix_time] + user
|
user = [unix_time] + user
|
||||||
insert_query = f"INSERT INTO `{table_name}` (importdate, `{'`, `'.join(fieldname)}`) VALUES (%s, {', '.join(['%s'] * len(fieldname))})"
|
insert_query = f"INSERT INTO `{table_name}` (importdate, `{'`, `'.join(fieldname)}`) VALUES (%s, {', '.join(['%s'] * len(fieldname))})"
|
||||||
mysql_connect.add_user(insert_query,name, user)
|
mysql_connect.add_user(insert_query, name, user)
|
||||||
|
print(f"{filename}-{insert_query}")
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
import requests
|
import requests
|
||||||
from datetime import datetime
|
from datetime import datetime
|
||||||
import mysql_connect
|
from Controller import mysql_connect
|
||||||
|
|
||||||
|
|
||||||
def smtp(ip,name,mailcow_token):
|
def smtp(ip,name,mailcow_token):
|
||||||
@@ -47,7 +47,7 @@ def smtp(ip,name,mailcow_token):
|
|||||||
field = 'User-ID'
|
field = 'User-ID'
|
||||||
create_table_query += f"`{field}` TEXT, "
|
create_table_query += f"`{field}` TEXT, "
|
||||||
create_table_query = create_table_query.rstrip(", ") + ")"
|
create_table_query = create_table_query.rstrip(", ") + ")"
|
||||||
mysql_connect.create_database(create_table_query,name)
|
mysql_connect.create_database(create_table_query, name)
|
||||||
|
|
||||||
print(len(fields))
|
print(len(fields))
|
||||||
columns = ", ".join(json_data[0].keys())
|
columns = ", ".join(json_data[0].keys())
|
||||||
@@ -62,4 +62,4 @@ def smtp(ip,name,mailcow_token):
|
|||||||
for entry in json_data:
|
for entry in json_data:
|
||||||
values = tuple(
|
values = tuple(
|
||||||
cell if isinstance(cell, int) else cell.strip() if cell.strip() else "-" for cell in entry.values())
|
cell if isinstance(cell, int) else cell.strip() if cell.strip() else "-" for cell in entry.values())
|
||||||
mysql_connect.add_user(insert_query,name, (unix_time,) + values)
|
mysql_connect.add_user(insert_query, name, (unix_time,) + values)
|
||||||
@@ -0,0 +1,22 @@
|
|||||||
|
from sshtunnel import SSHTunnelForwarder
|
||||||
|
import os
|
||||||
|
|
||||||
|
filename = os.path.basename(__file__)
|
||||||
|
|
||||||
|
server = SSHTunnelForwarder(
|
||||||
|
("forward.stines.de", 2223),
|
||||||
|
ssh_username="root",
|
||||||
|
ssh_password="adm.3dfx12",
|
||||||
|
remote_bind_address=('127.0.0.1', 3306)
|
||||||
|
)
|
||||||
|
|
||||||
|
def server_start():
|
||||||
|
server.start()
|
||||||
|
return print(f"{filename}-Server started")
|
||||||
|
|
||||||
|
def server_stop():
|
||||||
|
server.stop()
|
||||||
|
return print(f"{filename}-Server stoped")
|
||||||
|
|
||||||
|
def server_port():
|
||||||
|
return server.local_bind_port
|
||||||
@@ -0,0 +1,32 @@
|
|||||||
|
import psutil
|
||||||
|
import platform
|
||||||
|
import math
|
||||||
|
import cpuinfo
|
||||||
|
from Controller import mysql_connect
|
||||||
|
|
||||||
|
def get_cpu_info():
|
||||||
|
return cpuinfo.get_cpu_info()['brand_raw']
|
||||||
|
|
||||||
|
def get_cpu_sql():
|
||||||
|
query = f"SELECT `Prozessor-Anzahl` FROM `CPU-Liste` WHERE `CPU-Name`='{cpuinfo.get_cpu_info()['brand_raw']}'"
|
||||||
|
return mysql_connect.get_cpu(query,"Stines-GmbH",cpuinfo.get_cpu_info()['brand_raw'])
|
||||||
|
|
||||||
|
def get_ram_info():
|
||||||
|
ram_info = psutil.virtual_memory()
|
||||||
|
total_ram = ram_info.total / (1024 ** 3) # In Gigabytes
|
||||||
|
return math.ceil(total_ram)
|
||||||
|
|
||||||
|
def get_hdd_info():
|
||||||
|
total_disk_size = 0
|
||||||
|
disk_partitions = psutil.disk_partitions()
|
||||||
|
for partition in disk_partitions:
|
||||||
|
# Wenn du das Laufwerk C: ignorieren möchtest
|
||||||
|
if partition.device != 'C:\\':
|
||||||
|
partition_info = psutil.disk_usage(partition.mountpoint)
|
||||||
|
total_disk_size += partition_info.total / (1024 ** 3)
|
||||||
|
return math.ceil(total_disk_size)
|
||||||
|
|
||||||
|
# Informationen über die CPU
|
||||||
|
def set_system_info(ipadress):
|
||||||
|
query = f"UPDATE `Kunden-Server` SET RAM={get_ram_info()}, Prozessor={get_cpu_sql()[0]}, CPU='{get_cpu_info()}' WHERE `IP-Adresse`='{ipadress}'"
|
||||||
|
return mysql_connect.update_cpu(query,"Stines-GmbH","")
|
||||||
@@ -0,0 +1,69 @@
|
|||||||
|
import psycopg2
|
||||||
|
from datetime import datetime, timedelta
|
||||||
|
from Controller import mysql_connect
|
||||||
|
|
||||||
|
def tickets(ip,name):
|
||||||
|
# Verbindungsinformationen zur PostgreSQL-Datenbank
|
||||||
|
db_host = "172.17.1.5"
|
||||||
|
db_name = "zammad_production"
|
||||||
|
db_user = "zammad"
|
||||||
|
db_password = "zammad"
|
||||||
|
|
||||||
|
table_name = "Tickets"
|
||||||
|
|
||||||
|
# Verbindung zur Datenbank herstellen
|
||||||
|
connection = psycopg2.connect(
|
||||||
|
host=db_host,
|
||||||
|
database=db_name,
|
||||||
|
user=db_user,
|
||||||
|
password=db_password
|
||||||
|
)
|
||||||
|
## Abfrage der Daten mit SL / ZL
|
||||||
|
cursor = connection.cursor()
|
||||||
|
query = "SELECT tickets.*, tag_items.name AS SLA FROM tickets LEFT JOIN tags ON tickets.id = tags.o_id LEFT JOIN tag_items ON tags.tag_item_id = tag_items.id;"
|
||||||
|
cursor.execute(query)
|
||||||
|
|
||||||
|
## Header auslesen
|
||||||
|
headers = [desc[0] for desc in cursor.description]
|
||||||
|
|
||||||
|
## Orga Auslesen
|
||||||
|
group = f"SELECT id FROM groups WHERE name = '{name.replace('ae','ä').replace('ue','ü').replace('oe','ö').replace('-',' ')}'"
|
||||||
|
cursor.execute(group)
|
||||||
|
query = f"SELECT tickets.*, tag_items.name AS SLA FROM tickets LEFT JOIN tags ON tickets.id = tags.o_id LEFT JOIN tag_items ON tags.tag_item_id = tag_items.id WHERE group_id = {cursor.fetchone()[0]}"
|
||||||
|
cursor.execute(query)
|
||||||
|
results = cursor.fetchall()
|
||||||
|
|
||||||
|
column_type = f"SELECT column_name, data_type FROM information_schema.columns WHERE table_name = 'tickets' order by column_name ASC;"
|
||||||
|
cursor.execute(column_type)
|
||||||
|
column_type = cursor.fetchall()
|
||||||
|
|
||||||
|
columns = ""
|
||||||
|
## Cretae Tabelle with column_type
|
||||||
|
create_table_query = f"CREATE TABLE IF NOT EXISTS `{table_name}` (importdate BIGINT(11), "
|
||||||
|
for i in column_type:
|
||||||
|
columns += f"{i[0]},"
|
||||||
|
if i[1] == "timestamp without time zone":
|
||||||
|
create_table_query += f"`{i[0]}` DATETIME, "
|
||||||
|
elif i[1] == "character varying":
|
||||||
|
create_table_query += f"`{i[0]}` TEXT, "
|
||||||
|
else:
|
||||||
|
create_table_query += f"`{i[0]}` {i[1]}, "
|
||||||
|
create_table_query = create_table_query.rstrip(",") + "sla TEXT)"
|
||||||
|
mysql_connect.create_database(create_table_query, name)
|
||||||
|
|
||||||
|
for row in results:
|
||||||
|
unix_time = int(datetime.now().timestamp())
|
||||||
|
id = mysql_connect.get_user(f"SELECT id FROM `{table_name}` where id = '%s'", name,(row[0],))
|
||||||
|
given_date = datetime.strptime(str(row[36]), "%Y-%m-%d %H:%M:%S.%f")
|
||||||
|
yesterday = datetime.now() - timedelta(days=1)
|
||||||
|
if id is None:
|
||||||
|
insert_query = f"INSERT INTO `{table_name}` (importdate, `{'`, `'.join(headers)}`) VALUES (%s, {', '.join(['%s'] * len(headers))})"
|
||||||
|
mysql_connect.add_user(insert_query, name, (unix_time,) + row)
|
||||||
|
else:
|
||||||
|
if given_date > yesterday:
|
||||||
|
update_query = f"UPDATE `{table_name}` SET "
|
||||||
|
for field in headers:
|
||||||
|
update_query += f" `{field}` = %s, "
|
||||||
|
update_query = update_query.rstrip(", ")
|
||||||
|
update_query += f" WHERE id = {row[0]}"
|
||||||
|
mysql_connect.add_user(update_query,name, row)
|
||||||
@@ -2,14 +2,8 @@ import requests
|
|||||||
import subprocess
|
import subprocess
|
||||||
import os
|
import os
|
||||||
import shutil
|
import shutil
|
||||||
|
import random
|
||||||
|
|
||||||
def create_windows_task(task_name, command, schedule):
|
|
||||||
try:
|
|
||||||
command_line = f'schtasks /F /create /tn "{task_name}" /tr "{command}" /sc {schedule}'
|
|
||||||
subprocess.run(command_line, shell=True, check=True)
|
|
||||||
print(f"Windows task '{task_name}' created successfully.")
|
|
||||||
except subprocess.CalledProcessError as e:
|
|
||||||
print(f"Failed to create Windows task. Error: {e}")
|
|
||||||
|
|
||||||
def download_and_run_file(url, filename):
|
def download_and_run_file(url, filename):
|
||||||
response = requests.get(url)
|
response = requests.get(url)
|
||||||
@@ -41,7 +35,7 @@ if __name__ == "__main__":
|
|||||||
try:
|
try:
|
||||||
os.mkdir("C:\\Scripte")
|
os.mkdir("C:\\Scripte")
|
||||||
except:
|
except:
|
||||||
print("Exist")
|
print("Folder Exist")
|
||||||
path_to_exclude = "C:\\Scripte"
|
path_to_exclude = "C:\\Scripte"
|
||||||
add_windows_defender_exception(path_to_exclude)
|
add_windows_defender_exception(path_to_exclude)
|
||||||
url_to_file = "https://gitlab.stines.de/sebastian.serfling/REPORTS/raw/branch/main/dist/main.exe"
|
url_to_file = "https://gitlab.stines.de/sebastian.serfling/REPORTS/raw/branch/main/dist/main.exe"
|
||||||
@@ -51,10 +45,5 @@ if __name__ == "__main__":
|
|||||||
shutil.move("Start.exe","C:\\Scripte\\Start.exe")
|
shutil.move("Start.exe","C:\\Scripte\\Start.exe")
|
||||||
except:
|
except:
|
||||||
print("File was moved!")
|
print("File was moved!")
|
||||||
task_name = "Reports"
|
|
||||||
command_to_execute = "C:\\Scripte\\Start.exe"
|
|
||||||
schedule = "daily /st 23:30" # You can customize the schedule here
|
|
||||||
|
|
||||||
create_windows_task(task_name, command_to_execute, schedule)
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
@@ -1,225 +0,0 @@
|
|||||||
('C:\\Users\\Sebastian Serfling\\PycharmProjects\\server-info\\dist\\main.exe',
|
|
||||||
True,
|
|
||||||
False,
|
|
||||||
False,
|
|
||||||
'C:\\Users\\Sebastian '
|
|
||||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\PyInstaller\\bootloader\\images\\icon-console.ico',
|
|
||||||
None,
|
|
||||||
False,
|
|
||||||
False,
|
|
||||||
'<?xml version="1.0" encoding="UTF-8" standalone="yes"?><assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0"><assemblyIdentity type="win32" name="main" processorArchitecture="amd64" version="1.0.0.0"/><trustInfo xmlns="urn:schemas-microsoft-com:asm.v3"><security><requestedPrivileges><requestedExecutionLevel level="asInvoker" uiAccess="false"/></requestedPrivileges></security></trustInfo><dependency><dependentAssembly><assemblyIdentity type="win32" name="Microsoft.Windows.Common-Controls" language="*" processorArchitecture="*" version="6.0.0.0" publicKeyToken="6595b64144ccf1df"/></dependentAssembly></dependency><compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1"><application><supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}"/><supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/><supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}"/><supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}"/><supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}"/></application></compatibility><application xmlns="urn:schemas-microsoft-com:asm.v3"><windowsSettings><longPathAware xmlns="http://schemas.microsoft.com/SMI/2016/WindowsSettings">true</longPathAware></windowsSettings></application></assembly>',
|
|
||||||
True,
|
|
||||||
True,
|
|
||||||
False,
|
|
||||||
None,
|
|
||||||
None,
|
|
||||||
None,
|
|
||||||
'C:\\Users\\Sebastian '
|
|
||||||
'Serfling\\PycharmProjects\\server-info\\build\\main\\main.pkg',
|
|
||||||
[('PYZ-00.pyz',
|
|
||||||
'C:\\Users\\Sebastian '
|
|
||||||
'Serfling\\PycharmProjects\\server-info\\build\\main\\PYZ-00.pyz',
|
|
||||||
'PYZ'),
|
|
||||||
('struct',
|
|
||||||
'C:\\Users\\Sebastian '
|
|
||||||
'Serfling\\PycharmProjects\\server-info\\build\\main\\localpycs\\struct.pyc',
|
|
||||||
'PYMODULE'),
|
|
||||||
('pyimod01_archive',
|
|
||||||
'C:\\Users\\Sebastian '
|
|
||||||
'Serfling\\PycharmProjects\\server-info\\build\\main\\localpycs\\pyimod01_archive.pyc',
|
|
||||||
'PYMODULE'),
|
|
||||||
('pyimod02_importers',
|
|
||||||
'C:\\Users\\Sebastian '
|
|
||||||
'Serfling\\PycharmProjects\\server-info\\build\\main\\localpycs\\pyimod02_importers.pyc',
|
|
||||||
'PYMODULE'),
|
|
||||||
('pyimod03_ctypes',
|
|
||||||
'C:\\Users\\Sebastian '
|
|
||||||
'Serfling\\PycharmProjects\\server-info\\build\\main\\localpycs\\pyimod03_ctypes.pyc',
|
|
||||||
'PYMODULE'),
|
|
||||||
('pyimod04_pywin32',
|
|
||||||
'C:\\Users\\Sebastian '
|
|
||||||
'Serfling\\PycharmProjects\\server-info\\build\\main\\localpycs\\pyimod04_pywin32.pyc',
|
|
||||||
'PYMODULE'),
|
|
||||||
('pyiboot01_bootstrap',
|
|
||||||
'C:\\Users\\Sebastian '
|
|
||||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\PyInstaller\\loader\\pyiboot01_bootstrap.py',
|
|
||||||
'PYSOURCE'),
|
|
||||||
('pyi_rth_inspect',
|
|
||||||
'C:\\Users\\Sebastian '
|
|
||||||
'Serfling\\PycharmProjects\\server-info\\venv\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_inspect.py',
|
|
||||||
'PYSOURCE'),
|
|
||||||
('pyi_rth_pywintypes',
|
|
||||||
'C:\\Users\\Sebastian '
|
|
||||||
'Serfling\\PycharmProjects\\server-info\\venv\\Lib\\site-packages\\_pyinstaller_hooks_contrib\\hooks\\rthooks\\pyi_rth_pywintypes.py',
|
|
||||||
'PYSOURCE'),
|
|
||||||
('main',
|
|
||||||
'C:\\Users\\Sebastian Serfling\\PycharmProjects\\server-info\\main.py',
|
|
||||||
'PYSOURCE'),
|
|
||||||
('VCRUNTIME140.dll',
|
|
||||||
'C:\\Users\\Sebastian '
|
|
||||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\VCRUNTIME140.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('python39.dll',
|
|
||||||
'C:\\Users\\Sebastian '
|
|
||||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\python39.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('pywin32_system32\\pywintypes39.dll',
|
|
||||||
'C:\\Users\\Sebastian '
|
|
||||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\pywin32_system32\\pywintypes39.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('_decimal.pyd',
|
|
||||||
'C:\\Users\\Sebastian '
|
|
||||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_decimal.pyd',
|
|
||||||
'EXTENSION'),
|
|
||||||
('_hashlib.pyd',
|
|
||||||
'C:\\Users\\Sebastian '
|
|
||||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_hashlib.pyd',
|
|
||||||
'EXTENSION'),
|
|
||||||
('_lzma.pyd',
|
|
||||||
'C:\\Users\\Sebastian '
|
|
||||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_lzma.pyd',
|
|
||||||
'EXTENSION'),
|
|
||||||
('_bz2.pyd',
|
|
||||||
'C:\\Users\\Sebastian '
|
|
||||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_bz2.pyd',
|
|
||||||
'EXTENSION'),
|
|
||||||
('_ssl.pyd',
|
|
||||||
'C:\\Users\\Sebastian '
|
|
||||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_ssl.pyd',
|
|
||||||
'EXTENSION'),
|
|
||||||
('unicodedata.pyd',
|
|
||||||
'C:\\Users\\Sebastian '
|
|
||||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\unicodedata.pyd',
|
|
||||||
'EXTENSION'),
|
|
||||||
('select.pyd',
|
|
||||||
'C:\\Users\\Sebastian '
|
|
||||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\select.pyd',
|
|
||||||
'EXTENSION'),
|
|
||||||
('_queue.pyd',
|
|
||||||
'C:\\Users\\Sebastian '
|
|
||||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_queue.pyd',
|
|
||||||
'EXTENSION'),
|
|
||||||
('cryptography\\hazmat\\bindings\\_rust.pyd',
|
|
||||||
'C:\\Users\\Sebastian '
|
|
||||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\bindings\\_rust.pyd',
|
|
||||||
'EXTENSION'),
|
|
||||||
('_cffi_backend.cp39-win_amd64.pyd',
|
|
||||||
'C:\\Users\\Sebastian '
|
|
||||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\_cffi_backend.cp39-win_amd64.pyd',
|
|
||||||
'EXTENSION'),
|
|
||||||
('bcrypt\\_bcrypt.pyd',
|
|
||||||
'C:\\Users\\Sebastian '
|
|
||||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\bcrypt\\_bcrypt.pyd',
|
|
||||||
'EXTENSION'),
|
|
||||||
('nacl\\_sodium.pyd',
|
|
||||||
'C:\\Users\\Sebastian '
|
|
||||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\nacl\\_sodium.pyd',
|
|
||||||
'EXTENSION'),
|
|
||||||
('win32\\win32security.pyd',
|
|
||||||
'C:\\Users\\Sebastian '
|
|
||||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\win32\\win32security.pyd',
|
|
||||||
'EXTENSION'),
|
|
||||||
('win32\\_win32sysloader.pyd',
|
|
||||||
'C:\\Users\\Sebastian '
|
|
||||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\win32\\_win32sysloader.pyd',
|
|
||||||
'EXTENSION'),
|
|
||||||
('_ctypes.pyd',
|
|
||||||
'C:\\Users\\Sebastian '
|
|
||||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_ctypes.pyd',
|
|
||||||
'EXTENSION'),
|
|
||||||
('pyexpat.pyd',
|
|
||||||
'C:\\Users\\Sebastian '
|
|
||||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\pyexpat.pyd',
|
|
||||||
'EXTENSION'),
|
|
||||||
('_uuid.pyd',
|
|
||||||
'C:\\Users\\Sebastian '
|
|
||||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_uuid.pyd',
|
|
||||||
'EXTENSION'),
|
|
||||||
('charset_normalizer\\md__mypyc.cp39-win_amd64.pyd',
|
|
||||||
'C:\\Users\\Sebastian '
|
|
||||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\charset_normalizer\\md__mypyc.cp39-win_amd64.pyd',
|
|
||||||
'EXTENSION'),
|
|
||||||
('charset_normalizer\\md.cp39-win_amd64.pyd',
|
|
||||||
'C:\\Users\\Sebastian '
|
|
||||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\charset_normalizer\\md.cp39-win_amd64.pyd',
|
|
||||||
'EXTENSION'),
|
|
||||||
('_socket.pyd',
|
|
||||||
'C:\\Users\\Sebastian '
|
|
||||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_socket.pyd',
|
|
||||||
'EXTENSION'),
|
|
||||||
('VCRUNTIME140_1.dll',
|
|
||||||
'C:\\Users\\Sebastian '
|
|
||||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\VCRUNTIME140_1.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('libcrypto-1_1.dll',
|
|
||||||
'C:\\Users\\Sebastian '
|
|
||||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\libcrypto-1_1.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('libssl-1_1.dll',
|
|
||||||
'C:\\Users\\Sebastian '
|
|
||||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\libssl-1_1.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('python3.dll',
|
|
||||||
'C:\\Users\\Sebastian '
|
|
||||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\python3.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('libffi-7.dll',
|
|
||||||
'C:\\Users\\Sebastian '
|
|
||||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\libffi-7.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('base_library.zip',
|
|
||||||
'C:\\Users\\Sebastian '
|
|
||||||
'Serfling\\PycharmProjects\\server-info\\build\\main\\base_library.zip',
|
|
||||||
'DATA'),
|
|
||||||
('nacl\\py.typed',
|
|
||||||
'C:\\Users\\Sebastian '
|
|
||||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\nacl\\py.typed',
|
|
||||||
'DATA'),
|
|
||||||
('cryptography-41.0.2.dist-info\\LICENSE.BSD',
|
|
||||||
'c:\\users\\sebastian '
|
|
||||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\LICENSE.BSD',
|
|
||||||
'DATA'),
|
|
||||||
('cryptography-41.0.2.dist-info\\INSTALLER',
|
|
||||||
'c:\\users\\sebastian '
|
|
||||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\INSTALLER',
|
|
||||||
'DATA'),
|
|
||||||
('certifi\\cacert.pem',
|
|
||||||
'C:\\Users\\Sebastian '
|
|
||||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\certifi\\cacert.pem',
|
|
||||||
'DATA'),
|
|
||||||
('cryptography-41.0.2.dist-info\\LICENSE.APACHE',
|
|
||||||
'c:\\users\\sebastian '
|
|
||||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\LICENSE.APACHE',
|
|
||||||
'DATA'),
|
|
||||||
('cryptography-41.0.2.dist-info\\WHEEL',
|
|
||||||
'c:\\users\\sebastian '
|
|
||||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\WHEEL',
|
|
||||||
'DATA'),
|
|
||||||
('cryptography-41.0.2.dist-info\\RECORD',
|
|
||||||
'c:\\users\\sebastian '
|
|
||||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\RECORD',
|
|
||||||
'DATA'),
|
|
||||||
('cryptography-41.0.2.dist-info\\METADATA',
|
|
||||||
'c:\\users\\sebastian '
|
|
||||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\METADATA',
|
|
||||||
'DATA'),
|
|
||||||
('cryptography-41.0.2.dist-info\\top_level.txt',
|
|
||||||
'c:\\users\\sebastian '
|
|
||||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\top_level.txt',
|
|
||||||
'DATA'),
|
|
||||||
('cryptography-41.0.2.dist-info\\LICENSE',
|
|
||||||
'c:\\users\\sebastian '
|
|
||||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\LICENSE',
|
|
||||||
'DATA'),
|
|
||||||
('certifi\\py.typed',
|
|
||||||
'C:\\Users\\Sebastian '
|
|
||||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\certifi\\py.typed',
|
|
||||||
'DATA')],
|
|
||||||
[],
|
|
||||||
False,
|
|
||||||
False,
|
|
||||||
1690287166,
|
|
||||||
[('run.exe',
|
|
||||||
'C:\\Users\\Sebastian '
|
|
||||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\PyInstaller\\bootloader\\Windows-64bit-intel\\run.exe',
|
|
||||||
'EXECUTABLE')])
|
|
||||||
@@ -1,216 +0,0 @@
|
|||||||
('C:\\Users\\Sebastian '
|
|
||||||
'Serfling\\PycharmProjects\\server-info\\build\\main\\main.pkg',
|
|
||||||
{'BINARY': True,
|
|
||||||
'DATA': True,
|
|
||||||
'EXECUTABLE': True,
|
|
||||||
'EXTENSION': True,
|
|
||||||
'PYMODULE': True,
|
|
||||||
'PYSOURCE': True,
|
|
||||||
'PYZ': False,
|
|
||||||
'SPLASH': True},
|
|
||||||
[('PYZ-00.pyz',
|
|
||||||
'C:\\Users\\Sebastian '
|
|
||||||
'Serfling\\PycharmProjects\\server-info\\build\\main\\PYZ-00.pyz',
|
|
||||||
'PYZ'),
|
|
||||||
('struct',
|
|
||||||
'C:\\Users\\Sebastian '
|
|
||||||
'Serfling\\PycharmProjects\\server-info\\build\\main\\localpycs\\struct.pyc',
|
|
||||||
'PYMODULE'),
|
|
||||||
('pyimod01_archive',
|
|
||||||
'C:\\Users\\Sebastian '
|
|
||||||
'Serfling\\PycharmProjects\\server-info\\build\\main\\localpycs\\pyimod01_archive.pyc',
|
|
||||||
'PYMODULE'),
|
|
||||||
('pyimod02_importers',
|
|
||||||
'C:\\Users\\Sebastian '
|
|
||||||
'Serfling\\PycharmProjects\\server-info\\build\\main\\localpycs\\pyimod02_importers.pyc',
|
|
||||||
'PYMODULE'),
|
|
||||||
('pyimod03_ctypes',
|
|
||||||
'C:\\Users\\Sebastian '
|
|
||||||
'Serfling\\PycharmProjects\\server-info\\build\\main\\localpycs\\pyimod03_ctypes.pyc',
|
|
||||||
'PYMODULE'),
|
|
||||||
('pyimod04_pywin32',
|
|
||||||
'C:\\Users\\Sebastian '
|
|
||||||
'Serfling\\PycharmProjects\\server-info\\build\\main\\localpycs\\pyimod04_pywin32.pyc',
|
|
||||||
'PYMODULE'),
|
|
||||||
('pyiboot01_bootstrap',
|
|
||||||
'C:\\Users\\Sebastian '
|
|
||||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\PyInstaller\\loader\\pyiboot01_bootstrap.py',
|
|
||||||
'PYSOURCE'),
|
|
||||||
('pyi_rth_inspect',
|
|
||||||
'C:\\Users\\Sebastian '
|
|
||||||
'Serfling\\PycharmProjects\\server-info\\venv\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_inspect.py',
|
|
||||||
'PYSOURCE'),
|
|
||||||
('pyi_rth_pywintypes',
|
|
||||||
'C:\\Users\\Sebastian '
|
|
||||||
'Serfling\\PycharmProjects\\server-info\\venv\\Lib\\site-packages\\_pyinstaller_hooks_contrib\\hooks\\rthooks\\pyi_rth_pywintypes.py',
|
|
||||||
'PYSOURCE'),
|
|
||||||
('main',
|
|
||||||
'C:\\Users\\Sebastian Serfling\\PycharmProjects\\server-info\\main.py',
|
|
||||||
'PYSOURCE'),
|
|
||||||
('VCRUNTIME140.dll',
|
|
||||||
'C:\\Users\\Sebastian '
|
|
||||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\VCRUNTIME140.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('python39.dll',
|
|
||||||
'C:\\Users\\Sebastian '
|
|
||||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\python39.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('pywin32_system32\\pywintypes39.dll',
|
|
||||||
'C:\\Users\\Sebastian '
|
|
||||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\pywin32_system32\\pywintypes39.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('_decimal.pyd',
|
|
||||||
'C:\\Users\\Sebastian '
|
|
||||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_decimal.pyd',
|
|
||||||
'EXTENSION'),
|
|
||||||
('_hashlib.pyd',
|
|
||||||
'C:\\Users\\Sebastian '
|
|
||||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_hashlib.pyd',
|
|
||||||
'EXTENSION'),
|
|
||||||
('_lzma.pyd',
|
|
||||||
'C:\\Users\\Sebastian '
|
|
||||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_lzma.pyd',
|
|
||||||
'EXTENSION'),
|
|
||||||
('_bz2.pyd',
|
|
||||||
'C:\\Users\\Sebastian '
|
|
||||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_bz2.pyd',
|
|
||||||
'EXTENSION'),
|
|
||||||
('_ssl.pyd',
|
|
||||||
'C:\\Users\\Sebastian '
|
|
||||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_ssl.pyd',
|
|
||||||
'EXTENSION'),
|
|
||||||
('unicodedata.pyd',
|
|
||||||
'C:\\Users\\Sebastian '
|
|
||||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\unicodedata.pyd',
|
|
||||||
'EXTENSION'),
|
|
||||||
('select.pyd',
|
|
||||||
'C:\\Users\\Sebastian '
|
|
||||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\select.pyd',
|
|
||||||
'EXTENSION'),
|
|
||||||
('_queue.pyd',
|
|
||||||
'C:\\Users\\Sebastian '
|
|
||||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_queue.pyd',
|
|
||||||
'EXTENSION'),
|
|
||||||
('cryptography\\hazmat\\bindings\\_rust.pyd',
|
|
||||||
'C:\\Users\\Sebastian '
|
|
||||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\cryptography\\hazmat\\bindings\\_rust.pyd',
|
|
||||||
'EXTENSION'),
|
|
||||||
('_cffi_backend.cp39-win_amd64.pyd',
|
|
||||||
'C:\\Users\\Sebastian '
|
|
||||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\_cffi_backend.cp39-win_amd64.pyd',
|
|
||||||
'EXTENSION'),
|
|
||||||
('bcrypt\\_bcrypt.pyd',
|
|
||||||
'C:\\Users\\Sebastian '
|
|
||||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\bcrypt\\_bcrypt.pyd',
|
|
||||||
'EXTENSION'),
|
|
||||||
('nacl\\_sodium.pyd',
|
|
||||||
'C:\\Users\\Sebastian '
|
|
||||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\nacl\\_sodium.pyd',
|
|
||||||
'EXTENSION'),
|
|
||||||
('win32\\win32security.pyd',
|
|
||||||
'C:\\Users\\Sebastian '
|
|
||||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\win32\\win32security.pyd',
|
|
||||||
'EXTENSION'),
|
|
||||||
('win32\\_win32sysloader.pyd',
|
|
||||||
'C:\\Users\\Sebastian '
|
|
||||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\win32\\_win32sysloader.pyd',
|
|
||||||
'EXTENSION'),
|
|
||||||
('_ctypes.pyd',
|
|
||||||
'C:\\Users\\Sebastian '
|
|
||||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_ctypes.pyd',
|
|
||||||
'EXTENSION'),
|
|
||||||
('pyexpat.pyd',
|
|
||||||
'C:\\Users\\Sebastian '
|
|
||||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\pyexpat.pyd',
|
|
||||||
'EXTENSION'),
|
|
||||||
('_uuid.pyd',
|
|
||||||
'C:\\Users\\Sebastian '
|
|
||||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_uuid.pyd',
|
|
||||||
'EXTENSION'),
|
|
||||||
('charset_normalizer\\md__mypyc.cp39-win_amd64.pyd',
|
|
||||||
'C:\\Users\\Sebastian '
|
|
||||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\charset_normalizer\\md__mypyc.cp39-win_amd64.pyd',
|
|
||||||
'EXTENSION'),
|
|
||||||
('charset_normalizer\\md.cp39-win_amd64.pyd',
|
|
||||||
'C:\\Users\\Sebastian '
|
|
||||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\charset_normalizer\\md.cp39-win_amd64.pyd',
|
|
||||||
'EXTENSION'),
|
|
||||||
('_socket.pyd',
|
|
||||||
'C:\\Users\\Sebastian '
|
|
||||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_socket.pyd',
|
|
||||||
'EXTENSION'),
|
|
||||||
('VCRUNTIME140_1.dll',
|
|
||||||
'C:\\Users\\Sebastian '
|
|
||||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\VCRUNTIME140_1.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('libcrypto-1_1.dll',
|
|
||||||
'C:\\Users\\Sebastian '
|
|
||||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\libcrypto-1_1.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('libssl-1_1.dll',
|
|
||||||
'C:\\Users\\Sebastian '
|
|
||||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\libssl-1_1.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('python3.dll',
|
|
||||||
'C:\\Users\\Sebastian '
|
|
||||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\python3.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('libffi-7.dll',
|
|
||||||
'C:\\Users\\Sebastian '
|
|
||||||
'Serfling\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\libffi-7.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('base_library.zip',
|
|
||||||
'C:\\Users\\Sebastian '
|
|
||||||
'Serfling\\PycharmProjects\\server-info\\build\\main\\base_library.zip',
|
|
||||||
'DATA'),
|
|
||||||
('nacl\\py.typed',
|
|
||||||
'C:\\Users\\Sebastian '
|
|
||||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\nacl\\py.typed',
|
|
||||||
'DATA'),
|
|
||||||
('cryptography-41.0.2.dist-info\\LICENSE.BSD',
|
|
||||||
'c:\\users\\sebastian '
|
|
||||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\LICENSE.BSD',
|
|
||||||
'DATA'),
|
|
||||||
('cryptography-41.0.2.dist-info\\INSTALLER',
|
|
||||||
'c:\\users\\sebastian '
|
|
||||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\INSTALLER',
|
|
||||||
'DATA'),
|
|
||||||
('certifi\\cacert.pem',
|
|
||||||
'C:\\Users\\Sebastian '
|
|
||||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\certifi\\cacert.pem',
|
|
||||||
'DATA'),
|
|
||||||
('cryptography-41.0.2.dist-info\\LICENSE.APACHE',
|
|
||||||
'c:\\users\\sebastian '
|
|
||||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\LICENSE.APACHE',
|
|
||||||
'DATA'),
|
|
||||||
('cryptography-41.0.2.dist-info\\WHEEL',
|
|
||||||
'c:\\users\\sebastian '
|
|
||||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\WHEEL',
|
|
||||||
'DATA'),
|
|
||||||
('cryptography-41.0.2.dist-info\\RECORD',
|
|
||||||
'c:\\users\\sebastian '
|
|
||||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\RECORD',
|
|
||||||
'DATA'),
|
|
||||||
('cryptography-41.0.2.dist-info\\METADATA',
|
|
||||||
'c:\\users\\sebastian '
|
|
||||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\METADATA',
|
|
||||||
'DATA'),
|
|
||||||
('cryptography-41.0.2.dist-info\\top_level.txt',
|
|
||||||
'c:\\users\\sebastian '
|
|
||||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\top_level.txt',
|
|
||||||
'DATA'),
|
|
||||||
('cryptography-41.0.2.dist-info\\LICENSE',
|
|
||||||
'c:\\users\\sebastian '
|
|
||||||
'serfling\\pycharmprojects\\server-info\\venv\\lib\\site-packages\\cryptography-41.0.2.dist-info\\LICENSE',
|
|
||||||
'DATA'),
|
|
||||||
('certifi\\py.typed',
|
|
||||||
'C:\\Users\\Sebastian '
|
|
||||||
'Serfling\\PycharmProjects\\server-info\\venv\\lib\\site-packages\\certifi\\py.typed',
|
|
||||||
'DATA')],
|
|
||||||
False,
|
|
||||||
False,
|
|
||||||
False,
|
|
||||||
[],
|
|
||||||
None,
|
|
||||||
None,
|
|
||||||
None)
|
|
||||||
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1,30 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
|
||||||
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
|
|
||||||
<assemblyIdentity type="win32" name="main" processorArchitecture="amd64" version="1.0.0.0"/>
|
|
||||||
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
|
|
||||||
<security>
|
|
||||||
<requestedPrivileges>
|
|
||||||
<requestedExecutionLevel level="asInvoker" uiAccess="false"/>
|
|
||||||
</requestedPrivileges>
|
|
||||||
</security>
|
|
||||||
</trustInfo>
|
|
||||||
<dependency>
|
|
||||||
<dependentAssembly>
|
|
||||||
<assemblyIdentity type="win32" name="Microsoft.Windows.Common-Controls" language="*" processorArchitecture="*" version="6.0.0.0" publicKeyToken="6595b64144ccf1df"/>
|
|
||||||
</dependentAssembly>
|
|
||||||
</dependency>
|
|
||||||
<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
|
|
||||||
<application>
|
|
||||||
<supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}"/>
|
|
||||||
<supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/>
|
|
||||||
<supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}"/>
|
|
||||||
<supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}"/>
|
|
||||||
<supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}"/>
|
|
||||||
</application>
|
|
||||||
</compatibility>
|
|
||||||
<application xmlns="urn:schemas-microsoft-com:asm.v3">
|
|
||||||
<windowsSettings>
|
|
||||||
<longPathAware xmlns="http://schemas.microsoft.com/SMI/2016/WindowsSettings">true</longPathAware>
|
|
||||||
</windowsSettings>
|
|
||||||
</application>
|
|
||||||
</assembly>
|
|
||||||
Binary file not shown.
@@ -1,57 +0,0 @@
|
|||||||
|
|
||||||
This file lists modules PyInstaller was not able to find. This does not
|
|
||||||
necessarily mean this module is required for running your program. Python and
|
|
||||||
Python 3rd-party packages include a lot of conditional or optional modules. For
|
|
||||||
example the module 'ntpath' only exists on Windows, whereas the module
|
|
||||||
'posixpath' only exists on Posix systems.
|
|
||||||
|
|
||||||
Types if import:
|
|
||||||
* top-level: imported at the top-level - look at these first
|
|
||||||
* conditional: imported within an if-statement
|
|
||||||
* delayed: imported within a function
|
|
||||||
* optional: imported within a try-except-statement
|
|
||||||
|
|
||||||
IMPORTANT: Do NOT post this list to the issue-tracker. Use it as a basis for
|
|
||||||
tracking down the missing module yourself. Thanks!
|
|
||||||
|
|
||||||
missing module named org - imported by pickle (optional)
|
|
||||||
missing module named 'org.python' - imported by copy (optional), xml.sax (delayed, conditional)
|
|
||||||
missing module named posix - imported by os (conditional, optional), shutil (conditional), importlib._bootstrap_external (conditional)
|
|
||||||
missing module named resource - imported by posix (top-level)
|
|
||||||
missing module named grp - imported by shutil (optional), tarfile (optional), pathlib (delayed, optional), subprocess (optional)
|
|
||||||
missing module named pwd - imported by posixpath (delayed, conditional), shutil (optional), tarfile (optional), pathlib (delayed, conditional, optional), subprocess (optional), netrc (delayed, conditional), getpass (delayed)
|
|
||||||
missing module named pep517 - imported by importlib.metadata (delayed)
|
|
||||||
missing module named _frozen_importlib_external - imported by importlib._bootstrap (delayed), importlib (optional), importlib.abc (optional)
|
|
||||||
excluded module named _frozen_importlib - imported by importlib (optional), importlib.abc (optional)
|
|
||||||
missing module named _scproxy - imported by urllib.request (conditional)
|
|
||||||
missing module named termios - imported by getpass (optional)
|
|
||||||
missing module named _posixsubprocess - imported by subprocess (optional)
|
|
||||||
missing module named SocketServer - imported by sshtunnel (conditional)
|
|
||||||
missing module named Queue - imported by mysql.connector.pooling (optional), sshtunnel (conditional)
|
|
||||||
missing module named invoke - imported by paramiko.config (optional)
|
|
||||||
missing module named cryptography.x509.UnsupportedExtension - imported by cryptography.x509 (optional), urllib3.contrib.pyopenssl (optional)
|
|
||||||
missing module named fcntl - imported by paramiko.agent (delayed)
|
|
||||||
missing module named 'pyasn1.codec' - imported by paramiko.ssh_gss (delayed)
|
|
||||||
missing module named pyasn1 - imported by paramiko.ssh_gss (delayed)
|
|
||||||
missing module named gssapi - imported by paramiko.ssh_gss (optional)
|
|
||||||
missing module named vms_lib - imported by platform (delayed, optional)
|
|
||||||
missing module named 'java.lang' - imported by platform (delayed, optional), xml.sax._exceptions (conditional)
|
|
||||||
missing module named java - imported by platform (delayed)
|
|
||||||
missing module named _winreg - imported by platform (delayed, optional)
|
|
||||||
missing module named httplib - imported by mysql.connector.fabric.connection (conditional, optional)
|
|
||||||
missing module named urllib2 - imported by mysql.connector.fabric.connection (optional)
|
|
||||||
missing module named xmlrpclib - imported by mysql.connector.fabric.connection (optional)
|
|
||||||
missing module named ConfigParser - imported by mysql.connector.optionfiles (conditional)
|
|
||||||
missing module named _mysql_connector - imported by mysql.connector (optional), mysql.connector.connection_cext (optional), mysql.connector.cursor_cext (top-level)
|
|
||||||
missing module named simplejson - imported by requests.compat (conditional, optional)
|
|
||||||
missing module named dummy_threading - imported by requests.cookies (optional)
|
|
||||||
missing module named typing_extensions - imported by urllib3.connection (conditional), urllib3.util.timeout (conditional), urllib3._base_connection (conditional), urllib3.util.request (conditional), urllib3._collections (conditional), urllib3.util.ssl_ (conditional), urllib3.util.ssltransport (conditional), urllib3.connectionpool (conditional), urllib3.response (conditional), urllib3.poolmanager (conditional)
|
|
||||||
missing module named zstandard - imported by urllib3.response (optional), urllib3.util.request (optional)
|
|
||||||
missing module named brotli - imported by urllib3.response (optional), urllib3.util.request (optional)
|
|
||||||
missing module named brotlicffi - imported by urllib3.response (optional), urllib3.util.request (optional)
|
|
||||||
missing module named socks - imported by urllib3.contrib.socks (optional)
|
|
||||||
missing module named 'typing.io' - imported by importlib.resources (top-level)
|
|
||||||
missing module named 'OpenSSL.crypto' - imported by urllib3.contrib.pyopenssl (delayed, conditional)
|
|
||||||
missing module named OpenSSL - imported by urllib3.contrib.pyopenssl (top-level)
|
|
||||||
missing module named chardet - imported by requests.compat (optional), requests (optional), requests.packages (optional)
|
|
||||||
missing module named urllib3_secure_extra - imported by urllib3 (optional)
|
|
||||||
File diff suppressed because it is too large
Load Diff
Vendored
BIN
Binary file not shown.
Vendored
BIN
Binary file not shown.
@@ -1,20 +0,0 @@
|
|||||||
"distinguishedName","name","objectClass","objectGUID","SamAccountName","SID"
|
|
||||||
"CN=RDP Admin,OU=Administration,DC=jaehler,DC=com","RDP Admin","user","3959b56d-ae3b-45db-89d6-76b72534f82b","rdpadmin","S-1-5-21-3459449358-1630706413-1848230301-1103"
|
|
||||||
"CN=Frank Halbauer,OU=Benutzer,DC=jaehler,DC=com","Frank Halbauer","user","5802cc00-a936-4b70-8541-33652c6b7f68","frank.halbauer","S-1-5-21-3459449358-1630706413-1848230301-1283"
|
|
||||||
"CN=Holger Müller,OU=Benutzer,DC=jaehler,DC=com","Holger Müller","user","37839e91-2a94-4efa-8085-eadddec593fb","holger.mueller","S-1-5-21-3459449358-1630706413-1848230301-1190"
|
|
||||||
"CN=Katrin Jähler,OU=Benutzer,DC=jaehler,DC=com","Katrin Jähler","user","19484c55-8183-42ed-a67c-f80c5909f952","katrin.jaehler","S-1-5-21-3459449358-1630706413-1848230301-1191"
|
|
||||||
"CN=Marc Philipp,OU=Benutzer,DC=jaehler,DC=com","Marc Philipp","user","e2b419fe-ecea-4d03-8e5c-41e482ae3539","marc.philipp","S-1-5-21-3459449358-1630706413-1848230301-1193"
|
|
||||||
"CN=Katrin Haack,OU=Benutzer,DC=jaehler,DC=com","Katrin Haack","user","39a9eefb-cbd7-4ba8-9c17-88afa0b3445a","katrin.haack","S-1-5-21-3459449358-1630706413-1848230301-1194"
|
|
||||||
"CN=Katrin Wesser,OU=Deaktivierte Benutzer,DC=jaehler,DC=com","Katrin Wesser","user","beab8e57-9bde-47b0-8a1b-67297648d1e1","katrin.wesser","S-1-5-21-3459449358-1630706413-1848230301-1195"
|
|
||||||
"CN=Steven Winkler,OU=Benutzer,DC=jaehler,DC=com","Steven Winkler","user","a3e9fcd7-554d-4b0b-8489-5067b79520e5","steven.winkler","S-1-5-21-3459449358-1630706413-1848230301-1196"
|
|
||||||
"CN=Birgit Schleif,OU=Benutzer,DC=jaehler,DC=com","Birgit Schleif","user","b1d947b1-f8fe-4872-8db0-e707e3dc2bab","birgit.schleif","S-1-5-21-3459449358-1630706413-1848230301-1197"
|
|
||||||
"CN=Jana Wunderlich,OU=Benutzer,DC=jaehler,DC=com","Jana Wunderlich","user","1da746db-c38e-471f-a5ae-7aef22596f9a","jana.wunderlich","S-1-5-21-3459449358-1630706413-1848230301-1198"
|
|
||||||
"CN=Enrico Mäser,OU=Benutzer,DC=jaehler,DC=com","Enrico Mäser","user","41c45ba4-5576-4873-8295-b749841d60b2","enrico.maeser","S-1-5-21-3459449358-1630706413-1848230301-1199"
|
|
||||||
"CN=Uwe Pohle,OU=Benutzer,DC=jaehler,DC=com","Uwe Pohle","user","f633df0c-6999-4543-bc47-7710166448c9","uwe.pohle","S-1-5-21-3459449358-1630706413-1848230301-1200"
|
|
||||||
"CN=Peggy Eibisch,OU=Benutzer,DC=jaehler,DC=com","Peggy Eibisch","user","989f5658-5638-41fd-b470-5420ca5d549d","peggy.eibisch","S-1-5-21-3459449358-1630706413-1848230301-1201"
|
|
||||||
"CN=Beate Flieger,OU=Benutzer,DC=jaehler,DC=com","Beate Flieger","user","51bfbb88-5c2c-4119-bef1-94956c012407","beate.flieger","S-1-5-21-3459449358-1630706413-1848230301-1202"
|
|
||||||
"CN=Ralf Zimny,OU=Benutzer,DC=jaehler,DC=com","Ralf Zimny","user","27454109-b419-4067-aef6-7612888e5948","ralf.zimny","S-1-5-21-3459449358-1630706413-1848230301-1203"
|
|
||||||
"CN=Michael Zippel,OU=Benutzer,DC=jaehler,DC=com","Michael Zippel","user","298147ae-721b-45e7-a065-6eaa3f79996b","michael.zippel","S-1-5-21-3459449358-1630706413-1848230301-1248"
|
|
||||||
"CN=Matthias Golde,OU=Benutzer,DC=jaehler,DC=com","Matthias Golde","user","35ca16ed-83bc-405e-a767-f5b7fdebc9db","matthias.golde","S-1-5-21-3459449358-1630706413-1848230301-1249"
|
|
||||||
"CN=Admin-Test-User (Service-Account),OU=Benutzer,DC=jaehler,DC=com","Admin-Test-User (Service-Account)","user","77cbfd78-f06b-41a8-823c-04341db3e577","Ad-Test-User","S-1-5-21-3459449358-1630706413-1848230301-1273"
|
|
||||||
"CN=Marcel Kirmse,OU=Benutzer,DC=jaehler,DC=com","Marcel Kirmse","user","f3fc936e-d497-43dc-b0a4-cbcec2d6963f","marcel.kirmse","S-1-5-21-3459449358-1630706413-1848230301-1274"
|
|
||||||
|
@@ -1,38 +1,39 @@
|
|||||||
|
import Controller.ssh_tunnel as ssh_tunnel
|
||||||
|
ssh_tunnel.server_start()
|
||||||
import socket
|
import socket
|
||||||
import adcontroller_export
|
from Controller import adcontroller_export, exchange_export, rds_export, smtp_export, zammad, system_info
|
||||||
import exchange_export
|
import Controller.mysql_connect as mysql_connect
|
||||||
import smtp_export
|
import random
|
||||||
import rds_export
|
import subprocess
|
||||||
import mysql_connect
|
import socket
|
||||||
|
import os
|
||||||
|
|
||||||
|
## Gibt Name der Datei zum Debugen aus
|
||||||
|
filename = os.path.basename(__file__)
|
||||||
|
|
||||||
def get_local_ip():
|
def get_local_ip():
|
||||||
try:
|
try:
|
||||||
# Socket erstellen, um die lokale IP-Adresse zu ermitteln
|
|
||||||
s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
|
s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
|
||||||
s.connect(("8.8.8.8", 80)) # Eine temporäre Verbindung zu einem externen Server herstellen
|
s.connect(("8.8.8.8", 80))
|
||||||
|
|
||||||
# Die lokale IP-Adresse aus den Socketeigenschaften abrufen
|
|
||||||
local_ip = s.getsockname()[0]
|
local_ip = s.getsockname()[0]
|
||||||
|
|
||||||
# Den Socket schließen
|
|
||||||
s.close()
|
s.close()
|
||||||
|
print(local_ip)
|
||||||
return local_ip
|
return local_ip
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
print(f"Fehler beim Abrufen der lokalen IP-Adresse: {e}")
|
print(f"Fehler beim Abrufen der lokalen IP-Adresse: {e}")
|
||||||
return None
|
return None
|
||||||
|
|
||||||
def adcontroller(ip,name):
|
def adcontroller(ip,name):
|
||||||
adcontroller_export.adcontroller(ip,name)
|
adcontroller_export.adcontroller(ip, name)
|
||||||
|
|
||||||
def exchange(ip,name):
|
def exchange(ip,name):
|
||||||
exchange_export.exchange(ip,name)
|
exchange_export.exchange(ip, name)
|
||||||
|
|
||||||
def smtp(ip,name,token):
|
def smtp(ip,name,token):
|
||||||
smtp_export.smtp(ip,name,token)
|
smtp_export.smtp(ip, name, token)
|
||||||
|
|
||||||
def rds(ip, name):
|
def rds(ip, name):
|
||||||
rds_export.rds(ip,name)
|
rds_export.rds(ip, name)
|
||||||
|
|
||||||
def cms(ip, servername):
|
def cms(ip, servername):
|
||||||
## Import User als RAW
|
## Import User als RAW
|
||||||
@@ -54,9 +55,8 @@ def nginx(ip,servername):
|
|||||||
## Import Letsencrypt Time als RAW
|
## Import Letsencrypt Time als RAW
|
||||||
print("" + ip + servername)
|
print("" + ip + servername)
|
||||||
|
|
||||||
def zammad(ip,servername):
|
def tickets(ip,name):
|
||||||
## Import Tickets Time als RAW
|
zammad.tickets(ip,name)
|
||||||
print("" + ip + servername)
|
|
||||||
|
|
||||||
def data(ip,servername):
|
def data(ip,servername):
|
||||||
## Import Space Used als RAW
|
## Import Space Used als RAW
|
||||||
@@ -74,23 +74,40 @@ def gucamole(ip,servername):
|
|||||||
## Import User + Maschinen als RAW
|
## Import User + Maschinen als RAW
|
||||||
print("" + ip + servername)
|
print("" + ip + servername)
|
||||||
|
|
||||||
|
def create_windows_task(task_name, command, schedule):
|
||||||
|
try:
|
||||||
|
command_line = f'schtasks /F /create /ru "SYSTEM" /tn "{task_name}" /tr "{command}" /sc {schedule}'
|
||||||
|
subprocess.run(command_line, shell=True, check=True)
|
||||||
|
print(f"{filename}-Windows task '{task_name}' created successfully.")
|
||||||
|
except subprocess.CalledProcessError as e:
|
||||||
|
print(f"{filename}-Failed to create Windows task. Error: {e}")
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# query = "SELECT * FROM `Stines-GmbH`.`Kunden-Server` WHERE `IP-Adresse` = ""'{}'""".format(get_local_ip())
|
# query = "SELECT * FROM `Stines-GmbH`.`Kunden-Server` WHERE `IP-Adresse` = ""'{}'""".format(get_local_ip())
|
||||||
query = "SELECT * FROM `Stines-GmbH`.`Kunden-Server` WHERE `IP-Adresse` = ""'{}'""".format("172.19.1.3")
|
|
||||||
|
|
||||||
name = "Stines-GmbH"
|
query = "SELECT * FROM `Stines-GmbH`.`Kunden-Server` WHERE `IP-Adresse` = ""'{}'""".format("172.19.1.5")
|
||||||
list = mysql_connect.get_ip(query,name)
|
|
||||||
|
|
||||||
|
print(f"{filename}-Before Get List")
|
||||||
|
list = mysql_connect.get_ip(query)
|
||||||
|
print(f"{filename}-Atfer Get IP")
|
||||||
|
|
||||||
|
if list == []:
|
||||||
|
query_insert = f"INSERT INTO `Kunden-Server` (Name,`Server-Name`,`IP-Adresse`,Funktion,CPU,RAM,Speicher) VALUES ('unkown','{socket.gethostname()}','{get_local_ip()}','-','{system_info.get_cpu_info()}','{system_info.get_ram_info()}','{system_info.get_hdd_info()}')"
|
||||||
|
print(f"{filename}-List is Empty")
|
||||||
|
mysql_connect.add_user(query_insert,"Stines-GmbH","")
|
||||||
|
|
||||||
|
set_ipaddress = []
|
||||||
|
print(f"{filename}-Before Row")
|
||||||
# Ergebnisse durchlaufen und ausgeben
|
# Ergebnisse durchlaufen und ausgeben
|
||||||
for row in list:
|
for row in list:
|
||||||
print(row)
|
name = row[2]
|
||||||
name = row[1]
|
ipadress = row[4]
|
||||||
ipadress = row[3]
|
set_ipaddress = row[4]
|
||||||
lastchange = row[5]
|
lastchange = row[6]
|
||||||
funktion = row[6]
|
funktion = row[7]
|
||||||
token = row[7]
|
token = row[8]
|
||||||
|
print(f"{filename}-Inside Row {name}-{funktion}")
|
||||||
|
|
||||||
cursor = mysql_connect.get_database()
|
cursor = mysql_connect.get_database()
|
||||||
|
|
||||||
@@ -98,22 +115,35 @@ for row in list:
|
|||||||
|
|
||||||
database_exists = False
|
database_exists = False
|
||||||
for (db_name,) in cursor:
|
for (db_name,) in cursor:
|
||||||
if db_name == name:
|
if name in str(db_name):
|
||||||
|
database_exists = True
|
||||||
|
if "-" in str(db_name):
|
||||||
database_exists = True
|
database_exists = True
|
||||||
break
|
|
||||||
|
|
||||||
# Datenbank erstellen, wenn sie noch nicht existiert
|
# Datenbank erstellen, wenn sie noch nicht existiert
|
||||||
|
print(f"{filename}-{database_exists}")
|
||||||
if not database_exists:
|
if not database_exists:
|
||||||
create_database_query = f"CREATE DATABASE {name}"
|
create_database_query = f"CREATE DATABASE `{name}`"
|
||||||
mysql_connect.create_database(create_database_query)
|
mysql_connect.create_database(create_database_query,name)
|
||||||
print(f"Die Datenbank '{name}' wurde erfolgreich erstellt.")
|
print(f"{filename}-Die Datenbank '`{name}`' wurde erfolgreich erstellt.")
|
||||||
else:
|
else:
|
||||||
print(f"Die Datenbank '{name}' existiert bereits.")
|
print(f"{filename}-Die Datenbank '`{name}`' existiert bereits.")
|
||||||
|
|
||||||
try:
|
if token is not None:
|
||||||
if token is not None:
|
eval(funktion + '("' + ipadress + '","' + name + '","' + token + '")')
|
||||||
eval(funktion + '("' + ipadress + '","' + name + '","' + token + '")')
|
else:
|
||||||
|
if funktion == "-":
|
||||||
|
break
|
||||||
else:
|
else:
|
||||||
eval(funktion + '("' + ipadress + '","' + name + '")')
|
eval(funktion + '("' + ipadress + '","' + name + '")')
|
||||||
except NameError:
|
|
||||||
print("Die Funktion existiert nicht.")
|
print(f"{filename}-FOR system_info_get: {set_ipaddress}")
|
||||||
|
system_info.set_system_info(f"{set_ipaddress}")
|
||||||
|
|
||||||
|
task_name = "Reports"
|
||||||
|
command_to_execute = "C:\\Scripte\\Start.exe"
|
||||||
|
schedule = f"daily /st 23:{random.randint(0, 59)}" # You can customize the schedule here
|
||||||
|
|
||||||
|
create_windows_task(task_name, command_to_execute, schedule)
|
||||||
|
|
||||||
|
ssh_tunnel.server_stop()
|
||||||
@@ -1,44 +0,0 @@
|
|||||||
# -*- mode: python ; coding: utf-8 -*-
|
|
||||||
|
|
||||||
|
|
||||||
block_cipher = None
|
|
||||||
|
|
||||||
|
|
||||||
a = Analysis(
|
|
||||||
['main.py'],
|
|
||||||
pathex=[],
|
|
||||||
binaries=[],
|
|
||||||
datas=[],
|
|
||||||
hiddenimports=[],
|
|
||||||
hookspath=[],
|
|
||||||
hooksconfig={},
|
|
||||||
runtime_hooks=[],
|
|
||||||
excludes=[],
|
|
||||||
win_no_prefer_redirects=False,
|
|
||||||
win_private_assemblies=False,
|
|
||||||
cipher=block_cipher,
|
|
||||||
noarchive=False,
|
|
||||||
)
|
|
||||||
pyz = PYZ(a.pure, a.zipped_data, cipher=block_cipher)
|
|
||||||
|
|
||||||
exe = EXE(
|
|
||||||
pyz,
|
|
||||||
a.scripts,
|
|
||||||
a.binaries,
|
|
||||||
a.zipfiles,
|
|
||||||
a.datas,
|
|
||||||
[],
|
|
||||||
name='main',
|
|
||||||
debug=False,
|
|
||||||
bootloader_ignore_signals=False,
|
|
||||||
strip=False,
|
|
||||||
upx=True,
|
|
||||||
upx_exclude=[],
|
|
||||||
runtime_tmpdir=None,
|
|
||||||
console=True,
|
|
||||||
disable_windowed_traceback=False,
|
|
||||||
argv_emulation=False,
|
|
||||||
target_arch=None,
|
|
||||||
codesign_identity=None,
|
|
||||||
entitlements_file=None,
|
|
||||||
)
|
|
||||||
@@ -1,67 +0,0 @@
|
|||||||
import mysql.connector
|
|
||||||
import mysql.connector.locales.eng.client_error
|
|
||||||
from sshtunnel import SSHTunnelForwarder
|
|
||||||
|
|
||||||
server = SSHTunnelForwarder(
|
|
||||||
('forward.stines.de', 2223),
|
|
||||||
ssh_username="root",
|
|
||||||
ssh_password="adm.3dfx12",
|
|
||||||
remote_bind_address=('127.0.0.1', 3306)
|
|
||||||
)
|
|
||||||
def database(query,name,user):
|
|
||||||
server.start()
|
|
||||||
mydb = mysql.connector.connect(
|
|
||||||
host="127.0.0.1",
|
|
||||||
port=server.local_bind_port,
|
|
||||||
user="root",
|
|
||||||
password="N53yBCswuawzBzS445VNAhWVMs3N59Gb9szEsrzXRBzarDqpdETpQeyt5v5CGe",
|
|
||||||
database="" + name
|
|
||||||
)
|
|
||||||
mydb.connect()
|
|
||||||
cursor = mydb.cursor()
|
|
||||||
if user:
|
|
||||||
if "SELECT" in query:
|
|
||||||
cursor.execute(query,user)
|
|
||||||
return cursor.fetchone()
|
|
||||||
|
|
||||||
else:
|
|
||||||
cursor.execute(query,user)
|
|
||||||
else:
|
|
||||||
cursor.execute(query)
|
|
||||||
if "INSERT" in query:
|
|
||||||
mydb.commit()
|
|
||||||
if "SELECT" in query:
|
|
||||||
return cursor.fetchall()
|
|
||||||
if "SHOW" in query:
|
|
||||||
return cursor.fetchall()
|
|
||||||
mydb.close()
|
|
||||||
server.stop()
|
|
||||||
def get_ip(query,name):
|
|
||||||
print("GetIP")
|
|
||||||
user = ""
|
|
||||||
return database(query, name,user)
|
|
||||||
def get_database():
|
|
||||||
name = ""
|
|
||||||
user = ""
|
|
||||||
query = 'SHOW DATABASES'
|
|
||||||
print(database(query,name,user))
|
|
||||||
return database(query,name,user)
|
|
||||||
def create_database(query,name):
|
|
||||||
try:
|
|
||||||
user = ""
|
|
||||||
database(query,name,user)
|
|
||||||
return ("Database Created")
|
|
||||||
except Exception as e:
|
|
||||||
print("Ein Fehler ist aufgetreten:", str(e))
|
|
||||||
def add_user(query,name,user):
|
|
||||||
try:
|
|
||||||
database(query,name,user)
|
|
||||||
return ("User addet")
|
|
||||||
except Exception as e:
|
|
||||||
print("Ein Fehler ist aufgetreten:", str(e))
|
|
||||||
|
|
||||||
def get_user(query,name,user):
|
|
||||||
try:
|
|
||||||
return database(query,name,user)
|
|
||||||
except Exception as e:
|
|
||||||
print("Ein Fehler ist aufgetreten:", str(e))
|
|
||||||
Binary file not shown.
@@ -0,0 +1,34 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
## Ordner anlegen
|
||||||
|
mkdir /root/REPORTS
|
||||||
|
cd /root/REPORTS
|
||||||
|
|
||||||
|
## APT UPDATE
|
||||||
|
apt update
|
||||||
|
apt install python3-pip git -y
|
||||||
|
|
||||||
|
## Add Crontab
|
||||||
|
if [ -f ".crontab" ]; then
|
||||||
|
echo "Gibt es"
|
||||||
|
next
|
||||||
|
else
|
||||||
|
crontab -l | { cat; echo "30 0 * * * /root/REPORTS/setup-info.sh"; } | crontab -
|
||||||
|
echo "Gibt es nicht"
|
||||||
|
touch ".crontab"
|
||||||
|
fi
|
||||||
|
|
||||||
|
## Add GIT
|
||||||
|
git init
|
||||||
|
git remote add orgin https://gitlab.stines.de/sebastian.serfling/REPORTS.git
|
||||||
|
git fetch
|
||||||
|
git pull orgin main
|
||||||
|
|
||||||
|
## Install Python
|
||||||
|
python3 -m pip install virtualenv
|
||||||
|
python3 -m virtualenv venv
|
||||||
|
source venv/bin/activate
|
||||||
|
python3 -m pip install -r packages.txt
|
||||||
|
python3 -m pip uninstall mysql-connector -y ## Fix for Connection Issue
|
||||||
|
python3 -m pip install mysql-connector ## Fix for Connection Issue
|
||||||
|
python3 main.py
|
||||||
|
deactivate
|
||||||
@@ -1,12 +0,0 @@
|
|||||||
from setuptools import setup
|
|
||||||
|
|
||||||
setup(
|
|
||||||
name='server-info',
|
|
||||||
version='',
|
|
||||||
packages=[''],
|
|
||||||
url='',
|
|
||||||
license='',
|
|
||||||
author='Sebastian Serfling',
|
|
||||||
author_email='',
|
|
||||||
description=''
|
|
||||||
)
|
|
||||||
@@ -1,46 +0,0 @@
|
|||||||
"AccountExpirationDate","accountExpires","AccountLockoutTime","AccountNotDelegated","adminCount","AllowReversiblePasswordEncryption","AuthenticationPolicy","AuthenticationPolicySilo","BadLogonCount","badPasswordTime","badPwdCount","CannotChangePassword","CanonicalName","Certificates","City","CN","codePage","Company","CompoundIdentitySupported","Country","countryCode","Created","createTimeStamp","Deleted","Department","Description","DisplayName","DistinguishedName","Division","DoesNotRequirePreAuth","dSCorePropagationData","EmailAddress","EmployeeID","EmployeeNumber","Enabled","Fax","GivenName","HomeDirectory","HomedirRequired","HomeDrive","HomePage","HomePhone","Initials","instanceType","isCriticalSystemObject","isDeleted","KerberosEncryptionType","LastBadPasswordAttempt","LastKnownParent","lastLogoff","lastLogon","LastLogonDate","lastLogonTimestamp","LockedOut","lockoutTime","logonCount","LogonWorkstations","Manager","MemberOf","MNSLogonAccount","MobilePhone","Modified","modifyTimeStamp","msDS-User-Account-Control-Computed","Name","nTSecurityDescriptor","ObjectCategory","ObjectClass","ObjectGUID","objectSid","Office","OfficePhone","Organization","OtherName","PasswordExpired","PasswordLastSet","PasswordNeverExpires","PasswordNotRequired","POBox","PostalCode","PrimaryGroup","primaryGroupID","PrincipalsAllowedToDelegateToAccount","ProfilePath","ProtectedFromAccidentalDeletion","pwdLastSet","SamAccountName","sAMAccountType","ScriptPath","sDRightsEffective","ServicePrincipalNames","SID","SIDHistory","SmartcardLogonRequired","State","StreetAddress","Surname","Title","TrustedForDelegation","TrustedToAuthForDelegation","UseDESKeyOnly","userAccountControl","userCertificate","UserPrincipalName","uSNChanged","uSNCreated","whenChanged","whenCreated"
|
|
||||||
,"9223372036854775807",,"False","1","False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","133347733240344571","0","False","jaehler.com/Users/Administrator","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"Administrator","0",,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","19.04.2023 15:26:05","19.04.2023 15:26:05",,,"Vordefiniertes Konto für die Verwaltung des Computers bzw. der Domäne",,"CN=Administrator,CN=Users,DC=jaehler,DC=com",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,,"True",,,,"False",,,,,"4","True",,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","25.07.2023 17:42:04",,"0","133349259914337424","27.07.2023 12:06:30","133349259902416676","False","0","240",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"27.07.2023 12:06:30","27.07.2023 12:06:30","0","Administrator","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=jaehler,DC=com","user","dea3cd1a-9856-4071-9031-bf8df7ca4cb8","S-1-5-21-3459449358-1630706413-1848230301-500",,,,,"False","21.06.2023 11:05:45","True","False",,,"CN=Domänen-Benutzer,CN=Users,DC=jaehler,DC=com","513","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","133318119453487283","Administrator","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-3459449358-1630706413-1848230301-500","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,,,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"387497","8196","27.07.2023 12:06:30","19.04.2023 15:26:05"
|
|
||||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","0","0","False","jaehler.com/Users/Gast","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"Gast","0",,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","19.04.2023 15:26:05","19.04.2023 15:26:05",,,"Vordefiniertes Konto für Gastzugriff auf den Computer bzw. die Domäne",,"CN=Gast,CN=Users,DC=jaehler,DC=com",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,,"False",,,,"False",,,,,"4","True",,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,"0","0",,,"False",,"0",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"19.04.2023 15:26:05","19.04.2023 15:26:05","0","Gast","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=jaehler,DC=com","user","78d83bb3-e0f3-4a64-94a5-811de21789a2","S-1-5-21-3459449358-1630706413-1848230301-501",,,,,"False",,"True","True",,,"CN=Domänen-Gäste,CN=Users,DC=jaehler,DC=com","514","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","0","Gast","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-3459449358-1630706413-1848230301-501","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,,,"False","False","False","66082","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"8197","8197","19.04.2023 15:26:05","19.04.2023 15:26:05"
|
|
||||||
,"9223372036854775807",,"False","1","False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","0","0","False","jaehler.com/Users/krbtgt","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"krbtgt","0",,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","19.04.2023 15:27:10","19.04.2023 15:27:10",,,"Dienstkonto des Schlüsselverteilungscenters",,"CN=krbtgt,CN=Users,DC=jaehler,DC=com",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,,"False",,,,"False",,,,,"4","True",,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,"0","0",,,"False",,"0",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"19.04.2023 13:58:56","19.04.2023 13:58:56","8388608","krbtgt","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=jaehler,DC=com","user","43835dc0-eb31-4d72-b61e-a69a26032aa2","S-1-5-21-3459449358-1630706413-1848230301-502",,,,,"True","19.04.2023 15:27:10","False","False",,,"CN=Domänen-Benutzer,CN=Users,DC=jaehler,DC=com","513","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","133263844306144986","krbtgt","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-3459449358-1630706413-1848230301-502","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,,,"False","False","False","514","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"16489","12324","19.04.2023 13:58:56","19.04.2023 15:27:10"
|
|
||||||
,"9223372036854775807",,"False","1","False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","133347370043616647","0","False","jaehler.com/Administration/RDP Admin","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"RDP Admin","0",,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","19.04.2023 15:35:06","19.04.2023 15:35:06",,,"RDP Admin","RDP Admin","CN=RDP Admin,OU=Administration,DC=jaehler,DC=com",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","support@stines.de",,,"True",,"RDP",,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","25.07.2023 07:36:44",,"0","133349256014270689","17.07.2023 14:59:29","133340723699287496","False",,"1362",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"17.07.2023 14:59:29","17.07.2023 14:59:29","0","RDP Admin","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=jaehler,DC=com","user","3959b56d-ae3b-45db-89d6-76b72534f82b","S-1-5-21-3459449358-1630706413-1848230301-1103",,,,,"False","03.07.2023 15:46:17","True","False",,,"CN=Domänen-Admins,CN=Users,DC=jaehler,DC=com","512","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","133328655773012176","rdpadmin","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-3459449358-1630706413-1848230301-1103","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,"Admin",,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","rdpadmin@jaehler.com","378339","12598","17.07.2023 14:59:29","19.04.2023 15:35:06"
|
|
||||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","133326226652388063","0","True","jaehler.com/Benutzer/Karsten Stöcker","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"Karsten Stöcker","0","Jähler GmbH","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","19.04.2023 15:35:44","19.04.2023 15:35:44",,,,"Karsten Stöcker","CN=Karsten Stöcker,OU=Benutzer,DC=jaehler,DC=com",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,,"True",,"Karsten",,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","30.06.2023 20:17:45",,"0","133330232098362090","05.07.2023 11:33:29","133330232098362090","False",,"21",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"05.07.2023 11:33:29","05.07.2023 11:33:29","0","Karsten Stöcker","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=jaehler,DC=com","user","d0d9786a-3d4d-462b-b729-19cc4e1b8835","S-1-5-21-3459449358-1630706413-1848230301-1104",,,,,"False","19.04.2023 15:35:44","True","False",,,"CN=Domänen-Benutzer,CN=Users,DC=jaehler,DC=com","513","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","133263849443103449","karsten.stoecker","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-3459449358-1630706413-1848230301-1104","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,"Stöcker",,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","karsten.stoecker@jaehler.com","365558","12606","05.07.2023 11:33:29","19.04.2023 15:35:44"
|
|
||||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","0","0","False","jaehler.com/Administration/Cloud Admin","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"Cloud Admin","0",,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","24.04.2023 10:41:34","24.04.2023 10:41:34",,,,"Cloud Admin","CN=Cloud Admin,OU=Administration,DC=jaehler,DC=com",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,,"True",,"Cloud",,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,"0","0","24.04.2023 10:42:01","133267993219031298","False",,"0",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"30.04.2023 09:33:55","30.04.2023 09:33:55","0","Cloud Admin","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=jaehler,DC=com","user","e126dd7c-c790-48c0-ba8f-c104097764c4","S-1-5-21-3459449358-1630706413-1848230301-1119",,,,,"False","24.04.2023 10:41:34","True","False",,,"CN=Domänen-Benutzer,CN=Users,DC=jaehler,DC=com","513","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","133267992943874994","cloudadmin","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-3459449358-1630706413-1848230301-1119","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,"Admin",,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","cloudadmin@jaehler.com","45537","25395","30.04.2023 09:33:55","24.04.2023 10:41:34"
|
|
||||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","133342188174360727","0","True","jaehler.com/Benutzer/Holger Müller","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Gera","Holger Müller","0","Jähler GmbH","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","24.04.2023 11:11:47","24.04.2023 11:11:47",,,"RDS-User","Holger Müller","CN=Holger Müller,OU=Benutzer,DC=jaehler,DC=com",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","holger.mueller@jaehler.com",,,"True",,"Holger",,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","19.07.2023 07:40:17",,"0","133349093867327372","27.07.2023 07:28:46","133349093267873863","False",,"191",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"27.07.2023 07:28:46","27.07.2023 07:28:46","0","Holger Müller","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=jaehler,DC=com","user","37839e91-2a94-4efa-8085-eadddec593fb","S-1-5-21-3459449358-1630706413-1848230301-1190",,,,,"False","30.04.2023 23:57:29","True","False",,,"CN=G-RDP-User,OU=Gruppen,DC=jaehler,DC=com","1271","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","133273654499753261","holger.mueller","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-3459449358-1630706413-1848230301-1190","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,"Müller",,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","holger.mueller@jaehler.com","387179","28694","27.07.2023 07:28:46","24.04.2023 11:11:47"
|
|
||||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","22","133349259256165286","22","True","jaehler.com/Benutzer/Katrin Jähler","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Altenburg/Schmölln","Katrin Jähler","0","Jähler GmbH","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","24.04.2023 11:11:47","24.04.2023 11:11:47",,,"RDS-User","Katrin Jähler","CN=Katrin Jähler,OU=Benutzer,DC=jaehler,DC=com",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","katrin.jaehler@jaehler.com",,,"True",,"Katrin",,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","27.07.2023 12:05:25",,"0","133349195507762326","17.07.2023 11:24:18","133340594581244730","False",,"230",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"17.07.2023 11:24:18","17.07.2023 11:24:18","0","Katrin Jähler","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=jaehler,DC=com","user","19484c55-8183-42ed-a67c-f80c5909f952","S-1-5-21-3459449358-1630706413-1848230301-1191",,,,,"False","30.04.2023 23:57:37","True","False",,,"CN=G-RDP-User,OU=Gruppen,DC=jaehler,DC=com","1271","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","133273654575065768","katrin.jaehler","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-3459449358-1630706413-1848230301-1191","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,"Jähler",,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","katrin.jaehler@jaehler.com","378179","28700","17.07.2023 11:24:18","24.04.2023 11:11:47"
|
|
||||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","9","133326224809759274","9","True","jaehler.com/Benutzer/Florian Stöcker","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Gera/Leipzig","Florian Stöcker","0","Jähler GmbH","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","24.04.2023 11:11:47","24.04.2023 11:11:47",,,"RDS-User","Florian Stöcker","CN=Florian Stöcker,OU=Benutzer,DC=jaehler,DC=com",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","florian.stoecker@jaehler.com",,,"True",,"Florian",,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","30.06.2023 20:14:40",,"0","0","02.05.2023 22:05:04","133275315044604828","False",,"0",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"19.06.2023 17:22:07","19.06.2023 17:22:07","0","Florian Stöcker","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=jaehler,DC=com","user","e3233c23-bd4a-40b3-9f27-2afc81d47bcd","S-1-5-21-3459449358-1630706413-1848230301-1192",,,,,"False","30.04.2023 23:57:48","True","False",,,"CN=G-Gera,OU=Gruppen,DC=jaehler,DC=com","1108","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","133273654682097028","florian.stoecker","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-3459449358-1630706413-1848230301-1192","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,"Stöcker",,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","florian.stoecker@jaehler.com","105870","28706","19.06.2023 17:22:07","24.04.2023 11:11:47"
|
|
||||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","133347450265359555","0","True","jaehler.com/Benutzer/Marc Philipp","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Gera","Marc Philipp","0","Jähler GmbH","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","24.04.2023 11:11:47","24.04.2023 11:11:47",,,"RDS-User","Marc Philipp","CN=Marc Philipp,OU=Benutzer,DC=jaehler,DC=com",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","marc.philipp@jaehler.com",,,"True",,"Marc",,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","25.07.2023 09:50:26",,"0","133349200911389445","24.07.2023 07:11:36","133346490965453426","False",,"138",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"24.07.2023 07:11:36","24.07.2023 07:11:36","0","Marc Philipp","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=jaehler,DC=com","user","e2b419fe-ecea-4d03-8e5c-41e482ae3539","S-1-5-21-3459449358-1630706413-1848230301-1193",,,,,"False","30.04.2023 23:58:58","True","False",,,"CN=G-RDP-User,OU=Gruppen,DC=jaehler,DC=com","1271","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","133273655384128413","marc.philipp","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-3459449358-1630706413-1848230301-1193","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,"Philipp",,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","marc.philipp@jaehler.com","383843","28712","24.07.2023 07:11:36","24.04.2023 11:11:47"
|
|
||||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","133346720479661802","0","True","jaehler.com/Benutzer/Katrin Haack","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Gera","Katrin Haack","0","Jähler GmbH","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","24.04.2023 11:11:47","24.04.2023 11:11:47",,,"RDS-User","Katrin Haack","CN=Katrin Haack,OU=Benutzer,DC=jaehler,DC=com",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","katrin.haack@jaehler.com",,,"True",,"Katrin",,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","24.07.2023 13:34:07",,"0","133349173291235208","21.07.2023 16:07:45","133344220659923202","False",,"112",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"21.07.2023 16:07:45","21.07.2023 16:07:45","0","Katrin Haack","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=jaehler,DC=com","user","39a9eefb-cbd7-4ba8-9c17-88afa0b3445a","S-1-5-21-3459449358-1630706413-1848230301-1194",,,,,"False","30.04.2023 23:58:45","True","False",,,"CN=G-RDP-User,OU=Gruppen,DC=jaehler,DC=com","1271","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","133273655253503495","katrin.haack","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-3459449358-1630706413-1848230301-1194","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,"Haack",,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","katrin.haack@jaehler.com","382384","28718","21.07.2023 16:07:45","24.04.2023 11:11:47"
|
|
||||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","7","133326229310315034","7","True","jaehler.com/Deaktivierte Benutzer/Katrin Wesser","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Gera","Katrin Wesser","0","Jähler GmbH","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","24.04.2023 11:11:47","24.04.2023 11:11:47",,,"RDS-User (deaktiviert wegen Krankheit)","Katrin Wesser","CN=Katrin Wesser,OU=Deaktivierte Benutzer,DC=jaehler,DC=com",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","katrin.wesser@jaehler.com",,,"False",,"Katrin",,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","30.06.2023 20:22:11",,"0","0",,,"False",,"0",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"20.06.2023 12:25:53","20.06.2023 12:25:53","0","Katrin Wesser","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=jaehler,DC=com","user","beab8e57-9bde-47b0-8a1b-67297648d1e1","S-1-5-21-3459449358-1630706413-1848230301-1195",,,,,"False","01.05.2023 15:31:55","True","False",,,"CN=G-RDP-User,OU=Gruppen,DC=jaehler,DC=com","1271","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","133274215153572753","katrin.wesser","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-3459449358-1630706413-1848230301-1195","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,"Wesser",,"False","False","False","66050","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","katrin.wesser@jaehler.com","106613","28724","20.06.2023 12:25:53","24.04.2023 11:11:47"
|
|
||||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","133326233763384244","0","True","jaehler.com/Benutzer/Steven Winkler","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Altenburg","Steven Winkler","0","Jähler GmbH","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","24.04.2023 11:11:47","24.04.2023 11:11:47",,,"RDS-User","Steven Winkler","CN=Steven Winkler,OU=Benutzer,DC=jaehler,DC=com",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","steven.winkler@jaehler.com",,,"True",,"Steven",,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","30.06.2023 20:29:36",,"0","133349064462746301","24.07.2023 06:49:25","133346477659335372","False",,"150",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"24.07.2023 06:49:25","24.07.2023 06:49:25","0","Steven Winkler","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=jaehler,DC=com","user","a3e9fcd7-554d-4b0b-8489-5067b79520e5","S-1-5-21-3459449358-1630706413-1848230301-1196",,,,,"False","30.04.2023 23:58:08","True","False",,,"CN=G-RDP-User,OU=Gruppen,DC=jaehler,DC=com","1271","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","133273654887096981","steven.winkler","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-3459449358-1630706413-1848230301-1196","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,"Winkler",,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","steven.winkler@jaehler.com","383804","28730","24.07.2023 06:49:25","24.04.2023 11:11:47"
|
|
||||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","133343102944564975","0","True","jaehler.com/Benutzer/Birgit Schleif","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Altenburg","Birgit Schleif","0","Jähler GmbH","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","24.04.2023 11:11:47","24.04.2023 11:11:47",,,"RDS-User","Birgit Schleif","CN=Birgit Schleif,OU=Benutzer,DC=jaehler,DC=com",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","birgit.schleif@jaehler.com",,,"True",,"Birgit",,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","20.07.2023 09:04:54",,"0","133349213785316617","27.07.2023 10:41:54","133349209142144067","False","0","88",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"27.07.2023 10:41:54","27.07.2023 10:41:54","0","Birgit Schleif","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=jaehler,DC=com","user","b1d947b1-f8fe-4872-8db0-e707e3dc2bab","S-1-5-21-3459449358-1630706413-1848230301-1197",,,,,"False","30.04.2023 23:58:16","True","False",,,"CN=G-RDP-User,OU=Gruppen,DC=jaehler,DC=com","1271","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","133273654964910439","birgit.schleif","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-3459449358-1630706413-1848230301-1197","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,"Schleif",,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","birgit.schleif@jaehler.com","387408","28736","27.07.2023 10:41:54","24.04.2023 11:11:47"
|
|
||||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","133340447152238912","0","True","jaehler.com/Benutzer/Jana Wunderlich","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Altenburg","Jana Wunderlich","0","Jähler GmbH","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","24.04.2023 11:11:47","24.04.2023 11:11:47",,,"RDS-User","Jana Wunderlich","CN=Jana Wunderlich,OU=Benutzer,DC=jaehler,DC=com",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","jana.wunderlich@jaehler.com",,,"True",,"Jana",,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","17.07.2023 07:18:35",,"0","133349065203282035","24.07.2023 06:40:34","133346472345789381","False","0","115",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"24.07.2023 06:40:34","24.07.2023 06:40:34","0","Jana Wunderlich","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=jaehler,DC=com","user","1da746db-c38e-471f-a5ae-7aef22596f9a","S-1-5-21-3459449358-1630706413-1848230301-1198",,,,,"False","02.05.2023 07:40:06","True","False",,,"CN=G-RDP-User,OU=Gruppen,DC=jaehler,DC=com","1271","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","133274796062711511","jana.wunderlich","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-3459449358-1630706413-1848230301-1198","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,"Wunderlich",,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","jana.wunderlich@jaehler.com","383801","28742","24.07.2023 06:40:34","24.04.2023 11:11:47"
|
|
||||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","133342186055843529","0","True","jaehler.com/Benutzer/Enrico Mäser","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Altenburg","Enrico Mäser","0","Jähler GmbH","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","24.04.2023 11:11:47","24.04.2023 11:11:47",,,"RDS-User","Enrico Mäser","CN=Enrico Mäser,OU=Benutzer,DC=jaehler,DC=com",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","enrico.maeser@jaehler.com",,,"True",,"Enrico",,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","19.07.2023 07:36:45",,"0","133349064972019761","24.07.2023 06:40:10","133346472107379944","False",,"109",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"24.07.2023 06:40:10","24.07.2023 06:40:10","0","Enrico Mäser","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=jaehler,DC=com","user","41c45ba4-5576-4873-8295-b749841d60b2","S-1-5-21-3459449358-1630706413-1848230301-1199",,,,,"False","30.04.2023 23:58:00","True","False",,,"CN=G-RDP-User,OU=Gruppen,DC=jaehler,DC=com","1271","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","133273654804597491","enrico.maeser","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-3459449358-1630706413-1848230301-1199","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,"Mäser",,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","enrico.maeser@jaehler.com","383799","28748","24.07.2023 06:40:10","24.04.2023 11:11:47"
|
|
||||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","133328420801722215","0","True","jaehler.com/Benutzer/Uwe Pohle","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Altenburg","Uwe Pohle","0","Jähler GmbH","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","24.04.2023 11:11:47","24.04.2023 11:11:47",,,"RDS-User","Uwe Pohle","CN=Uwe Pohle,OU=Benutzer,DC=jaehler,DC=com",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","uwe.pohle@jaehler.com",,,"True",,"Uwe",,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","03.07.2023 09:14:40",,"0","133349150008534055","27.07.2023 10:16:22","133349193825413917","False",,"75",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"27.07.2023 10:16:22","27.07.2023 10:16:22","0","Uwe Pohle","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=jaehler,DC=com","user","f633df0c-6999-4543-bc47-7710166448c9","S-1-5-21-3459449358-1630706413-1848230301-1200",,,,,"False","30.04.2023 23:59:35","True","False",,,"CN=G-RDP-User,OU=Gruppen,DC=jaehler,DC=com","1271","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","133273655750691071","uwe.pohle","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-3459449358-1630706413-1848230301-1200","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,"Pohle",,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","uwe.pohle@jaehler.com","387376","28754","27.07.2023 10:16:22","24.04.2023 11:11:47"
|
|
||||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","133347565370083686","0","True","jaehler.com/Benutzer/Peggy Eibisch","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Schmölln","Peggy Eibisch","0","Jähler GmbH","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","24.04.2023 11:11:47","24.04.2023 11:11:47",,,"RDS-User","Peggy Eibisch","CN=Peggy Eibisch,OU=Benutzer,DC=jaehler,DC=com",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","peggy.eibisch@jaehler.com",,,"True",,"Peggy",,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","25.07.2023 13:02:17",,"0","133349090417168337","24.07.2023 07:14:57","133346492974218980","False",,"191",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"24.07.2023 07:14:57","24.07.2023 07:14:57","0","Peggy Eibisch","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=jaehler,DC=com","user","989f5658-5638-41fd-b470-5420ca5d549d","S-1-5-21-3459449358-1630706413-1848230301-1201",,,,,"False","30.04.2023 23:59:15","True","False",,,"CN=G-RDP-User,OU=Gruppen,DC=jaehler,DC=com","1271","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","133273655554753537","peggy.eibisch","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-3459449358-1630706413-1848230301-1201","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,"Eibisch",,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","peggy.eibisch@jaehler.com","383855","28760","24.07.2023 07:14:57","24.04.2023 11:11:47"
|
|
||||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","133347403903100174","0","True","jaehler.com/Benutzer/Beate Flieger","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Schmölln","Beate Flieger","0","Jähler GmbH","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","24.04.2023 11:11:48","24.04.2023 11:11:48",,,"RDS-User","Beate Flieger","CN=Beate Flieger,OU=Benutzer,DC=jaehler,DC=com",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","beate.flieger@jaehler.com",,,"True",,"Beate",,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","25.07.2023 08:33:10",,"0","133349075664398152","17.07.2023 07:12:59","133340443790829738","False","0","213",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"17.07.2023 07:12:59","17.07.2023 07:12:59","0","Beate Flieger","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=jaehler,DC=com","user","51bfbb88-5c2c-4119-bef1-94956c012407","S-1-5-21-3459449358-1630706413-1848230301-1202",,,,,"False","01.05.2023 15:32:53","True","False",,,"CN=G-RDP-User,OU=Gruppen,DC=jaehler,DC=com","1271","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","133274215736228974","beate.flieger","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-3459449358-1630706413-1848230301-1202","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,"Flieger",,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","beate.flieger@jaehler.com","377854","28766","17.07.2023 07:12:59","24.04.2023 11:11:48"
|
|
||||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","133337863360559446","0","True","jaehler.com/Benutzer/Ralf Zimny","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Schmölln","Ralf Zimny","0","Jähler GmbH","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","24.04.2023 11:11:48","24.04.2023 11:11:48",,,"RDS-User","Ralf Zimny","CN=Ralf Zimny,OU=Benutzer,DC=jaehler,DC=com",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","ralf.zimny@jaehler.com",,,"True",,"Ralf",,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","14.07.2023 07:32:16",,"0","133349108789171999","24.07.2023 08:09:22","133346525626011746","False",,"137",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"24.07.2023 08:09:22","24.07.2023 08:09:22","0","Ralf Zimny","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=jaehler,DC=com","user","27454109-b419-4067-aef6-7612888e5948","S-1-5-21-3459449358-1630706413-1848230301-1203",,,,,"False","30.04.2023 23:59:07","True","False",,,"CN=G-RDP-User,OU=Gruppen,DC=jaehler,DC=com","1271","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","133273655473972295","ralf.zimny","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-3459449358-1630706413-1848230301-1203","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,"Zimny",,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","ralf.zimny@jaehler.com","383914","28772","24.07.2023 08:09:22","24.04.2023 11:11:48"
|
|
||||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","133343199489990541","0","False","jaehler.com/Workstations/generalworkstation","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"generalworkstation","0",,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","29.04.2023 14:36:02","29.04.2023 14:36:02",,,,"generalworkstation","CN=generalworkstation,OU=Workstations,DC=jaehler,DC=com",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,,"True",,"generalworkstation",,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","20.07.2023 11:45:48",,"0","133349171920854759","19.07.2023 08:55:48","133342233482177942","False","0","1293",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"19.07.2023 08:55:48","19.07.2023 08:55:48","0","generalworkstation","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=jaehler,DC=com","user","461f3181-0659-443f-bac7-cfe6a1ec4221","S-1-5-21-3459449358-1630706413-1848230301-1210",,,,,"False","29.04.2023 19:36:35","True","False",,,"CN=G-Workstation,OU=Gruppen,DC=jaehler,DC=com","1211","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","133272633951755460","generalworkstation","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-3459449358-1630706413-1848230301-1210","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,,,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","generalworkstation@jaehler.com","379996","42617","19.07.2023 08:55:48","29.04.2023 14:36:02"
|
|
||||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","133347448642529591","0","True","jaehler.com/Scanner-Workstations/abg.scannerworkstation","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"abg.scannerworkstation","0",,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","29.04.2023 19:16:15","29.04.2023 19:16:15",,,,"abg.scannerworkstation","CN=abg.scannerworkstation,OU=Scanner-Workstations,DC=jaehler,DC=com",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,,"True",,"abg.scannerworkstation",,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","25.07.2023 09:47:44",,"0","133349213168504143","20.07.2023 06:38:14","133343014940506949","False","0","466",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"20.07.2023 06:38:14","20.07.2023 06:38:14","0","abg.scannerworkstation","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=jaehler,DC=com","user","87f435ab-be3e-4640-bd07-732c27006dc0","S-1-5-21-3459449358-1630706413-1848230301-1216",,,,,"False","30.05.2023 10:50:58","True","False",,,"CN=Domänen-Benutzer,CN=Users,DC=jaehler,DC=com","513","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","133299102585045237","abg.scannerworkstati","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-3459449358-1630706413-1848230301-1216","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,,,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","abg.scannerworkstation@jaehler.com","380754","43180","20.07.2023 06:38:14","29.04.2023 19:16:15"
|
|
||||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","133273488477366379","0","True","jaehler.com/Scanner-Workstations/g.scannerworkstation","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"g.scannerworkstation","0",,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","29.04.2023 19:16:28","29.04.2023 19:16:28",,,,"g.scannerworkstation","CN=g.scannerworkstation,OU=Scanner-Workstations,DC=jaehler,DC=com",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,,"True",,"g.scannerworkstation",,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","30.04.2023 19:20:47",,"0","133349077926845485","24.07.2023 08:43:19","133346545990346657","False",,"178",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"24.07.2023 08:43:19","24.07.2023 08:43:19","0","g.scannerworkstation","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=jaehler,DC=com","user","b3fd621f-2955-403c-947a-5a972878deab","S-1-5-21-3459449358-1630706413-1848230301-1217",,,,,"False","30.04.2023 19:21:13","True","False",,,"CN=Domänen-Benutzer,CN=Users,DC=jaehler,DC=com","513","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","133273488732366068","g.scannerworkstation","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-3459449358-1630706413-1848230301-1217","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,,,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","g.scannerworkstation@jaehler.com","383945","43188","24.07.2023 08:43:19","29.04.2023 19:16:28"
|
|
||||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","133348222022402801","0","True","jaehler.com/Scanner-Workstations/sln.scannerworkstation","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"sln.scannerworkstation","0",,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","29.04.2023 19:19:19","29.04.2023 19:19:19",,,,"sln.scannerworkstation","CN=sln.scannerworkstation,OU=Scanner-Workstations,DC=jaehler,DC=com",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,,"True",,"sln.scannerworkstation",,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","26.07.2023 07:16:42",,"0","133349088728993671","24.07.2023 07:14:05","133346492459256594","False",,"84",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"24.07.2023 07:14:05","24.07.2023 07:14:05","0","sln.scannerworkstation","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=jaehler,DC=com","user","be195382-a239-4b42-906d-1e0cd342c90e","S-1-5-21-3459449358-1630706413-1848230301-1218",,,,,"False","01.05.2023 11:13:08","True","False",,,"CN=Domänen-Benutzer,CN=Users,DC=jaehler,DC=com","513","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","133274059886040996","sln.scannerworkstati","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-3459449358-1630706413-1848230301-1218","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,,,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","sln.scannerworkstation@jaehler.com","383851","43200","24.07.2023 07:14:05","29.04.2023 19:19:19"
|
|
||||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","0","0","True","jaehler.com/Diagstation/Gera/g.kia.diag01","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"g.kia.diag01","0",,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","30.04.2023 18:42:36","30.04.2023 18:42:36",,,,"g.kia.diag01","CN=g.kia.diag01,OU=Gera,OU=Diagstation,DC=jaehler,DC=com",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,,"True",,"g.kia.diag01",,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,"0","0","03.05.2023 16:22:46","133275973664552134","False",,"0",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"03.05.2023 16:22:46","03.05.2023 16:22:46","0","g.kia.diag01","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=jaehler,DC=com","user","e63c42ab-43a9-4d59-9783-68783a18b18e","S-1-5-21-3459449358-1630706413-1848230301-1235",,,,,"False","30.04.2023 18:42:36","True","False",,,"CN=Domänen-Benutzer,CN=Users,DC=jaehler,DC=com","513","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","133273465561888037","g.kia.diag01","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-3459449358-1630706413-1848230301-1235","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,,,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","g.kia.diag01@jaehler.com","52569","46488","03.05.2023 16:22:46","30.04.2023 18:42:36"
|
|
||||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","133344830580794226","0","True","jaehler.com/Benutzer/Michael Zippel","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"Michael Zippel","0","Jähler GmbH","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","30.04.2023 23:51:50","30.04.2023 23:51:50",,,"RDS-User","Michael Zippel","CN=Michael Zippel,OU=Benutzer,DC=jaehler,DC=com",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","michael.zippel@jaehler.com",,,"True",,"Michael",,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","22.07.2023 09:04:18",,"0","133348307772849482","20.07.2023 08:58:11","133343098912971776","False",,"172",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"20.07.2023 08:58:11","20.07.2023 08:58:11","0","Michael Zippel","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=jaehler,DC=com","user","298147ae-721b-45e7-a065-6eaa3f79996b","S-1-5-21-3459449358-1630706413-1848230301-1248",,,,,"False","02.05.2023 09:10:18","True","False",,,"CN=G-RDP-User,OU=Gruppen,DC=jaehler,DC=com","1271","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","133274850185853556","michael.zippel","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-3459449358-1630706413-1848230301-1248","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,"Zippel",,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","michael.zippel@jaehler.com","380938","46887","20.07.2023 08:58:11","30.04.2023 23:51:50"
|
|
||||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","133326232584425076","0","True","jaehler.com/Benutzer/Matthias Golde","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"Matthias Golde","0","Jähler GmbH","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","30.04.2023 23:52:24","30.04.2023 23:52:24",,,"RDS-User","Matthias Golde","CN=Matthias Golde,OU=Benutzer,DC=jaehler,DC=com",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","matthias.golde@jaehler.com",,,"True",,"Matthias",,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","30.06.2023 20:27:38",,"0","133349146007740334","21.07.2023 09:44:37","133343990779212536","False",,"211",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"21.07.2023 09:44:37","21.07.2023 09:44:37","0","Matthias Golde","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=jaehler,DC=com","user","35ca16ed-83bc-405e-a767-f5b7fdebc9db","S-1-5-21-3459449358-1630706413-1848230301-1249",,,,,"False","30.04.2023 23:52:24","True","False",,,"CN=G-RDP-User,OU=Gruppen,DC=jaehler,DC=com","1271","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","133273651448970245","matthias.golde","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-3459449358-1630706413-1848230301-1249","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,"Golde",,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","matthias.golde@jaehler.com","382032","46896","21.07.2023 09:44:37","30.04.2023 23:52:24"
|
|
||||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","133275964272365112","0","True","jaehler.com/Diagstation/Gera/g.peugeot.diag01","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"g.peugeot.diag01","0",,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","30.04.2023 23:53:49","30.04.2023 23:53:49",,,,"g.peugeot.diag01","CN=g.peugeot.diag01,OU=Gera,OU=Diagstation,DC=jaehler,DC=com",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,,"True",,"g.peugeot.diag01",,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","03.05.2023 16:07:07",,"0","133275964486271261","19.07.2023 07:26:14","133342179740830327","False",,"0",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"19.07.2023 07:26:14","19.07.2023 07:26:14","0","g.peugeot.diag01","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=jaehler,DC=com","user","e0e7b5ae-8d3d-4269-a9fc-9da0a19ea12a","S-1-5-21-3459449358-1630706413-1848230301-1252",,,,,"False","30.04.2023 23:53:49","True","False",,,"CN=Domänen-Benutzer,CN=Users,DC=jaehler,DC=com","513","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","133273652292564662","g.peugeot.diag01","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-3459449358-1630706413-1848230301-1252","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,"g.peugeot.diag01",,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","g.peugeot.diag01@jaehler.com","379885","46920","19.07.2023 07:26:14","30.04.2023 23:53:49"
|
|
||||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","133275966477833742","0","True","jaehler.com/Diagstation/Gera/g.citroen.diag01","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"g.citroen.diag01","0",,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","30.04.2023 23:54:13","30.04.2023 23:54:13",,,,"g.citroen.diag01","CN=g.citroen.diag01,OU=Gera,OU=Diagstation,DC=jaehler,DC=com",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,,"True",,"g.citroen.diag01",,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","03.05.2023 16:10:47",,"0","133348226180125339","24.07.2023 07:14:35","133346492750276546","False",,"47",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"24.07.2023 07:14:35","24.07.2023 07:14:35","0","g.citroen.diag01","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=jaehler,DC=com","user","f3b97719-48ad-4c16-a59e-9443e415d559","S-1-5-21-3459449358-1630706413-1848230301-1253",,,,,"False","30.04.2023 23:54:13","True","False",,,"CN=Domänen-Benutzer,CN=Users,DC=jaehler,DC=com","513","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","133273652536629701","g.citroen.diag01","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-3459449358-1630706413-1848230301-1253","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,,,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","g.citroen.diag01@jaehler.com","383853","46931","24.07.2023 07:14:35","30.04.2023 23:54:13"
|
|
||||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","0","0","True","jaehler.com/Diagstation/Gera/g.dfsk.diag01","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"g.dfsk.diag01","0",,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","30.04.2023 23:54:29","30.04.2023 23:54:29",,,,"g.dfsk.diag01","CN=g.dfsk.diag01,OU=Gera,OU=Diagstation,DC=jaehler,DC=com",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,,"True",,"g.dfsk.diag01",,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,"0","0",,,"False",,"0",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"30.04.2023 23:54:29","30.04.2023 23:54:29","0","g.dfsk.diag01","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=jaehler,DC=com","user","bd5ac34f-7a1e-4537-980b-dd4f61d59675","S-1-5-21-3459449358-1630706413-1848230301-1254",,,,,"False","30.04.2023 23:54:29","True","False",,,"CN=Domänen-Benutzer,CN=Users,DC=jaehler,DC=com","513","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","133273652696314888","g.dfsk.diag01","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-3459449358-1630706413-1848230301-1254","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,,,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","g.dfsk.diag01@jaehler.com","46945","46939","30.04.2023 23:54:29","30.04.2023 23:54:29"
|
|
||||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","0","0","True","jaehler.com/Diagstation/Gera/g.baic.diag01","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"g.baic.diag01","0",,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","30.04.2023 23:54:43","30.04.2023 23:54:43",,,,"g.baic.diag01","CN=g.baic.diag01,OU=Gera,OU=Diagstation,DC=jaehler,DC=com",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,,"True",,"g.baic.diag01",,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,"0","0",,,"False",,"0",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"30.04.2023 23:54:43","30.04.2023 23:54:43","0","g.baic.diag01","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=jaehler,DC=com","user","61554599-3a0d-46d2-8d57-24caa064d07e","S-1-5-21-3459449358-1630706413-1848230301-1255",,,,,"False","30.04.2023 23:54:43","True","False",,,"CN=Domänen-Benutzer,CN=Users,DC=jaehler,DC=com","513","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","133273652833346232","g.baic.diag01","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-3459449358-1630706413-1848230301-1255","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,,,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","g.baic.diag01@jaehler.com","46953","46947","30.04.2023 23:54:43","30.04.2023 23:54:43"
|
|
||||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","133283708048223238","0","True","jaehler.com/Scanner-Workstations/Altenburg/abg.kia.diag01","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"abg.kia.diag01","0",,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","30.04.2023 23:55:00","30.04.2023 23:55:00",,,,"abg.kia.diag01","CN=abg.kia.diag01,OU=Altenburg,OU=Scanner-Workstations,DC=jaehler,DC=com",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,,"True",,"abg.kia.diag01",,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","12.05.2023 15:13:24",,"0","133283708113383591","10.05.2023 13:33:18","133281919989853504","False",,"0",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"10.05.2023 13:33:18","10.05.2023 13:33:18","0","abg.kia.diag01","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=jaehler,DC=com","user","96053f71-9eca-47b1-b38c-dc3878febc7e","S-1-5-21-3459449358-1630706413-1848230301-1256",,,,,"False","30.04.2023 23:55:00","True","False",,,"CN=Domänen-Benutzer,CN=Users,DC=jaehler,DC=com","513","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","133273653003971208","abg.kia.diag01","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-3459449358-1630706413-1848230301-1256","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,,,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","abg.kia.diag01@jaehler.com","62541","46955","10.05.2023 13:33:18","30.04.2023 23:55:00"
|
|
||||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","133281925554378207","0","True","jaehler.com/Scanner-Workstations/Altenburg/abg.peugeot.diag01","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"abg.peugeot.diag01","0",,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","30.04.2023 23:55:16","30.04.2023 23:55:16",,,,"abg.peugeot.diag01","CN=abg.peugeot.diag01,OU=Altenburg,OU=Scanner-Workstations,DC=jaehler,DC=com",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,,"True",,"abg.peugeot.diag01",,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","10.05.2023 13:42:35",,"0","133281925898895722","10.05.2023 13:43:09","133281925898895722","False",,"0",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"10.05.2023 13:43:09","10.05.2023 13:43:09","0","abg.peugeot.diag01","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=jaehler,DC=com","user","4b7b69ac-d318-4030-b7f1-121792787a7c","S-1-5-21-3459449358-1630706413-1848230301-1257",,,,,"False","30.04.2023 23:55:16","True","False",,,"CN=Domänen-Benutzer,CN=Users,DC=jaehler,DC=com","513","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","133273653167408938","abg.peugeot.diag01","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-3459449358-1630706413-1848230301-1257","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,,,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","abg.peugeot.diag01@jaehler.com","62553","46963","10.05.2023 13:43:09","30.04.2023 23:55:16"
|
|
||||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","0","0","True","jaehler.com/Scanner-Workstations/Altenburg/abg.citroen.diag01","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"abg.citroen.diag01","0",,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","30.04.2023 23:55:32","30.04.2023 23:55:32",,,,"abg.citroen.diag01","CN=abg.citroen.diag01,OU=Altenburg,OU=Scanner-Workstations,DC=jaehler,DC=com",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,,"True",,"abg.citroen.diag01",,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,"0","0",,,"False",,"0",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"30.04.2023 23:55:32","30.04.2023 23:55:32","0","abg.citroen.diag01","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=jaehler,DC=com","user","9f329c5c-c5ce-4eb3-b6ed-f7df38ab78e3","S-1-5-21-3459449358-1630706413-1848230301-1258",,,,,"False","30.04.2023 23:55:32","True","False",,,"CN=Domänen-Benutzer,CN=Users,DC=jaehler,DC=com","513","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","133273653324596576","abg.citroen.diag01","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-3459449358-1630706413-1848230301-1258","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,,,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","abg.citroen.diag01@jaehler.com","46977","46971","30.04.2023 23:55:32","30.04.2023 23:55:32"
|
|
||||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","0","0","True","jaehler.com/Diagstation/Schmölln/sln.stellantis.diag01","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"sln.stellantis.diag01","0",,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","30.04.2023 23:55:48","30.04.2023 23:55:48",,,,"sln.stellantis.diag01","CN=sln.stellantis.diag01,OU=Schmölln,OU=Diagstation,DC=jaehler,DC=com",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,,"True",,"sln.stellantis.diag01",,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,"0","0","25.07.2023 15:11:09","133347642690932232","False",,"0",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"25.07.2023 15:11:09","25.07.2023 15:11:09","0","sln.stellantis.diag01","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=jaehler,DC=com","user","b8a64da4-c2fc-4cac-af43-03ffd6f307d1","S-1-5-21-3459449358-1630706413-1848230301-1259",,,,,"False","09.05.2023 13:38:30","True","False",,,"CN=Domänen-Benutzer,CN=Users,DC=jaehler,DC=com","513","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","133281059101019654","sln.stellantis.diag","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-3459449358-1630706413-1848230301-1259","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,,,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","sln.stellantis.diag01@jaehler.com","385743","46979","25.07.2023 15:11:09","30.04.2023 23:55:48"
|
|
||||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","0","0","True","jaehler.com/Diagstation/Schmölln/sln.kia.diag01","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"sln.kia.diag01","0",,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","30.04.2023 23:56:03","30.04.2023 23:56:03",,,,"sln.kia.diag01","CN=sln.kia.diag01,OU=Schmölln,OU=Diagstation,DC=jaehler,DC=com",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,,"True",,"sln.kia.diag01",,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,"0","0",,,"False",,"0",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"01.05.2023 11:12:54","01.05.2023 11:12:54","0","sln.kia.diag01","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=jaehler,DC=com","user","f458117e-e138-4e1e-9133-ffd9ef18c31c","S-1-5-21-3459449358-1630706413-1848230301-1260",,,,,"False","30.04.2023 23:56:03","True","False",,,"CN=Domänen-Benutzer,CN=Users,DC=jaehler,DC=com","513","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","133273653637877920","sln.kia.diag01","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-3459449358-1630706413-1848230301-1260","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,,,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","sln.kia.diag01@jaehler.com","47357","46987","01.05.2023 11:12:54","30.04.2023 23:56:03"
|
|
||||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","1","133277061316914725","1","True","jaehler.com/Benutzer/JAH-RECH01","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"JAH-RECH01","0","Jähler GmbH","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","01.05.2023 22:10:16","01.05.2023 22:10:16",,,,"JAH-RECH01","CN=JAH-RECH01,OU=Benutzer,DC=jaehler,DC=com",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,,"True",,"JAH-RECH01",,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","04.05.2023 22:35:31",,"0","0","04.05.2023 22:21:03","133277052635196640","False",,"0",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"07.06.2023 13:37:04","07.06.2023 13:37:04","0","JAH-RECH01","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=jaehler,DC=com","user","da481e3f-05b9-4727-b104-2c742e6fd880","S-1-5-21-3459449358-1630706413-1848230301-1272",,,,,"False","01.05.2023 22:10:16","True","False",,,"CN=Domänen-Benutzer,CN=Users,DC=jaehler,DC=com","513","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","133274454168568815","JAH-RECH01","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-3459449358-1630706413-1848230301-1272","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,,,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","JAH-RECH01@jaehler.com","92222","48611","07.06.2023 13:37:04","01.05.2023 22:10:16"
|
|
||||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","133280336035971541","0","True","jaehler.com/Benutzer/Admin-Test-User (Service-Account)","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"Admin-Test-User (Service-Account)","0",,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","02.05.2023 16:34:52","02.05.2023 16:34:52",,,"Admin-Test-User (Service-Account)","Admin-Test-User (Service-Account)","CN=Admin-Test-User (Service-Account),OU=Benutzer,DC=jaehler,DC=com",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","support@stines.de",,,"True",,"Ad-Test-User",,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","08.05.2023 17:33:23",,"0","133347644705943131","25.07.2023 07:31:02","133347366621588132","False",,"129",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"25.07.2023 07:31:02","25.07.2023 07:31:02","0","Admin-Test-User (Service-Account)","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=jaehler,DC=com","user","77cbfd78-f06b-41a8-823c-04341db3e577","S-1-5-21-3459449358-1630706413-1848230301-1273",,,,,"False","02.05.2023 16:34:52","True","False",,,"CN=G-RDP-User,OU=Gruppen,DC=jaehler,DC=com","1271","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","133275116921981579","Ad-Test-User","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-3459449358-1630706413-1848230301-1273","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,,,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Ad-Test-User@jaehler.com","385039","50300","25.07.2023 07:31:02","02.05.2023 16:34:52"
|
|
||||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","133337861108611801","0","True","jaehler.com/Benutzer/Marcel Kirmse","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"Marcel Kirmse","0","Jähler GmbH","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","02.05.2023 22:09:49","02.05.2023 22:09:49",,,"RDS-User","Marcel Kirmse","CN=Marcel Kirmse,OU=Benutzer,DC=jaehler,DC=com",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","marcel.kirmse@jaehler.com",,,"True",,"Marcel",,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","14.07.2023 07:28:30",,"0","133349159846543491","24.07.2023 11:13:04","133346635841787461","False",,"98",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"24.07.2023 11:13:04","24.07.2023 11:13:04","0","Marcel Kirmse","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=jaehler,DC=com","user","f3fc936e-d497-43dc-b0a4-cbcec2d6963f","S-1-5-21-3459449358-1630706413-1848230301-1274",,,,,"False","02.05.2023 22:09:49","True","False",,,"CN=G-RDP-User,OU=Gruppen,DC=jaehler,DC=com","1271","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","133275317897104538","marcel.kirmse","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-3459449358-1630706413-1848230301-1274","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,"Kirmse",,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","marcel.kirmse@jaehler.com","384194","51286","24.07.2023 11:13:04","02.05.2023 22:09:49"
|
|
||||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","133280452617535476","0","True","jaehler.com/Scanner-Workstations/g.scanner01","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"g.scanner01","0",,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","08.05.2023 09:08:09","08.05.2023 09:08:09",,,,"g.scanner01","CN=g.scanner01,OU=Scanner-Workstations,DC=jaehler,DC=com",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,,"True",,"g.scanner01",,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","08.05.2023 20:47:41",,"0","133348589516847746","17.07.2023 09:15:52","133340517527611659","False",,"311",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"17.07.2023 09:15:52","17.07.2023 09:15:52","0","g.scanner01","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=jaehler,DC=com","user","9ff7c998-8567-4117-960b-cd50d100473d","S-1-5-21-3459449358-1630706413-1848230301-1275",,,,,"False","08.05.2023 16:06:43","True","False",,,"CN=Domänen-Benutzer,CN=Users,DC=jaehler,DC=com","513","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","133280284031909513","g.scanner01","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-3459449358-1630706413-1848230301-1275","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,,,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","g.scanner01@jaehler.com","378024","58643","17.07.2023 09:15:52","08.05.2023 09:08:09"
|
|
||||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","0","0","True","jaehler.com/Scanner-Workstations/Plotter","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"Plotter","0",,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","08.05.2023 09:37:14","08.05.2023 09:37:14",,,,"Plotter","CN=Plotter,OU=Scanner-Workstations,DC=jaehler,DC=com",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,,"True",,"Plotter",,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,"0","0",,,"False",,"0",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"08.05.2023 09:37:55","08.05.2023 09:37:55","0","Plotter","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=jaehler,DC=com","user","74a7f904-897e-41e0-9a2c-b125626fdc72","S-1-5-21-3459449358-1630706413-1848230301-1276",,,,,"False","08.05.2023 09:37:14","True","False",,,"CN=Domänen-Benutzer,CN=Users,DC=jaehler,DC=com","513","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","133280050349408197","g.plotter01","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-3459449358-1630706413-1848230301-1276","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,,,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","g.plotter01@jaehler.com","58708","58699","08.05.2023 09:37:55","08.05.2023 09:37:14"
|
|
||||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","0","0","True","jaehler.com/Diagstation/Schmölln/sln.zeiterfassung01","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"sln.zeiterfassung01","0",,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","09.05.2023 12:53:22","09.05.2023 12:53:22",,,,"sln.zeiterfassung01","CN=sln.zeiterfassung01,OU=Schmölln,OU=Diagstation,DC=jaehler,DC=com",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,,"True",,"sln.zeiterfassung01",,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,"0","0","09.05.2023 13:05:58","133281039585863290","False",,"0",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"09.05.2023 13:05:58","09.05.2023 13:05:58","0","sln.zeiterfassung01","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=jaehler,DC=com","user","d437ac2b-313f-4a2d-ac99-0299a3f7e614","S-1-5-21-3459449358-1630706413-1848230301-1279",,,,,"False","09.05.2023 12:53:22","True","False",,,"CN=Domänen-Benutzer,CN=Users,DC=jaehler,DC=com","513","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","133281032021644113","sln.zeiterfassung01","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-3459449358-1630706413-1848230301-1279","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,,,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","sln.zeiterfassung01@jaehler.com","61058","61028","09.05.2023 13:05:58","09.05.2023 12:53:22"
|
|
||||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","0","0","False","jaehler.com/Users/scanner.test","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"scanner.test","0",,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","12.05.2023 11:41:02","12.05.2023 11:41:02",,,,,"CN=scanner.test,CN=Users,DC=jaehler,DC=com",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,,"True",,,,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,"0","133286354633597374","15.05.2023 16:37:45","133286350654811249","False",,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"15.05.2023 16:37:45","15.05.2023 16:37:45","0","scanner.test","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=jaehler,DC=com","user","2a7ec63e-5750-4e56-8bc4-f3a686a72692","S-1-5-21-3459449358-1630706413-1848230301-1280",,,,,"False","12.05.2023 11:41:26","True","False",,,"CN=Domänen-Benutzer,CN=Users,DC=jaehler,DC=com","513","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","133283580863981618","scanner.test","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-3459449358-1630706413-1848230301-1280","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,,,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","scanner.test@jaehler.com","68170","64994","15.05.2023 16:37:45","12.05.2023 11:41:02"
|
|
||||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","133326298183155463","0","True","jaehler.com/Benutzer/Frank Halbauer","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Gera","Frank Halbauer","0","Jähler GmbH","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","30.06.2023 20:29:05","30.06.2023 20:29:05",,,"RDS-User","Frank Halbauer","CN=Frank Halbauer,OU=Benutzer,DC=jaehler,DC=com",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","frank.halbauer@jaehler.com",,,"True",,"Frank",,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","30.06.2023 22:16:58",,"0","133329283028332792","30.06.2023 20:38:37","133326239178023507","False",,"7",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"05.07.2023 11:17:18","05.07.2023 11:17:18","0","Frank Halbauer","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=jaehler,DC=com","user","5802cc00-a936-4b70-8541-33652c6b7f68","S-1-5-21-3459449358-1630706413-1848230301-1283",,,,,"False","30.06.2023 20:29:05","True","False",,,"CN=Domänen-Benutzer,CN=Users,DC=jaehler,DC=com","513","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","133326233453504976","frank.halbauer","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-3459449358-1630706413-1848230301-1283","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,"Halbauer",,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","frank.halbauer@jaehler.com","365543","121692","05.07.2023 11:17:18","30.06.2023 20:29:05"
|
|
||||||
,"9223372036854775807",,"False",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","0","133331925121330093","0","True","jaehler.com/Benutzer/edos-ablage edos-ablage","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"edos-ablage edos-ablage","0",,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"0","07.07.2023 10:32:40","07.07.2023 10:32:40",,,,"edos-ablage edos-ablage","CN=edos-ablage edos-ablage,OU=Benutzer,DC=jaehler,DC=com",,"False","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,,,"True",,"edos-ablage",,"False",,,,,"4",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","07.07.2023 10:35:12",,"0","133349115260901473","21.07.2023 07:25:30","133343907303039455","False",,"13",,,"Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,"21.07.2023 07:25:30","21.07.2023 07:25:30","0","edos-ablage edos-ablage","System.DirectoryServices.ActiveDirectorySecurity","CN=Person,CN=Schema,CN=Configuration,DC=jaehler,DC=com","user","48bcd278-355c-4eff-a0b4-5400ad94c1f0","S-1-5-21-3459449358-1630706413-1848230301-1285",,,,,"False","07.07.2023 10:32:40","True","False",,,"CN=Domänen-Benutzer,CN=Users,DC=jaehler,DC=com","513","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection",,"False","133331923602210253","edos-ablage","805306368",,"15","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","S-1-5-21-3459449358-1630706413-1848230301-1285","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","False",,,"edos-ablage",,"False","False","False","66048","Microsoft.ActiveDirectory.Management.ADPropertyValueCollection","edos-ablage@jaehler.com","381833","367258","21.07.2023 07:25:30","07.07.2023 10:32:40"
|
|
||||||
|
Reference in New Issue
Block a user