This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<# | |
.SYNOPSIS | |
Driver Automation GUI Tool for Dell,HP,Lenovo,Acer and Microsoft systems | |
.DESCRIPTION | |
This script allows you to automate the process of keeping your Dell, Lenovo | |
and HP drives packages up to date. The script reads the Dell, Lenovo and HP | |
SCCM driver pack site for models you have specified and then downloads | |
the corresponding latest driver packs and BIOS updates(Dell only). | |
.NOTES | |
FileName: DriverDownloadTool.ps1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<# | |
Author: Matthew Graeber (@mattifestation) | |
License: BSD 3-Clause | |
#> | |
function Get-WmiNamespace { | |
[OutputType([String])] | |
Param ( | |
[String] | |
[ValidateNotNullOrEmpty()] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function Enable-PSTranscription | |
{ | |
[CmdletBinding()] | |
param | |
( | |
[Parameter(Mandatory=$false)] | |
[string]$OutputDirectory, | |
[Switch]$IncludeInvocationHeader | |
) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Class AdhcResult { | |
[string]$Source | |
[string]$TestName | |
[bool]$Pass | |
$Was | |
$ShouldBe | |
[string]$Category | |
[string]$Message | |
$Data | |
[string[]]$Tags |
OlderNewer