Posted On October 26, 2020

PowerShell: Convert Array to Hash and back to Array

kimconnect 0 comments
blog.KimConnect.com >> Codes >> PowerShell: Convert Array to Hash and back to Array
    # convert 2D Array to Hash Table while removing any duplicate keys
    function arrayToHash($arr){
            $hash = new-object System.Collections.Hashtable
            $arr=$arr|sort -Descending # Higher (more recent) values on top
            for ( $i = 0; $i -lt $arr.Length; $i++ ) {
              try{$hash.Add($arr[$i][0],$arr[$i][1])}catch{}
            }
            return $hash
        }
     
    function hashToArray($hash){
        $arr=@();
        [string[]] $arr = ($hash | Out-String -Stream) -ne '' | select -Skip 2
        return $arr
        }

Leave a Reply

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

Related Post

Bash Shell: Rename Files – Prepend and Append

Pre-pending # Prepend any file that doesn't have the word "/thumbs_" in its full path…

PowerShell: Activate Remote Windows

$remoteWindows="SHERVER01","SHERVER02"$licenseKey="XXXXX-XXXXX-XXXXX-XXXXX-XXXXX"function activateWindows{ param( [string]$key ) $licensingService = get-wmiObject -query "select * from SoftwareLicensingService" -computername $env:computername;…

PowerShell: Scan for Available or Unavailable IPs

This function is a demonstration of multi-tasking using PowerShell. The program will ping multiple targets…