Posted On December 27, 2019

PowerShell: Nesting Functions Inside Functions

kimconnect 0 comments
blog.KimConnect.com >> Codes >> PowerShell: Nesting Functions Inside Functions

Demo 1: calling a function from within another function

function A{
Param($functionToCall)
Write-Host "Calling function: $functionToCall"

# Obtain the scripts from the externally parsed function
$script=(Get-Item "function:$functionToCall").ScriptBlock

# invoking external function
[ScriptBlock]::Create($script).Invoke();

}

function B{
Write-Host "Function B has been invoked"
}

A -functionToCall B

Sample Out

PS C:\Users\JustinBieber> A -functionToCall B
Calling function: B
Function B has been invoked

Demo 2: Passing function into another function, then invoke on a remote target as a Job (to enable simultaneous executions)

function pingDomain{
ping google.com;
}

function startJobOnRemoteComputer{
param(
$remoteComputer,
$functionToCall
)

Write-Host "Executing $functionToCall on $remoteComputer";
$script=(Get-Item "function:$functionToCall").Definition

do{
$session = New-PSSession -ComputerName $remoteComputer
write-host "Connecting to remote computer $remoteComputer..."
sleep -seconds 1
if ($session){write-host "Connected."}
} until ($session.state -match "Opened")

$job=invoke-command -Session $session -AsJob -ScriptBlock{
param($functionToCall);
[ScriptBlock]::Create($functionToCall).Invoke();
} -args $script

write-host "$($job.Name) has been initiated on $remoteComputer"
return $job;
}

$job=startJobOnRemoteComputer -remoteComputer "SHERVER009" -functionToCall pingDomain

Receive-Job -Id -job.Id;

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

Basic JavaScript: Comparison with the Strict Inequality Operator

function testStrictNotEqual(val) {// Only Change Code Below this Line// Add the strict inequality operator to…

PowerShell: Script to Apply Windows Update on 2016 Server

8/7/2020: there's a more updated version available here. # Update-Remote-Windows-2016-Servers.ps1$servers="SERVER1","SERVER2"function applyWindowsUpdates{ [CmdletBinding()] param ( [parameter(Mandatory=$true,Position=1)]…

Exchange: New-MoveRequest

New-MoveRequest -Identity '[email protected]' -TargetDatabase "DB01" -WhatIfNew-MoveRequest -Identity '[email protected]' -TargetDatabase "DB01"Get-Mailbox -Database DB01 | New-MoveRequest -TargetDatabase…