2017-02-20 21 views
1

Я использую приведенную выше команду, чтобы получить список зарегистрированных пользователей. Это хорошо работает, когда я запускаю скрипт PowerShell, содержащий эту команду, но когда я запускаю этот же скрипт с помощью планировщика задач, это дает следующее сообщение об ошибке:

"The term 'quser' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again.", 
      "stack_trace": " at System.Management.Automation.CommandDiscovery.LookupCommandInfo(String commandName, CommandTypes commandTypes, SearchResolutionOptions searchResolutionOptions, CommandOrigin commandOrigin, ExecutionContext context) 
    at System.Management.Automation.CommandDiscovery.LookupCommandProcessor(String commandName, CommandOrigin commandOrigin, Nullable`1 useLocalScope) 
    at System.Management.Automation.CommandFactory._CreateCommand(String commandName, CommandOrigin commandOrigin, Nullable`1 useLocalScope) 
    at System.Management.Automation.ExecutionContext.CreateCommand(String command, Boolean dotSource) 
    at System.Management.Automation.PipelineOps.AddCommand(PipelineProcessor pipe, CommandParameterInternal[] commandElements, CommandBaseAst commandBaseAst, CommandRedirection[] redirections, ExecutionContext context) 
    at System.Management.Automation.PipelineOps.InvokePipeline(Object input, Boolean ignoreInput, CommandParameterInternal[][] pipeElements, CommandBaseAst[] pipeElementAsts, CommandRedirection[][] commandRedirections, FunctionContext funcContext) 
    at System.Management.Automation.Interpreter.ActionCallInstruction`6.Run(InterpretedFrame frame) 
    at System.Management.Automation.Interpreter.EnterTryCatchFinallyInstruction.Run(InterpretedFrame frame)". 
+0

Под какой учетной записью пользователя запускается задача? 'Quser.exe' должен находиться в' c: \ windows \ system32', который должен находиться в пути. – vonPryz

ответ

1

QUser.exe проживает в C: \ Windows \ System32. Итак, если вы заходите в каталог и запускаете его, он будет работать.

Вот полная ссылка для того же самого со всеми скриншотами.

QUser

Надеется, что это помогает.

 Смежные вопросы

  • Нет связанных вопросов^_^