1

我在任务计划程序上添加了一个 powershell 脚本任务,将用户帐户设置为管理员,然后将选项设置为“仅在用户登录时运行”。

当我手动运行此任务时,它会正确执行,但是当我将选项设置为“无论用户是否登录都运行”时,它会执行但从未成功完成任务。

在两种情况下都启用了“以最高权限运行”。似乎发生了什么?如何在无需登录的情况下运行任务?

编辑:

脚本将文件从已安装的驱动器复制到本地目录。当我使用 Powershell 而不是任务调度程序逐行运行脚本时,它可以工作(在普通和提升的 Powershell 上)。

$currentDate = (Get-Date).AddDays(-1).ToString('yyyyMMdd');

gci "C:\some_directory" | where-object { ($_.Name -match $currentDate) -and (! $_.PSIsContainer) } | Copy-Item -Destination "Y:\" -force;

并在任务调度程序上:Powershell -Command "c:\scripts\my_script.ps1"

4

1 回答 1

0

对于错误日志,需要将脚本拆分为更易于管理的块。单线对于交互式会话很有效,但不容易维护。

$currentDate = (Get-Date).AddDays(-1).ToString('yyyyMMdd')
$log = "c:\temp\logfile.txt"
$errorCount = $Error.Count

# Save the source files into an array
$files = @(gci "C:\some_directory" | ? {
  ($_.Name -match $currentDate) -and (! $_.PSIsContainer) 
})

# Log about source to see if $files is empty for some reason    
Add-Content $log $("Source file count: {0}" -f $files.Count)
# Check that Y: drive is available
Add-Content $log $("Testing access to destination: {0}" -f (test-path "y:\") )

$files | % {
  # Check the error count for new errors and log the message
  if($Error.Count -gt $errorCount) {
    Add-Content $log $Error
    $errorCount = $Error.Count
  }
  Copy-Item $_.FullName -Destination $(join-path "y:" $_.Name) -force
}
于 2013-10-11T07:46:44.437 回答