mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-01-13 16:30:33 +00:00
28 lines
781 B
Rust
28 lines
781 B
Rust
// Copyright 2015, Igor Shaula
|
|
// Licensed under the MIT License <LICENSE or
|
|
// http://opensource.org/licenses/MIT>. This file
|
|
// may not be copied, modified, or distributed
|
|
// except according to those terms.
|
|
extern crate winreg;
|
|
use std::io;
|
|
use winreg::enums::*;
|
|
use winreg::RegKey;
|
|
|
|
fn main() -> io::Result<()> {
|
|
println!("File extensions, registered in system:");
|
|
for i in RegKey::predef(HKEY_CLASSES_ROOT)
|
|
.enum_keys()
|
|
.map(|x| x.unwrap())
|
|
.filter(|x| x.starts_with('.'))
|
|
{
|
|
println!("{}", i);
|
|
}
|
|
|
|
let system = RegKey::predef(HKEY_LOCAL_MACHINE).open_subkey("HARDWARE\\DESCRIPTION\\System")?;
|
|
for (name, value) in system.enum_values().map(|x| x.unwrap()) {
|
|
println!("{} = {:?}", name, value);
|
|
}
|
|
|
|
Ok(())
|
|
}
|