0

背景: ログ エントリが存在するかどうかを検出しようとしています。存在する場合は、その文字列変数を宣言し、そうでない場合は続行します。スクリプトの一部を次に示します (この順序で)。

$Arch = (Get-WmiObject -Class Win32_OperatingSystem).OSArchitecture

If ($Arch -eq "64-bit") {
  $SMSAgentFolder = "$env:WinDir\SysWOW64\CCM";
  $CCMSetupFolder = "$Env:Windir\CCMSetup"
} Else {
  $SMSAgentFolder = "$Env:WinDir\System32\CCM";
  $CCMSetupFolder = "$Env:Windir\System32\CCMSetup"
}

New-Variable HinvStrWarning -Value "Warning! There is not a Hardware Inventory entry listed in the Inventory Agent Log file."

Function SetHinv {
  $Hinv = Select-String $Hinvpattern $Invfile | select -Last 1 | % {
    $_.Matches.Groups[2].Value + ' ' + $_.Matches.Groups[1].Value
  }
}

Function SetTSSinv {
  $TSSInv = (New-TimeSpan $Sinv).Days
}

$InvFile = "$SMSAgentFolder\logs\inventoryagent.log"

$Hinvpattern = 'HinvEndpoint.*<time="(.*?)" date="(.*?)"'

$Hinv = Select-String $Hinvpattern $InvFile | select -Last 1 | % {
  $_.Matches.Groups[2].Value + ' ' + $_.Matches.Groups[1].Value
}

If(![string]::IsNullOrWhiteSpace($Hinv)) {
  SetHinv; SetTSHinv
} else {
  Add-Content $verboseLog "$HinvStrWarning"
}

関数名を呼び出しても機能Function SetTSSinv {$TSSInv = (New-TimeSpan $Sinv).Days}しませんが、次のように手動で実行すると$TSSInv = (New-TimeSpan $Sinv).Days問題ありません。

トラブルシューティングで得た限りでは、ここに追加されたコードは正しくない可能性があります。

追加申告:

$7Days = $GetDate.AddDays(7) 
$SMSCli = [wmiclass] "\\$Env:ComputerName\root\ccm:SMS_Client"

機能:

Function SinvScan {$SMSCli.TriggerSchedule("{00000000-0000-0000-0000-000000000002}")} 
Function SinvStr {If (((($GetDate).Days) - $TSSinv) -ge $7Days){Add-Content $VerboseLog $InvLogSinvScn; SinvScan}}

変数の削除は、上記に影響を与える可能性があります.. 助けてくれてありがとう!

申し訳ありませんが、私はそれを考えすぎていました。私のインスタンスでは、これは機能します:

New-Variable SinvStrWarning -Value "Warning! There is not a Software Inventory entry listed in the Inventory Agent Log file."

$InvFile = "$SMSAgentFolder\logs\inventoryagent.log"

Function SetSinv {
  $Sinv = Select-String $Sinvpattern $Invfile | select -Last 1 | % {
    $_.Matches.Groups[2].Value + ' ' + $_.Matches.Groups[1].Value
  }
}

$Sinvpattern = 'SinvEndpoint.*<time="(.*?)" date="(.*?)"'

$Sinv = Select-String $Sinvpattern $Invfile | select -Last 1 | % {
  $_.Matches.Groups[2].Value + ' ' + $_.Matches.Groups[1].Value
}

$SinvNull = $Sinv -ne $Null

If ($SinvNull -eq "True"){
  SetSinv;
  $TSSInv = (New-TimeSpan $Sinv).Days
} Else {
  Add-Content $verboseLog "$SinvStrWarning"
}
4

2 に答える 2