PoshCode Archive  Artifact [3eab7507dd]

Artifact 3eab7507dd0e8c6d797372c25e739cc501b67ebce07d0df3c2b4bdbba94ce57b:

  • File Update-Sysinternals.ps1 — part of check-in [00d89520b3] at 2018-06-10 14:17:08 on branch trunk — goo.gl/4sX8N3 (user: sarkisyan size: 1985)

# encoding: ascii
# api: powershell
# title: Update-Sysinternals
# description: goo.gl/4sX8N3
# version: 0.1
# type: function
# author: sarkisyan
# license: CC0
# function: Update-Sysinternals
# x-poshcode-id: 6509
# x-archived: 2016-09-15T18:40:09
# x-published: 2016-09-12T07:20:00
#
#
#requires -version 5
function Update-Sysinternals {
  <#
    .SYNOPSIS
        Keeps Sysinternals tools in actual state.
  #>
  param(
    [Parameter(Mandatory=$true)]
    [ValidateNotNullOrEmpty()]
    [ValidateScript({Test-Path $_})]
    [String]$Path #path where tools has been stored
  )
  
  begin {
    $cur, $new = @{}, @{}
    
    $Path = Convert-Path $Path
    (Get-ChildItem "$Path\*.exe").Where{
      $_.VersionInfo.CompanyName -match 'sysinternals'
    }.ForEach{$cur[$_.Name] = $_.VersionInfo.FileVersion}
    
    Write-Verbose "connecting to Sysinternals..."
    if (!(Test-Path "$(($net = (Get-PSDrive).Where{
      $_.DisplayRoot -match 'sysinternals'
    }).Name):")) {
      Write-Verbose "mount Sysinternals drive..."
      net use * https://live.sysinternals.com | Out-Null
      $net = (Get-PSDrive).Where{$_.DisplayRoot -match 'sysinternals'}
    }
  }
  process {
    Write-Verbose "checking for updates..."
    $cur.Keys.ForEach{
      if ($cur[$_] -ne (
        $$ = (Get-Item "$($net.Name):$_").VersionInfo.FileVersion
      )) { $new[$_] = $$ }
    }
  }
  end {
    if (!$new.Count) {
      Write-Host All tools are already updated. -ForegroundColor green
    }
    else {
      $new.Keys.ForEach{
        if(($p = Get-Process $_.Split('.')[0] -ErrorAction 0)) {
          $p.ForEach{Stop-Process $_.Id -Force}
        }
        Write-Verbose "Update: $_"
        Copy-Item "$($net.Name):$_" $Path -Force
      }
      Write-Host Now all tools has actual version. -ForegroundColor cyan
    }
    Write-Verbose "dismount Sysinternals drive..."
    net use "$($net.Name):" /delete | Out-Null
  }
}