![]() |
![]() |
#1 |
"Cassessory"
May 2017
Northern China
3616 Posts |
![]()
I'm using the following steps to startup mfakto automatically in the background every time the computer starts, in a manner similar to prime95:
Use the Task Manager if you want to kill mfakto. Certainly MISFIT can also be used to talk to PrimeNet automatically. |
![]() |
![]() |
![]() |
#2 |
"Cassessory"
May 2017
Northern China
2×33 Posts |
![]()
Update:
|
![]() |
![]() |
![]() |
#3 |
Bemusing Prompter
"Danny"
Dec 2002
California
9BF16 Posts |
![]()
An alternate way to run a console application "silently" is to use PowerShell:
Code:
Start-Process -WindowStyle hidden { <command> } I also recommend not using Task Manager to kill mfakto because not allowing an application to exit gracefully can cause data loss. However, you can use some simple Python commands to send a SIGINT to a background process. Code:
import os import signal os.kill(<mfakto PID>, signal.SIGINT) Last fiddled with by ixfd64 on 2022-08-24 at 20:29 |
![]() |
![]() |
![]() |
Thread Tools | |
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
Running Prime95 on Windows 98 OS | RetroGamer | Software | 32 | 2021-11-01 08:30 |
Windows Froze while Running Prime95 | tuckerkao | Information & Answers | 3 | 2021-08-13 06:03 |
Windows running Linux Cuda ? | tServo | GPU Computing | 31 | 2020-05-25 16:44 |
LATEST ECM SOFTWARE RUNNING on WINDOWS 7 | enzocreti | Computer Science & Computational Number Theory | 1 | 2018-10-03 12:57 |
Running a Windows machine at the end of a wire | fivemack | Programming | 2 | 2015-06-30 18:02 |