>>2547842>>2547863You can fix it with reverse engineering, slightly complicated though.
1. Get dnSpy from the github releases page.
2. Backup your NicoRipper.exe.
3. Open dnSpy and from there open NicoRipper.exe.
4. In the list to the left there should be a NicoRipper line, click on that.
5. Click on NicoRipper.exe. Click on { } NicoRipper. Click on Form1. Click on button1_Click.
This is the stuff that happens when you click Download in the UI and where we need to change the code.
6. Go to the end of the page and right click in an open area (but not below the code) and do Edit Method (C#). A new window will open.
7. Replace the line near the end that starts with File.WriteAllBytes( with the following
https://pastebin.com/z6jXhtRtBasically we're taking illegal characters in the path and replacing them with underscores.
8. Press Compile.
9. Under File, do Save Module.
Hopefully it works.