Bitcookies

Results 24 comments of Bitcookies
trafficstars

对的,就是编码的问题,其实是 ANSI 编码,你使用 UTF-8 也是没问题的。 在较新版本的 Windows 10 和 11 中,Powershell 默认是以 UTF16-LE 编码储存,导致 WinRAR 无法识别。 也用以下命令指定保存格式就行: ``` winrar-keygen.exe "Github" "Github.com" > rarreg.key | out-file -encoding ascii rarreg.key ```

的确,感觉像是 Windows 更新后,不是到是不是 bug 还是 Powershell 策略又调整了,我的 Windows 10 也是这样。 我晚点排查下这个问题。 不过你可以使用 Github Action 云端生成 key,方便快捷:https://github.com/bitcookies/winrar-keygen/blob/master/README.zh-CN.md#3-%E4%BD%BF%E7%94%A8%E6%96%B9%E6%B3%95

我眼瞎了 ☹,例示代码多打了个输出指令,导致了错误,删掉 `> rarreg.key` 即可。 使用以下代码: ``` winrar-keygen.exe "Github" "Github.com" | Out-File -Encoding ASCII rarreg.key ``` 已经修改了 README。

Yes, like @Sonic-The-Hedgehog-LNK1123 said, If you don't trust a binary executable file, your only option is to review the source code yourself and compile it yourself. Or, you can try...

The update supports **Github Actions**. 🎉 Now you can run it in the cloud without worrying about security issues, please refer to the [README](https://github.com/bitcookies/winrar-keygen/blob/master/README.md) for details.

> Hello I was using your keygen which was very nice but it doesn't put RAR registration data on top of the rarreg.key file which dont let it be usable...

You can try compressing `rarreg.key` into `rarkey.rar` and run it, the import process will be automatic. https://github.com/bitcookies/winrar-keygen/issues/23

感谢,我节后在简中部分更新一下 😀

`rarreg.rar` is just a compressed file for WinRAR, the `.key` is the actual form of the license file that does the work. You can drag `rarreg.key` to the WinRAR GUI...

According to the [official winrar video](https://www.youtube.com/watch?v=LZlGRF_6IyU), the `rarreg.key` file needs to be compressed into `rarkey.rar` , not `rarreg.rar`. Double-click the `rarkey.rar` file to open it and it will be automatically...