Skip to content

CapacitorSet/system-registry-js

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Windows Registry dump

This is a simple npm module that exports the system registry from Windows XP as a JS object.

Usage

var registry = require("system-registry");

Compiling

Dump the registry to registry.reg, convert it from UTF16 to UTF8 (eg. with iconv), run reg2json.js, prepend module.exports= to registry.json in order to create registry.js. Run a minifier, and copy the output to src/registry.js.

cd src
# Generate registry.reg.
iconv -f utf-16 -t utf-8 registry.reg -o registry.utf8.reg
node reg2json.js
(echo -n "module.exports="; cat registry.json) > registry.js
uglifyjs --mangle -- registry.js > ../dist/registry.js

About

A JS dump of the Windows XP registry.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published