You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Unfortunately the installation instructions in the release notes for Windows will never work as it appears it's just a copy-n-paste from the linux/mac instructions.
As a windows user
I would like to install reg
On a Windows platform
Note - the windows binaries in the releases are actual windows executables so WSL is not really an option
Also, this tool installs as reg.exe which is the same filename as the OS installed registry tool reg.exe (Back to at least WinXP days). There should be a known issue or release note that you'll need to modify your path appropriately or using fully qualified exe names
The text was updated successfully, but these errors were encountered:
# Export the sha256sum for verification.$SHA256='aec2ba84a2de95a21f1649e0f398ecf91575c1e1b8994e9589a28d2e32ce2cd8x'# Download and check the sha256sum.
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
Invoke-WebRequest-URI 'https://github.com/genuinetools/reg/releases/download/v0.16.0/reg-windows-amd64'-UseBasicParsing -OutFile ~/reg.exeif ((Get-FileHash-Path ~/reg.exe-Algorithm SHA256).Hash -ine$SHA256) { Write-Error"SHA256 does not match"; return }
Write-Output"reg installed!"# Run it!
~/reg.exe-h
Unfortunately the installation instructions in the release notes for Windows will never work as it appears it's just a copy-n-paste from the linux/mac instructions.
As a windows user
I would like to install reg
On a Windows platform
Note - the windows binaries in the releases are actual windows executables so WSL is not really an option
Also, this tool installs as
reg.exe
which is the same filename as the OS installed registry toolreg.exe
(Back to at least WinXP days). There should be a known issue or release note that you'll need to modify your path appropriately or using fully qualified exe namesThe text was updated successfully, but these errors were encountered: