2

我正在尝试在任务计划程序上运行 powershell 脚本,但无法理解适合我的脚本的日志记录命令。我想让它按计划运行。

该脚本将删除早于 x 天的文件和文件夹,并创建一个输出日志。

function Out-Log {
    param (
    [Parameter(Mandatory=$true,ValueFromPipeline=$true)]
    [string]$message,
    [switch]$Error
    )
    $logPath = $env:TEMP + "\Filedeletion.log"
    $message | Out-File -FilePath $logPath -Append
    }
trap 
{
    "error:" | Out-Log 
    $_.exception.message | Out-Log
    break
}
$Error.Clear()
try 
{
    "Starting" | Out-Log
    $DateToDelete = 1
    $dateLimit = (Get-Date).AddDays(-$DateToDelete)
    $StartFolder = "c:\TEST1"
    Get-ChildItem -Recurse -Force -Path $StartFolder | 
        foreach { 
            $currentItemIsFolder = $_.PsIsContainer;
            $curentItemIsOld = $_.LastWriteTime -lt $dateLimit
            if ($curentItemIsOld -and (-not $currentItemIsFolder))
            {
                "Removing '$($_.fullname)'." | Out-Log

                 Remove-Item -Path ($_.fullname) -Force -WhatIf

            }
        }

}
finally 
{
    if ($Error)
    {
        "`$error stack:" | Out-Log
          $error | foreach {$_.exception.ToString() |  Out-Log}
    }
    "Stopping" | Out-Log
}

我试图使用

Powershell -file "c:\Powershell\Filedeletion_logs_test.ps1"

通过批处理运行powershell。

我试图检查 Powershell/? 中的命令 但没有找到适用于我的脚本的任何合适的日志记录命令。

有人可以帮忙吗?

4

2 回答 2

0

您不需要在任务计划中运行 powershell 的单独批处理文件。您所需要的只是这个不错的教程。它是一步一步详细的,但很容易设置。 http://community.spiceworks.com/how_to/show/17736-run-powershell-scripts-from-task-scheduler

于 2013-04-04T05:20:37.470 回答
0

你不能用SCHTASKS做同样的事情吗?

http://ss64.com/nt/schtasks.html

您应该能够通过 TYPE 命令传送服务器列表并将任务添加到服务器集。

例如:

http://www.robvanderwoude.com/ntadmincommands.php

FOR /F %%A IN (servers.txt) DO (
SCHTASKS /CREATE /S %%A /U "system" /P "" /TN "Powershell Task" /TR "Powershell -file \"c:\my folder\script.ps1\"" 
)
于 2013-09-08T22:48:36.333 回答