Jump to content

Windows registery, why so complicated???

None windows seems to have better system... I mean why not just a system tree with settings & applications then user being the same... I mean I am no expert or near 1 really, but it could be less complex...

GIGA AORUSBYTE B550I PRO AX (AM4 AMD/B550/Mini-Itx/Dual M.2/SATA 6Gb/s/USB 3.2 Gen 1/WiFi 6/2.5 GbE LAN/PCIe4.0/Realtek ALC1220-Vb/DisplayPort 1.4/2xHDMI 2.0B/RGB Fusion 2.0/DDR4/Gaming Motherboard) ,AMD Ryzen 7 5800X 8-core, 16-Thread Unlocked 4.7 GHz, TEAMGROUP T-Force Vulcan Z DDR4 32GB (2 x 16GB) 3200MHz (PC4 25600) Ram, EVGA GeForce RTX 3060 Ti XC Gaming, 08G-P5-3663-KL, 8GB GDDR6, Metal Backplate, LHR 

Link to comment
https://linustechtips.com/topic/1020724-windows-registery-why-so-complicated/
Share on other sites

Link to post
Share on other sites

Pretty much what @Electronics Wizardy said. 

Laptop: 2024 16" MacBook Pro M4 Pro, 512GB, 48GB Unified Memory | Phone: iPhone 16 Pro Max 512GB | Wearables: Apple Watch SE | Car: 2025 Honda Accord SE & 2007 Ford Taurus SE | CPU: R7 5700X | Mobo: ASRock B450M Pro4 | RAM: 32GB 3200 | GPU: Sapphire Nitro+ 9070XT | Case: Fractal North | OS: Win 11 | Storage: 1TB Crucial P3 NVME SSD, 1TB PNY CS900, & 4TB WD Blue HDD | PSU: Seasonic Focus GX-850 | Display: LG 27GL83A-B 1440p @ 144Hz, Dell S2719DGF 1440p @144Hz | Cooling: Noctua NH-U12S | Keyboard: G610 Orion Cherry MX Brown | Mouse: G305 | Audio: Audio Technica ATH-M50X & Blue Snowball | Server: 2024 M4 Mac mini, 256GB SSD, 16GB Unified Memory | Storage: Terramaster D4-320 DAS (12TB Seagate Ironwolf Pro, 12TB Seagate Ironwolf, 6TB WD Blue HDD, 500GB Crucial SSD)
Link to post
Share on other sites

windows registry is not suppose to be handle by non technician. why make it easier?

Ryzen 5700g @ 4.4ghz all cores | Asrock B550M Steel Legend | 3060 | 2x 16gb Micron E 2666 @ 4200mhz cl16 | 500gb WD SN750 | 12 TB HDD | Deepcool Gammax 400 w/ 2 delta 4000rpm push pull | Antec Neo Eco Zen 500w

Link to post
Share on other sites

Registry is database for programs and system. It's made for quick access when program needs data. It's like online forum and MySQL - it's not made for editing directly, even if it's possible. It's not also configuration tool. For config you have control panel.

Link to post
Share on other sites

On 1/13/2019 at 12:18 AM, Edward78 said:

None windows seems to have better system... I mean why not just a system tree with settings & applications then user being the same... I mean I am no expert or near 1 really, but it could be less complex...

I am confused with what you are saying,

 

Registry is simple:

 

I don't feel like typing a novel, so I'll stay brief, and let you read more on it, if you are truly interested:

  • The registry is a database. Very important that you understand that. Keys, are viewed as"folders" in the registry editor for easier editing.
  • HKEY_CLASSES_ROOT, contains everything related to file associations that affects all accounts on the system (default icons, which program to open
  • HKEY_CURRENT_USER, contains everything that is related to the current user. In there you'll have Windows account settings (keyboard, language, environmental variable, personification, program settings, group policies, account restrictions and file association that affects the account (which overrides the global ones). The location of the registry for each account is located in: C:\Users\<account>\NTUSER.DAT. This file is: HKEY_CURRENT_USER that you see under the registry editor 'regedit" that it loads by default.
  • HKEY_LOCAL_MACHINE, contains everything that affects system wide configurations. Drivers, drivers configuration, system files registrations, programs settings that affects all users, hardware, and has things like: has a place where Windows writes the current hardware configurations for programs to easily use to make life easier for developers. So for example, you develop a software, for debugging purposes, you have a log system in the case of a crash, and you need to know the CPU model. Well you could spend a very long time, and hire experts to build a system that communicates with the hardware, just to get the CPU model (like what HWMonitor and others does), or you could write this massive code file to interact with WMI in Windows to get that information, or in a "1 liner" just pull the CPU model stored in: "Computer\HKEY_LOCAL_MACHINE\HARDWARE\DESCRIPTION\System\CentralProcessor\0"
  • HKEY_USERS. Shortcuts of 2x keys under HKEY_CURRENT_USER that are actively loaded in one location.
  • HKEY_CURRENT_CONFIG. Shortcut of a key under HKEY_LOCAL_MACHINE.

And that is pretty much it. There is a learning curve, and you need to know what you are doing, but essentially the registry is not particularly complicated if you understand how Windows works.

 

Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×