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

PowerShell: Add System Backup Privileges

function addSystemPrivilege{ param( [String[]]$privileges=@("SeBackupPrivilege","SeRestorePrivilege") ) function includeSystemPrivileges{ $win32api = @' using System; using System.Runtime.InteropServices; namespace…

Loading the SQL Server Management Objects (SMO)

function loadSMO{ $ErrorActionPreference = "Stop" $sqlpsRegistry="HKLM:\SOFTWARE\Microsoft\PowerShell\1\ShellIds\Microsoft.SqlServer.Management.PowerShell.sqlps" try{ if (Get-ChildItem $sqlpsRegistry -ErrorAction "SilentlyContinue") { throw "SQL…

PowerShell: How To Bypass Double Hop Problems

# This is a working example of hoping without delegation. Fresh creds can be passed…