Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ReneNyffenegger/about-Windows-Registry
Windows Registry
https://github.com/ReneNyffenegger/about-Windows-Registry
powershell registry windows
Last synced: 2 months ago
JSON representation
Windows Registry
- Host: GitHub
- URL: https://github.com/ReneNyffenegger/about-Windows-Registry
- Owner: ReneNyffenegger
- Created: 2014-07-16T08:17:27.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2024-03-05T07:12:38.000Z (10 months ago)
- Last Synced: 2024-08-02T13:29:18.791Z (5 months ago)
- Topics: powershell, registry, windows
- Language: PowerShell
- Homepage:
- Size: 227 KB
- Stars: 29
- Watchers: 5
- Forks: 14
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-starz - ReneNyffenegger/about-Windows-Registry - Windows Registry (PowerShell)
- jimsghstars - ReneNyffenegger/about-Windows-Registry - Windows Registry (PowerShell)
README
about-Windows-Registry
======================Windows Registry
# Misc
## Navigating the registry with Powershell
With [Powershell](https://github.com/ReneNyffenegger/about-powershell), its possible to navigate the registry:
PS C:> Set-Location Set-Location HKCU:\Software\Microsoft\Windows
PS HKCU:\Software\Microsoft\Windows> Get-ChildItemHive: HKEY_CURRENT_USER\Software\Microsoft\Windows
SKC VC Name Property
--- -- ---- --------
30 1 CurrentVersion {%a5%81%f7%c2%5b%bc%0b%ad%56%96%ee%4a%2c%67%2e%b4%a0%bf%d2%f1%d7%2a%2b%20%9e%c0%94%7b%66%ad%64%58}
0 12 DWM {Composition, CompositionPolicy, ColorizationColor, ColorizationColorBalance...}
4 0 Shell {}
2 0 TabletPC {}
4 12 Windows Error Reporting {ConfigureArchive, DisableArchive, Disabled, DisableQueue...}Of course, typing is less verbose if the aliases `cd` instead `Set-Location` and `ls` instead `Get-ChildItem` is used.
## Navigating the registry with Perl
[Win32::TieRegistry](https://github.com/ReneNyffenegger/PerlModules/tree/master/Win32/TieRegistry) makes it ease to read and write to the registry with perl.
# Links
[Associating an extenstion with an executable](HKEY_CURRENT_USER/Software/Classes/README.md#assoc)
[Offline NT Password & Registry Editor](http://pogostick.net/~pnh/ntpasswd/) is a utility that is able to reset the Password of any user.
[Registry Edits](http://www.theeldergeek.com/registry_edits.htm).