-
-
Notifications
You must be signed in to change notification settings - Fork 312
This issue was moved to a discussion.
You can continue the conversation there. Go to discussion →
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
No Windows console found. Are you running cmd.exe? #1211
Comments
Try like this: using System.Diagnostics;
Process process = new Process();
ProcessStartInfo startInfo = new ProcessStartInfo();
startInfo.WindowStyle = ProcessWindowStyle.Hidden;
startInfo.FileName = "cmd.exe";
startInfo.Arguments = "/C lncrawl -s https://novelfull.com/i-alone-level-up.html -o "D:\" --all -f --format epub --single";
process.StartInfo = startInfo;
process.Start(); |
It doesn't work. I need to redirect the output to my UI (RichTextox) and it doesn't work if I try to use "cmd". |
Add |
That did fix the error but for some reason, it's not creating the epub file. I can see that it created the json folder and downloaded the content but nothing happens in the end. This is the output I get in my "console":
|
it is showing |
Adding
|
Unfortunately the Update: funny thing, when I used |
Any update on this? Can you check the latest version? |
This issue was moved to a discussion.
You can continue the conversation there. Go to discussion →
I'm trying to create a GUI for lncrawl (using .NET 5) but I cam across an odd issue, when I try to run lncrawl from my UI I keep getting an error: "No Windows console found. Are you running cmd.exe?"
These are the parameters I used for my test:
lncrawl -s https://novelfull.com/i-alone-level-up.html -o "D:\" --all -f --format epub --single
The text was updated successfully, but these errors were encountered: