我有一个系统托盘应用程序,它已安装并从登录脚本开始运行。
该程序在启动时失败,因为它表示服务未启动但我不知道它是哪一个。
我认为这是RPC服务(name = RpcSs)。这是我尝试过但没有用的东西:
string ServiceName_Rpc = "RpcSs";
ServiceController controller = new ServiceController(ServiceName_Rpc);
controller.WaitForStatus(ServiceControllerStatus.Running);
未启动服务器服务。 (HRESULT异常:0x80070842)
at System.DirectoryServices.DirectoryEntry.RefreshCache() 在System.DirectoryServices.AccountManagement.PrincipalContext.DoMachineInit() 在System.DirectoryServices.AccountManagement.PrincipalContext.Initialize() 在System.DirectoryServices.AccountManagement.PrincipalContext.get_QueryCtx() 在System.DirectoryServices.AccountManagement.Principal.FindByIdentityWithTypeHelper(PrincipalContext context,Type principalType,Nullable
1 identityType, String identityValue, DateTime refDate) at System.DirectoryServices.AccountManagement.Principal.FindByIdentityWithType(PrincipalContext context, Type principalType, IdentityType identityType, String identityValue) at System.DirectoryServices.AccountManagement.GroupPrincipal.FindByIdentity(PrincipalContext context, IdentityType identityType, String identityValue) at System.DirectoryServices.AccountManagement.AuthZSet.get_CurrentAsPrincipal() at System.DirectoryServices.AccountManagement.FindResultEnumerator
1.get_Current() 在System.Linq.Enumerable.WhereEnumerableIterator1.MoveNext() at System.Linq.Enumerable.Any[TSource](IEnumerable
1来源)
答案 0 :(得分:6)
它说明错误消息中的哪个服务:
服务器服务未启动
服务器服务:
支持文件,打印和命名管道 为此分享网络 电脑。如果停止此服务, 这些功能将无法使用。 如果禁用此服务,请执行任何操作 明确依赖它的服务 将无法启动。
尝试更改代码以等待此服务,看看您是否有运气。虽然,我不确定你在做什么需要这项服务,所以不能保证它会起作用。