This file contains 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
param( | |
[Parameter(ValueFromPipeline=$true)] | |
[ValueType] | |
$profileEvent | |
) | |
begin { | |
$profileEvents = [System.Collections.Generic.List[object]]::new() | |
} |
This file contains 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
param( | |
[Parameter(ValueFromPipeline)] | |
[string]$json | |
) | |
$obj = ConvertFrom-Json -InputObject $json -Depth 100 -AsHashtable | |
$location = "/" | |
function Test-Location ($path) { |
This file contains 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
param( | |
[Parameter(ValueFromPipeline)] | |
[string]$json, | |
[Parameter(Mandatory,Position=0)] | |
[string]$find | |
) | |
$obj = ConvertFrom-Json -InputObject $json -Depth 100 |
This file contains 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
# adapted from https://community.idera.com/database-tools/powershell/powertips/b/tips/posts/identifying-windows-version-part-2 | |
# download and unzip latest https://www.nuget.org/packages/Microsoft.Windows.SDK.NET.Ref and get these dlls from the 'lib' folder | |
Add-Type -AssemblyName ./winrt.runtime.dll | |
Add-Type -AssemblyName .\Microsoft.Windows.SDK.NET.dll | |
# define call and information to query | |
[Collections.Generic.List[System.String]]$names = 'DeviceFamily', | |
'OSVersionFull', | |
'FlightRing', |
This file contains 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
param($address) | |
$parcelUrl = 'https://gismaps.kingcounty.gov/parcelviewer2/addSearchHandler.ashx?add=' | |
$parcel = Invoke-RestMethod ($parcelUrl + [uri]::EscapeUriString($address)) | |
$id = $parcel.items.pin | |
$propertyUrl = 'https://gismaps.kingcounty.gov/parcelviewer2/pvinfoquery.ashx?pin=' | |
$property = Invoke-RestMethod ($propertyUrl + $id) | |
$property.items |
This file contains 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
[DscResource()] | |
class FileContentResource { | |
[DscProperty(Key)] | |
[string] $filePath | |
[DscProperty(Mandatory)] | |
[string] $content | |
[FileContentResource] Get() |
This file contains 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
Start-Job { | |
# path would need to be updated to where you have the FileContentResource.psm1 example saved | |
if ($env:PSModulePath -notlike "*demo*") { | |
$env:PSModulePath += [System.IO.Path]::PathSeparator + '/Users/steve/test/demo' | |
} | |
# temporarily ensure latest version required for this demo is loaded | |
Import-Module /Users/steve/test/demo/PSDesiredStateConfiguration -Force |
This file contains 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
# this is an example of what a converted script resource would look like as a class keeping | |
# the private functions | |
[DscResource()] | |
class FileContentResource { | |
[DscProperty(Key)] | |
[string] $filePath | |
[DscProperty(Mandatory)] |
This file contains 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
param($file) | |
$tokens = $null | |
$err = $null | |
$file = Resolve-Path $file | |
$ast = [System.Management.Automation.Language.Parser]::ParseFile($file, [ref]$tokens, [ref]$err) | |
$commands = $ast.FindAll({$true},$true) | ? { $_ -is [System.Management.Automation.Language.CommandAst] } | % { $_.CommandElements[0].Value } | Sort-Object -Unique | |
$sources = [System.Collections.Generic.List[string]]::new() | |
$commands | % { |
This file contains 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
$parameters = @{ | |
Key = 'F7' | |
BriefDescription = 'ShowMatchingHistoryOcgv' | |
LongDescription = 'Show Matching History using Out-ConsoleGridView' | |
ScriptBlock = { | |
param($key, $arg) # The arguments are ignored in this example | |
$line = $null | |
$cursor = $null | |
[Microsoft.PowerShell.PSConsoleReadLine]::GetBufferState([ref]$line, [ref]$cursor) | |
$history = [Microsoft.PowerShell.PSConsoleReadLine]::GetHistoryItems().CommandLine | Select-Object -Unique |