将PowerShell控制台文本写入文件

时间:2018-12-03 15:50:44

标签: powershell

我有一个PowerShell脚本,该脚本连接到数据库并遍历一些数据。

脚本完成或引发错误后,我需要将控制台中显示的所有文本附加到日志文件中。

由于我不想保存特定的值,因此无法使用Write-Output来实现这一点,我只需要将整个控制台文本附加到文件中即可。

谢谢。

编辑:

实际上,我要寻找的最终结果是带有时间戳的日志文件,这是我的代码:

$server = "USER\SQLEXPRESS"
$database = "database_test"
$tablequery = "SELECT name from sys.tables"

#Delcare Connection Variables
$connectionTemplate = "Data Source={0};Integrated Security=SSPI;Initial Catalog={1};"
$connectionString = [string]::Format($connectionTemplate, $server, $database)
$connection = New-Object System.Data.SqlClient.SqlConnection
$connection.ConnectionString = $connectionString

$command = New-Object System.Data.SqlClient.SqlCommand
$command.CommandText = $tablequery
$command.Connection = $connection

#Load up the Tables in a dataset
$SqlAdapter = New-Object System.Data.SqlClient.SqlDataAdapter
$SqlAdapter.SelectCommand = $command
$DataSet = New-Object System.Data.DataSet
$SqlAdapter.Fill($DataSet)
$connection.Close()

$DriveName = (get-location).Drive.Name
$extractDir = md -Force "$($DriveName):\csv\files"

# Loop through all tables and export a CSV of the Table Data
foreach ($Row in $DataSet.Tables[0].Rows)
{
    $connection.open();
    #Specify the output location of your dump file
    $command.CommandText = "SELECT * FROM [$($Row[0])]"
    $command.Connection = $connection

    (Get-Culture).NumberFormat.NumberDecimalSeparator = '.'
    (Get-Culture).DateTimeFormat.ShortDatePattern = 'yyyy-MM-dd'

    $SqlAdapter = New-Object System.Data.SqlClient.SqlDataAdapter
    $SqlAdapter.SelectCommand = $command
    $DataSet = New-Object System.Data.DataSet
    $SqlAdapter.Fill($DataSet)
    $connection.Close()

    $extractFile = "$($extractDir)\$($Row[0]).csv"
    $DataSet.Tables[0]  | Export-Csv $extractFile -NoTypeInformation -Encoding UTF8
}

我需要在日志文件中打印带有时间戳的导出到csv($extractFile)的每个文件名,然后如果发生错误,我也需要打印一个时间戳,依此类推,直到脚本完成。

2 个答案:

答案 0 :(得分:2)

您可以使用Start-Transcript进行调试:

Start-Transcript -path "C:\temp\myTranscript.txt"

在脚本的开头添加,并将所有控制台输出写入C:\temp\myTranscript.txt

答案 1 :(得分:2)

您可以使用 Start-Transcript try/catch/finally 或编写自己的代码(将控制台输出存储到变量中,以及根据需要在文本文件后附加内容)。请注意-Append参数和Start-Transcript

没有代码,很难知道推荐哪个。

展开

现在您已经添加了一些代码,请参见每种方法的一些其他信息。我对通过PowerShell进行的SQL并不熟悉,因此不确定您将获得什么样的输出/错误(关于错误,特别是终止或不终止的错误)

成绩单

Start-Transcript应该放在开头,Stop-Transcript应该放在结尾。这将记录控制台上通常显示的内容。在记录了成绩单的同时运行Start-Transcript会导致令人讨厌的错误。

Start-Transcript -Path "c\temp\mylogfile.txt"

$server = "USER\SQLEXPRESS"
$database = "database_test"
$tablequery = "SELECT name from sys.tables"
...

...
    $extractFile = "$($extractDir)\$($Row[0]).csv"
    $DataSet.Tables[0]  | Export-Csv $extractFile -NoTypeInformation -Encoding UTF8
}

Stop-Transcript

终止错误

适当添加try / catch / finally。您可以偷懒地将其添加到整个代码中,或者适当地做并包装可能导致terminating errors的部分。

...
foreach ($Row in $DataSet.Tables[0].Rows)
{
    try{
        $connection.open();
        #Specify the output location of your dump file
        ...

        ...
        ...
        $extractFile = "$($extractDir)\$($Row[0]).csv"
        $DataSet.Tables[0]  | Export-Csv $extractFile -NoTypeInformation -Encoding UTF8
    }catch{
        # what to do if there is a terminating error
    }finally{
        # what to do whether there is an error or not

        if(Test-Path "$($extractDir)\$($Row[0]).csv"){
            # simple check: if a file was created, no error... right?
            "$(Get-Date -f 'yyyy-MM-dd hh:mm:ss') $($Error[0])" | Out-File "c:\temp\mylogfile.txt" -Append
        }else{
            "$(Get-Date -f 'yyyy-MM-dd hh:mm:ss') $extractFile" | Out-File "c:\temp\mylogfile.txt" -Append
        }
    }
}
...

无终止错误

只需添加一行即可导出错误。确保在每个循环中清除自动变量$Error

...
foreach ($Row in $DataSet.Tables[0].Rows)
{
    $Error.Clear()
    $connection.open();
    #Specify the output location of your dump file
    ...

    ...
    ...
    $extractFile = "$($extractDir)\$($Row[0]).csv"
    $DataSet.Tables[0]  | Export-Csv $extractFile -NoTypeInformation -Encoding UTF8

    # if there are no errors, write filename. Otherwise write errors
    if([string]::IsNullOrEmpty($Error){
        "$(Get-Date -f 'yyyy-MM-dd hh:mm:ss') $extractFile" | Out-File "c:\temp\mylogfile.txt" -Append
    }else{
        "$(Get-Date -f 'yyyy-MM-dd hh:mm:ss') $Error" | Out-File "c:\temp\mylogfile.txt" -Append
    }
}
...