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
# Trying to call ListByNameFiltered from | |
# http://www.orthogonal.com.au/computers/simpledb/index.htm | |
# (input parameters) => expression | |
# (id) => { return id == 1234; } | |
[System.Reflection.Assembly]::LoadWithPartialName("System.Linq.Expressions") | |
if ( [string]::IsNullOrEmpty([psobject].Assembly.GetType("System.Management.Automation.TypeAccelerators")::get["Expression"]) ) | |
{ |
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
Import-Module PModule.psm1 | |
$Credential = Get-Credential | |
$ips = Get-NetworkHostList 10.81.60.0/24 | |
$list = $ips[(70..75)] | |
$c = 0 | |
Foreach ($computer in $list) | |
{ | |
[bool]$alive = $false | |
Write-Progress -Activity "Finding available hosts" -CurrentOperation "Testing" -Status $computer -PercentComplete (($c++/$list.count)*100) |
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 | |
Return an array of IP Addresses | |
.DESCRIPTION | |
Return an array of System.Net.IPAddress objects from a string in the form 10.10.10.0/24. | |
.EXAMPLE | |
Return an array of usable IP addresses given a subnet. | |
PS C:\> $IPs = Get-NetworkHostList 192.168.7.0/24 | |
PS C:\> $IPs[0].IPAddressToString |
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 Out-Speech($text) { | |
$speechy = New-Object –ComObject SAPI.SPVoice; | |
$text | |
$voices = $speechy.GetVoices(); | |
foreach ($voice in $voices) { | |
$voice.GetDescription(); | |
$speechy.Voice = $voice; | |
$speechy.Speak($text); | |
} | |
} |
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 | |
Gets a PowerShell Credential (PSCredential) from the Windows Credential Manager | |
.DESCRIPTION | |
This module will return a [PSCredential] object from a credential stored in Windows Credential Manager. The | |
Get-StoredCredential function can only access Generic Credentials. | |
Alias: GSC |
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 Select-UniqueClientIP { | |
[CmdletBinding(SupportsPaging,DefaultParameterSetName="IPv4")] | |
[OutputType([System.String[]])] | |
param( | |
[Parameter(Position=0,Mandatory,ValueFromPipeline,ValueFromPipeLineByPropertyName)] | |
[ValidateNotNullOrEmpty()] | |
[Alias("FullName")] | |
[string[]] | |
$Path, | |
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
PS C:\> Get-Web -Url http://www.youtube.com/watch?v=xPRC3EDR_GU -AsMicrodata -ItemType http://schema.org/VideoObject | Export-PSData .\PipeworksQuickstart.video.psd1 |
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
PS C:\> Get-Web "http://localhost:9092" -AsJson |
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
PS C:\> Start-PSNode -Server http://localhost:9092/ -AuthenticationType IntegratedWindowsAuthentication -Command { | |
Get-Process | Select-Object Handle, WorkingSet, Id, Name, UserProcessorTime | ConvertTo-Json | |
} |
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 New-Array {,$args} |
NewerOlder