MediaWiki-API-Ergebnis

This is the HTML representation of the JSON format. HTML is good for debugging, but is unsuitable for application use.

Specify the format parameter to change the output format. To see the non-HTML representation of the JSON format, set format=json.

See the complete documentation, or the API help for more information.

{
    "batchcomplete": "",
    "continue": {
        "lecontinue": "20250813072126|522",
        "continue": "-||"
    },
    "query": {
        "logevents": [
            {
                "logid": 532,
                "ns": 6,
                "title": "Datei:Rot.-Zeiger.svg",
                "pageid": 359,
                "logpage": 359,
                "revid": 849,
                "params": {},
                "type": "create",
                "action": "create",
                "user": "Thomas",
                "timestamp": "2025-11-14T10:53:17Z",
                "comment": ""
            },
            {
                "logid": 531,
                "ns": 6,
                "title": "Datei:Rot.-Zeiger.svg",
                "pageid": 359,
                "logpage": 359,
                "revid": 849,
                "params": {
                    "img_sha1": "dwa5q2x95bgxz3xpffj2a7ten7tgw1b",
                    "img_timestamp": "2025-11-14T10:53:17Z"
                },
                "type": "upload",
                "action": "upload",
                "user": "Thomas",
                "timestamp": "2025-11-14T10:53:17Z",
                "comment": ""
            },
            {
                "logid": 530,
                "ns": 0,
                "title": "Phasenwinkel",
                "pageid": 358,
                "logpage": 358,
                "revid": 848,
                "params": {},
                "type": "create",
                "action": "create",
                "user": "Thomas",
                "timestamp": "2025-11-14T10:52:01Z",
                "comment": "Die Seite wurde neu angelegt: \u201e{{Dieser Artikel|behandelt den Phasenwinkel in der Physik und Technik; zur Bedeutung in der Astronomie siehe [[Tag-Nacht-Grenze]].}} {{Infobox Physikalische Gr\u00f6\u00dfe |Name = Phasenwinkel, Phase |Gr\u00f6\u00dfenart =  |Formelzeichen = <math>\\varphi</math> |Dim =  |AbgeleitetVon =  |SI= [[Radiant (Einheit)|rad]] |SI-Dimension= 1 |cgs =  |cgs-Dimension =  |esE =  |esE-Dimension =  |emE =  |emE-Dimension =  |Planck =  |Planck-Dimension =  |Astro =  |Astro-Dimension =\u2026\u201c"
            },
            {
                "logid": 529,
                "ns": 6,
                "title": "Datei:Leistung-BlindKom.svg",
                "pageid": 357,
                "logpage": 357,
                "revid": 847,
                "params": {},
                "type": "create",
                "action": "create",
                "user": "Thomas",
                "timestamp": "2025-11-14T10:50:00Z",
                "comment": ""
            },
            {
                "logid": 528,
                "ns": 6,
                "title": "Datei:Leistung-BlindKom.svg",
                "pageid": 357,
                "logpage": 357,
                "revid": 847,
                "params": {
                    "img_sha1": "a06du8cn63qmi7rh2zxwovtyby25zsc",
                    "img_timestamp": "2025-11-14T10:50:00Z"
                },
                "type": "upload",
                "action": "upload",
                "user": "Thomas",
                "timestamp": "2025-11-14T10:50:00Z",
                "comment": ""
            },
            {
                "logid": 527,
                "ns": 0,
                "title": "Konvertierung kommunikation",
                "pageid": 356,
                "logpage": 356,
                "revid": 844,
                "params": {},
                "type": "create",
                "action": "create",
                "user": "Thomas",
                "timestamp": "2025-09-17T09:41:05Z",
                "comment": "Die Seite wurde neu angelegt: \u201e= Automatisierte Adressfilterung & XLS-Konvertierung =  == Zweck == Dieses Python-Skript automatisiert die Verarbeitung einer Kommunikations-Exportdatei im alten Excel-Format (.xls). Es konvertiert die Datei in das moderne .xlsx-Format, filtert g\u00fcltige E-Mail-Adressen und entfernt unerw\u00fcnschte Typen und Fax-Werte. Anschlie\u00dfend wird eine gefilterte Adressliste exportiert und optional die Quelldatei sowie die konvertierte Datei gel\u00f6scht.  == Voraussetzu\u2026\u201c"
            },
            {
                "logid": 526,
                "ns": 0,
                "title": "Ping",
                "pageid": 355,
                "logpage": 355,
                "revid": 843,
                "params": {},
                "type": "create",
                "action": "create",
                "user": "Thomas",
                "timestamp": "2025-08-28T10:51:57Z",
                "comment": "Die Seite wurde neu angelegt: \u201eEinfaches Ping-Tool zur \u00dcberwachung und Protokollierung von ausf\u00e4llen<syntaxhighlight lang=\"python\"> import subprocess import time from datetime import datetime import os  # IP-Adresse deines Servers SERVER_IP = \"192.168.1.100\"  # \u2190 bitte anpassen  # Ping-Intervall in Sekunden PING_INTERVAL = 10  # Logdatei im aktuellen Verzeichnis LOG_FILE = os.path.join(os.getcwd(), \"ping_log.txt\")  def ping_server(ip):     try:         # Windows verwendet '-n' stat\u2026\u201c"
            },
            {
                "logid": 525,
                "ns": 0,
                "title": "Microsoft SQL Server Backup",
                "pageid": 354,
                "logpage": 354,
                "revid": 840,
                "params": {},
                "type": "create",
                "action": "create",
                "user": "Thomas",
                "timestamp": "2025-08-19T09:55:50Z",
                "comment": "Die Seite wurde neu angelegt: \u201e=== 1. Backup-Skript erstellen === Erstelle z.\u202fB. eine Datei namens <code>sqlbackup.ps1</code> mit folgendem Inhalt:  <syntaxhighlight lang=\"powershell\"> $timestamp = Get-Date -Format \"yyyyMMdd_HHmmss\" $backupPath = \"C:\\SQLBackups\\MyDatabase_$timestamp.bak\" $sql = \"BACKUP DATABASE [MyDatabase] TO DISK = N'$backupPath' WITH INIT\"  Invoke-Sqlcmd -Query $sql -ServerInstance \"localhost\\SQLEXPRESS\" </syntaxhighlight>  Ersetze <code>MyDatabase</code> mit dem\u2026\u201c"
            },
            {
                "logid": 524,
                "ns": 0,
                "title": "Microsoft SQL Server",
                "pageid": 353,
                "logpage": 353,
                "revid": 838,
                "params": {},
                "type": "create",
                "action": "create",
                "user": "Thomas",
                "timestamp": "2025-08-19T09:49:44Z",
                "comment": "Die Seite wurde neu angelegt: \u201e== Installation und Konfiguration von SQL Server Express 2022 ==  === 1. Installation === * Lade den Installer von der offiziellen Microsoft-Seite herunter. * Starte die Installation im ''Benutzermodus'' oder ''Basic-Modus''. * W\u00e4hle eine ''Named Instance'' (z.\u202fB. <code>SQLEXPRESS</code>).  === 2. TCP/IP aktivieren === * \u00d6ffne den ''SQL Server Configuration Manager''. * Navigiere zu: '''SQL Server-Netzwerkkonfiguration > Protokolle f\u00fcr SQLEXPRESS'''\u2026\u201c"
            },
            {
                "logid": 523,
                "ns": 0,
                "title": "Backup-Rotation mit PowerShell",
                "pageid": 352,
                "logpage": 352,
                "revid": 831,
                "params": {},
                "type": "create",
                "action": "create",
                "user": "Thomas",
                "timestamp": "2025-08-13T12:46:24Z",
                "comment": "Die Seite wurde neu angelegt: \u201e== PowerShell: Nur die 5 neuesten Sicherungsdateien behalten ==  Dieses Skript l\u00f6scht automatisch alle \u00e4lteren ZIP-Dateien im Ordner <code>C:\\datensicherungtask</code>, sodass nur die 5 neuesten Sicherungen erhalten bleiben.  === Skriptinhalt === <syntaxhighlight lang=\"powershell\"> $Pfad = \"C:\\datensicherungtask\" $Dateien = Get-ChildItem -Path $Pfad -Filter \"dasi*.zip\" | Sort-Object LastWriteTime -Descending $ZuL\u00f6schen = $Dateien | Select-Object -Skip\u2026\u201c"
            }
        ]
    }
}