我想在旧的Windows 2003 R2 SE上启动现有.net Windows服务的其他实例。我将文件复制到新目录,并使用sc命令创建它:
sc create "MyServiceSecondary" binPath= "C:\Program Files\MyServiceSecondary\MyService.exe" DisplayName= "Secondary instance of my service" start= auto start= auto obj= ".\LocalSystem"
然后开始了:
sc start "MyServiceSecondary"
服务启动,任务管理器列出它,但Windows服务管理器不显示它。如何"取消隐藏"它?