choco list jq
jq 1.5 [Approved] Downloads cached for licensed users
EthanBrown.SublimeText2.WebPackages 0.3.0 - Possibly broken
velocity 1.1.8 [Approved] Downloads cached for licensed users
Dable 1.2.1 [Approved]
4 packages found.
| Noun Verbs | |
| ---- ----- | |
| ADObject Get | |
| AdoCommand Invoke | |
| AdoConnection Get | |
| AdoDataProvider Get | |
| AlternateDataStream Test | |
| Apartment Invoke | |
| Archive Expand, Read | |
| Assembly Test |
| function Get-ModuleNounsAndVerbs { | |
| <# | |
| .SYNOPSIS | |
| Gets list of cmdlet & function nouns in a module, each noun is complimented with the list of cmdlet verbs | |
| .DESCRIPTION | |
| Helps to understand internal logic of a module by summarizing its cmdlets by used nouns. | |
| Cmdlet gets sorted list of unique cmdlet & function nouns in a module, and complement each one with the list of verbs implemented in a module | |
| .INPUTS |
| # | |
| # Module manifest for module 'PSStackExchange' | |
| # | |
| # Generated by: RamblingCookieMonster | |
| # | |
| # Generated on: 8/2/2015 | |
| # | |
| @{ |
| New-Item -type Directory .\Module_PowershellCookBook | |
| Save-Module -name PowerShellCookbook -path .\Module_PowershellCookBook | |
| & { | |
| $fileName = Get-ChildItem -path .\Module_PowershellCookBook\*\PowerShellCookbook.psm1 -recurse | |
| $functions = Get-Content -path $fileName.fullName | | |
| %{ Select-String '(?ix) ^(?<= \s*) function \s* ([-\w]+) \s* $' -input $_ -allMatches } | | |
| %{ $_.Matches.Groups[1].Value } | |
| ($functions | %{ "'$_'" }) -join ",`n" | Out-Clipboard | |
| } |
| DATA msgs { ConvertFrom-StringData @' | |
| Err01 = Attention! | |
| Err02 = File not found! | |
| '@ | |
| } | |
| DATA exportVariables { | |
| 'variableName1' | |
| 'variableName2' | |
| } |
choco list jq
jq 1.5 [Approved] Downloads cached for licensed users
EthanBrown.SublimeText2.WebPackages 0.3.0 - Possibly broken
velocity 1.1.8 [Approved] Downloads cached for licensed users
Dable 1.2.1 [Approved]
4 packages found.
| Function New-WindowsSetupISO { | |
| Param( | |
| [Parameter( | |
| Mandatory = $false | |
| )] | |
| [alias( 'sourcePath' )] | |
| [string] $Path = '.', | |
| [Parameter( | |
| Mandatory, |
| $PathToOscdimg = "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Deployment Tools\amd64\Oscdimg\" | |
| $BootData = '2#p0,e,b"{0}"#pEF,e,b"{1}"' -f "$ISOMediaFolder\boot\etfsboot.com", "$ISOMediaFolder\efi\Microsoft\boot\efisys.bin" | |
| $Arguments = @{ | |
| FilePath = "$PathToOscdimg\oscdimg.exe" | |
| ArgumentList = @( | |
| "-bootdata:$BootData", | |
| '-u2', | |
| '-udfver102', | |
| "$ISOMediaFolder", | |
| "$ISOFile" |