dart-windows/win32_registry

A modern, type-safe Dart API for accessing and managing the Windows Registry.

42

stars

94

commits

Dart

primary language

Feb 26, 2026

updated

dart
flutter
registry
win32
windows

README

This package has moved

The package can now be found at https://github.com/halildurmus/win32/tree/main/packages/win32_registry


ci Package: win32_registry Publisher: halildurmus.dev Language: Dart License: BSD-3-Clause codecov

A modern, type-safe Dart API for accessing and managing the Windows Registry.

This package builds on top of the package:win32 and provides a high-level abstraction over native registry APIs. It eliminates the need to work directly with FFI, raw pointers, or low-level Win32 calls while preserving performance and correctness.

✨ Features

  • Key Management — Create, open, delete, and rename registry keys.
  • Typed Values — Read and write strings, integers, binary data, and multi-string values using strongly typed APIs.
  • Change Monitoring — Listen for registry modifications.
  • Metadata Queries — Inspect subkeys, values, sizes, and timestamps.
  • Transaction Support — Perform registry operations atomically.

🚀 Getting Started

Add the package to your pubspec.yaml:

dependencies:
  win32_registry: ^3.0.0

Then import it:

import 'package:win32_registry/win32_registry.dart';

⚡ Quick Example

Reads the Windows build number from the registry:

void main() {
  final key = LOCAL_MACHINE.open(
    r'Software\Microsoft\Windows NT\CurrentVersion',
  );
  final buildNumber = key.getString('CurrentBuild');
  if (buildNumber != null) {
    print('Windows build number: $buildNumber');
  }
  key.close();
}

📝 Documentation

Full API reference is available here:

👉 API Reference.

Additional usage examples are located in the example directory.

🐞 Features and Bugs

If you encounter bugs or need additional functionality, please file an issue.

Contributors

halildurmus

68 commits

timsneath

13 commits

tylerlacey

2 commits

dart-windows/win32_registry

A modern, type-safe Dart API for accessing and managing the Windows Registry.

42

stars

94

commits

Dart

primary language

Feb 26, 2026

updated

dart
flutter
registry
win32
windows

README

This package has moved

The package can now be found at https://github.com/halildurmus/win32/tree/main/packages/win32_registry


ci Package: win32_registry Publisher: halildurmus.dev Language: Dart License: BSD-3-Clause codecov

A modern, type-safe Dart API for accessing and managing the Windows Registry.

This package builds on top of the package:win32 and provides a high-level abstraction over native registry APIs. It eliminates the need to work directly with FFI, raw pointers, or low-level Win32 calls while preserving performance and correctness.

✨ Features

  • Key Management — Create, open, delete, and rename registry keys.
  • Typed Values — Read and write strings, integers, binary data, and multi-string values using strongly typed APIs.
  • Change Monitoring — Listen for registry modifications.
  • Metadata Queries — Inspect subkeys, values, sizes, and timestamps.
  • Transaction Support — Perform registry operations atomically.

🚀 Getting Started

Add the package to your pubspec.yaml:

dependencies:
  win32_registry: ^3.0.0

Then import it:

import 'package:win32_registry/win32_registry.dart';

⚡ Quick Example

Reads the Windows build number from the registry:

void main() {
  final key = LOCAL_MACHINE.open(
    r'Software\Microsoft\Windows NT\CurrentVersion',
  );
  final buildNumber = key.getString('CurrentBuild');
  if (buildNumber != null) {
    print('Windows build number: $buildNumber');
  }
  key.close();
}

📝 Documentation

Full API reference is available here:

👉 API Reference.

Additional usage examples are located in the example directory.

🐞 Features and Bugs

If you encounter bugs or need additional functionality, please file an issue.

Contributors

halildurmus

68 commits

timsneath

13 commits

tylerlacey

2 commits

Languages

Dart

100.0%