English 中文(简体)
任务调度器没有用 MSTest 命令执行批(bat) 文件
原标题:Task Scheduler not executing batch (bat) file with MSTest commands

我有几个批次文件, 这些文件设置了日志文件路径, 并启动视觉工作室 2010 命令测试。 当我从窗口探索者处执行批次文件时, 它运行完好。 问题是当我使用 Windows 任务调度器运行批次文件时, 我的订单测试没有执行 。

样本代码 :

::: 
::: This batch kicks off the searchinlineset test set node.
:::

SetLogPath.vbs "\spm08r2dwATPDataWebportal Test Results"

%comspec% /c "call "%VS100COMNTOOLS%vsvars32.bat" & mstest /testcontainer:"%SmartUITestInstallPath%AUTsTestsDemoSuiteSearchInlineSetSearchInlineSet.orderedtest"" /nologo /usestderr

OS: Windows 7/2008 r2

任务调度器配置图像 :

  1. 一般情况:

    General
    (source: vsoh.com)

  2. 设置 :

    Settings
    (source: vsoh.com)

  3. 条件:

    Conditions
    (source: vsoh.com)

  4. 编辑动作 :

    Edit Action
    (source: vsoh.com)

  5. 编辑触发器 :

    Edit Trigger
    (source: vsoh.com)

最佳回答

导航到调度任务的总标签, 并选择“ 以最高特权运行 ” 。 将用户账户更改为系统, 并使用命令允许在代码中传递认证参数, 如 Powershell cmdlet Start- Bits Transfer 。

另外,在编辑动作选项卡下填写正确路径或参数的正确起始点。 我使用.bat 文件来启动它, 所以我在框中填入起始点 。

问题回答

Workaround:

导航到 < 强势 > 计划任务 < 强势 > 的Tab < / 强'将军, 并仅在用户登录时选择 < 强势 > " 运行。 现在, 调度器将执行. 命令测试计划的任务。 这当然要求用户登录, 但至少要登录 < 强势 >.bat 将按计划执行 。

为文件夹和文件明确设置权限以完全控制,并将文件夹参数中的启动作为目录路径,批量文件为我固定了发行内容。

Check out this link http://social.technet.microsoft.com/Forums/en-US/winservermanager/thread/d47d116e-10b9-44f0-9a30-7406c86c2fbe/





相关问题
complex batch replacement linux

I m trying to do some batch replacement for/with a fairly complex pattern So far I find the pattern as: find ( -name *.php -o -name *.html ) -exec grep -i -n hello {} + The string I want ...

How to split a string by spaces in a Windows batch file?

Suppose I have a string "AAA BBB CCC DDD EEE FFF". How can I split the string and retrieve the nth substring, in a batch file? The equivalent in C# would be "AAA BBB CCC DDD EEE FFF".Split()[n]

How to check which Operating System?

How can I check OS version in a batch file or through a vbs in an Windows 2k/2k3 environment ? You know ... Something like ... : "If winver Win2k then ... or if winver Win2k3 then ....

热门标签