View Get-AzDevOpsProjects.ps1
<# | |
Author: I. Strachan | |
Version: 1.0 | |
Version History: | |
Purpose: Get az devops projects wrapper | |
#> |
View New-ADUsersFromCSV.ps1
<# | |
Author: I.C.A. Strachan | |
Version: | |
Version History: | |
Purpose: Infrastructure validation script to create ADUser from CSV file | |
#> |
View Get-ChessMatchesResults.ps1
[CmdletBinding()] | |
Param ( | |
[ValidateScript({ Test-Path $_ } )] | |
[string]$ChessMatchesPath = 'C:\Users\Irwin\Downloads\ChessData-master\ChessData-master', | |
[switch]$DisplaySumTotal | |
) | |
#region Define regex results. Make search case-insensitive just incase. | |
[regex]$whiteWin = '(?i)result\s+"1-0"' |
View Set-ADSearchBase-Intellisense.ps1
<# | |
Author: I.C.A. Strachan | |
Version: | |
Version History: | |
Purpose: Custom Intellisense completion for AD cmdlets with SearchBase parameter | |
ActiveDirectory & TabExpansion++ module is required. |