Posted On March 29, 2019

How to Call Functions or Pass Function as Argument

kimconnect 0 comments
blog.KimConnect.com >> Codes >> How to Call Functions or Pass Function as Argument
cls
 
function listClusters{
    # List all Clusters in this Domain
    $items=get-cluster -domain (get-addomain)
    $global:clusters=$items
}
 
function show{
    Param($callFunction)
    invoke-command (Get-Item “function:$callFunction”).ScriptBlock
    if ($clusters){$count=$clusters.count; $global:list=$clusters; $global:nodes=””}
    if ($nodes){$count=$nodes.count; $global:list=$nodes}
    
    $show=”`n————————————————–`n    There are $count items in this Collection: `n————————————————–`n”
        for ($row=0;$row -le $count-1;$row++){
            $server=$list[$row]
            $show += “$row”  + “: ” + “$server” + “`n”
            }                
    return $show
}
 
show -callFunction listClusters

Leave a Reply

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

Related Post

Setting Trace Logging for MS Dynamics CRM

Function 1: Set CRM Tracing # crmTraceLogSettings.ps1 $traceDirectory="L:\crmTraceLogs" $enable=$false $categories='*:\Verbose' $fileSize=10 $resetIis=$true function setCrmTrace{ param…

PowerShell: Moving Virtual Machines & Expanding Disk Volumes in Hyper-V & Microsoft Failover Clusters

Sample VM Migation Plan (time window = 3 hours): Pre-emptively resolve disks merging errors prior…

Error: 502 Gateway Error

Explanation: 502 Gateway Error generally means connection problems with an upstream proxy. In this instance,…