在任何人谈论访问权限之前... 我拥有对服务的完全访问权限,可以手动停止Avecto Defendpoint服务和Avecto Defendpoint ePO界面。并且,将要使用此应用程序的所有用户也将具有管理员权限。
我正在尝试找到一种通过PowerShell停止Avecto Defendpoint服务的方法。我已经尝试过...
右键单击PowerShell(以管理员身份运行)
Stop-Service -Name "Avecto Defendpoint Service"
以此作为回应...
Stop-Service : Service 'Avecto Defendpoint Service (Avecto Defendpoint
Service)' cannot be stopped due to the following error: Cannot open Avecto
Defendpoint Service service on computer '.'.
我也尝试过使用-Force参数来得到相同的结果。如果在运行PowerShell之前手动禁用了Avecto,则可以再次手动启动该服务,然后可以从PowerShell中按计划将其杀死。但这违反了将功能嵌入程序的目的。
有什么想法或建议吗?
答案 0 :(得分:2)
您可以使用以下命令停止Defendpoint的工作:
Stop-Service -InputObject "Avecto Defendpoint Service" -Force
完成后需要重新启用它,请使用以下方法:
Start-Service -InputObject "Avecto Defendpoint Service"