9

後でもう一度実行できるように、オフラインのコンピューターをテキスト ファイルに記録しようとしています。記録されていたり、キャッチでキャッチされているようには見えません。

function Get-ComputerNameChange {

    [CmdletBinding()]
    Param(
    [Parameter(Mandatory=$True,ValueFromPipeline=$True,ValueFromPipelinebyPropertyName=$True)]
    [string[]]$computername,
    [string]$logfile = 'C:\PowerShell\offline.txt'
    )




    PROCESS {

        Foreach($computer in $computername) {
        $continue = $true
        try { Test-Connection -computername $computer -Quiet -Count 1 -ErrorAction stop
        } catch [System.Net.NetworkInformation.PingException]
        {
            $continue = $false

            $computer | Out-File $logfile
        }
        }

        if($continue){
        Get-EventLog -LogName System -ComputerName $computer | Where-Object {$_.EventID -eq 6011} | 
        select machinename, Time, EventID, Message }}}
4

2 に答える 2

5

trycatching例外用です。-Quietスイッチを使用しているため、接続が失敗したときにまたはをTest-Connection返し、例外はありません。$true$falsethrow

別の方法として、次のことができます。

if (Test-Connection -computername $computer -Quiet -Count 1) {
    # succeeded do stuff
} else {
    # failed, log or whatever
}
于 2015-09-17T18:49:50.020 に答える