PowerShell

Creating Your Own Get-Driver Tool using PowerShell

  PowerTip of the Day, from PowerShell.com:   Creating Your Own Get-Driver Tool Some code snippets are really valuable, so you should turn them into functions to keep around as new PowerShell commands. Here’s a sample function: function Get-Driver {   param(     $Keyword = ‘*’   )   $col1 = @{Name=‘File Name’; Expression={ Split-Path… Continue reading Creating Your Own Get-Driver Tool using PowerShell