disable the alterabyteblaster service with command

来源:互联网 发布:国际认证大数据证书 编辑:程序博客网 时间:2024/06/03 18:21

 

win2003 report an error every reboot if installed QuartusII on a pc without parallel port. the error is:

 

The Altera ByteBlaster service depends on the Parport service which failed to start because of the following error:
The service cannot be started, either because it is disabled or because it has no enabled devices associated with it.

then you can disable the alterabyteblaster service to stop the error reporting. but you can't find the alterabyteblaster services in services which are listed in services window. so you need the command line to disable or enable the service as following.

 

 

sc config ALTERABYTEBLASTER start= disabled   (please pay attention to the space after the "=" mark)

sc config ALTERABYTEBLASTER start= auto
DESCRIPTION:
        Modifies a service entry in the registry and Service Database.
USAGE:
        sc <server> config [service name] <option1> <option2>...

OPTIONS:
NOTE: The option name includes the equal sign.
 type= <own|share|interact|kernel|filesys|rec|adapt>
 start= <boot|system|auto|demand|disabled>
 error= <normal|severe|critical|ignore>
 binPath= <BinaryPathName>
 group= <LoadOrderGroup>
 tag= <yes|no>
 depend= <Dependencies(separated by / (forward slash))>
 obj= <AccountName|ObjectName>
 DisplayName= <display name>
 password= <password>

原创粉丝点击