• Some users have recently had their accounts hijacked. It seems that the now defunct EVGA forums might have compromised your password there and seems many are using the same PW here. We would suggest you UPDATE YOUR PASSWORD and TURN ON 2FA for your account here to further secure it. None of the compromised accounts had 2FA turned on.
    Once you have enabled 2FA, your account will be updated soon to show a badge, letting other members know that you use 2FA to protect your account. This should be beneficial for everyone that uses FSFT.

fahmon as a service

hacktor2

Limp Gawd
Joined
Oct 18, 2004
Messages
263
Figured since this has to do with F@H this would be an appropriate place to ask.

I have setup the web client with fahmon and because the environment i'm in it would be preperred to have this running as a service instead of just staying logged in.

I try using sc.exe but whenever I enter a command, the output is the list of options / parameters.

this is what i type
Code:
sc create fahmonservice binpath= C:\Program Files (x86)\FahMon\fahmon.exe

Anyone know how to do this correctly? Thanks!
 
Got me man, I have been trying to get this to work for a few hours and I am confused.

http://msdn.microsoft.com/en-us/library/ms810435.aspx

Typical output given what should work.

Code:
U:\>sc create DockService binpath= C:\Program Files\Stardock\ObjectDock\ObjectDo
ck.exe start= auto
Creates a service entry in the registry and Service Database.
SYNTAX:
sc create [service name] [binPath= ] <option1> <option2>...
CREATE OPTIONS:
NOTE: The option name includes the equal sign.
 type= <own|share|interact|kernel|filesys|rec>
       (default = own)
 start= <boot|system|auto|demand|disabled>
       (default = demand)
 error= <normal|severe|critical|ignore>
       (default = normal)
 binPath= <BinaryPathName>
 group= <LoadOrderGroup>
 tag= <yes|no>
 depend= <Dependencies(separated by / (forward slash))>
 obj= <AccountName|ObjectName>
       (default = LocalSystem)
 DisplayName= <display name>
 password= <password>

U:\>sc qc DockService
[SC] OpenService FAILED 1060:
 
Since there is a space in your pathname, you need to put it in quotes or else it parses it as multiple parameters and gets confused.
 
Back
Top