Powershell - Checking for duplicate array elements
To support me, you can subscribe to the channel, share and like the videos, disable your ad blocker or make a donation. Thank you!
Hello,
A little Powershell code that lets you check for duplicate elements in an array.
# Defining the set of values with duplicates.$array = 'A', 'B', 'C', 'C', 'B'
# Group objects and check for groupings greater than 1 (duplicates)$Doublon = ($array | Group-Object | Where-Object -FilterScript {$_.Count -gt 1}).Values
# Check condition if duplicates or notif ($null -eq $Doublon) { 'No duplicates'} else { $Doublon}
# Define the set of values with no duplicatesarray = 'A', 'B', 'C'
# Check condition if duplicates or notif ($null -eq $Doublon) { 'No duplicates'} else { $Doublon}
# And we can transform this code into a functionfunction Test-Doublon { [CmdletBinding()] param ( [string[]] $value ) #Group objects and check for groupings greater than 1 (duplicates) $Doublon = ($Value | Group-Object | Where-Object -FilterScript {$_.Count -gt 1}).Values
# Check condition if duplicates or not if ($null -eq $Doublon) { 'No duplicates'} else { $Doublon }}# Possible syntaxesTest-doublon -value $arrayTest-doublon $array # Or as a function allowing pipeline valuesfunction test-doublon { [CmdletBinding()] param ( [array][Parameter(ValueFromPipeline)] $Value )
#Group objects and check for groupings greater than 1 (duplicates) $Doublon = ($Value | Group-Object | Where-Object -FilterScript {$_.Count -gt 1}).Values
# Check condition if duplicates or not if ($null -eq $Doublon) { 'No duplicates'} else { $Doublon} }
# Possible syntaxestest-doublon -value $arraytest-doublon $array# Use the unary operator (the comma) to send our array as a single element, otherwise the pipeline will process each array value separately,$array | test-doublon
Related links
Powershell - Testing network connectivity and port accessibility
Testing network connectivity and port accessibility with PowershellPowershell - Display network connections (equivalent to netstat)
Display network connections (listening ports, active connections...)Powershell - Testing name resolution (equivalent to nslookup)
Powershell commands to test name resolution (equivalent to nslookup)Powershell - View and manage DNS configuration of network interfaces
Powershell commands to display and manage DNS configuration of network interfacesPowershell - Managing IP configuration of network interfaces
Powershell commands to view and modify the IP configuration of network interfacesPowershell - Managing the status and configuration of network interfaces
Powershell commands to view and modify the status and configuration of network interfaces (disable IPv6, enable/disable an interface)
Follow me on
Support me
Last content
Powershell - Testing network connectivity and port accessibility
Powershell - Display network connections (equivalent to netstat)
Powershell - Testing name resolution (equivalent to nslookup)
Powershell - View and manage DNS configuration of network interfaces
Powershell - Managing IP configuration of network interfaces
Powershell - Managing the status and configuration of network interfaces
Powershell and the Left Hand Side
Powershell - Managing disks, partitions and volumes