🟣 C# / .NET 6+

Backup Network Adapters to JSON (C#)

Snapshots Network Adapters (Win32_NetworkAdapter) to a timestamped JSON file via System.Management and System.Text.Json.

By WindowsScripting.com · 1.2 KB
BackupNetworkAdapterListToJson.cs
// BackupNetworkAdapterListToJson.cs
//
// Snapshots Network Adapters (Win32_NetworkAdapter) to a timestamped JSON file.
//
// Requires the System.Management package:
//   dotnet new console -o BackupNetworkAdapter
//   dotnet add package System.Management
//   (replace the generated Program.cs with this file, then dotnet run)

using System;
using System.Collections.Generic;
using System.IO;
using System.Management;
using System.Text.Json;

var searcher = new ManagementObjectSearcher("SELECT Name, MACAddress, AdapterType, NetEnabled FROM Win32_NetworkAdapter");
var results = new List<Dictionary<string, object?>>();

foreach (ManagementObject item in searcher.Get())
{
    var row = new Dictionary<string, object?>();
    row["Name"] = item["Name"];
        row["MACAddress"] = item["MACAddress"];
        row["AdapterType"] = item["AdapterType"];
        row["NetEnabled"] = item["NetEnabled"];
    results.Add(row);
}

string timestamp = DateTime.Now.ToString("yyyyMMdd-HHmmss");
string outPath = $"networkadapter-snapshot_{timestamp}.json";
File.WriteAllText(outPath, JsonSerializer.Serialize(results, new JsonSerializerOptions { WriteIndented = true }));

Console.WriteLine($"Snapshot of Network Adapters ({results.Count} items) saved to {outPath}");