I am attempting to create a backup script that will move files that are older that 30 days, but I want to be able to exclude folders from the list
$a = "C:\Temp\Exclude\test" $b = "C:\Temp\Exclude"
if I run the following: $a -match $b
Following this article: http://www.computerperformance.co.uk/powershell/powershell_conditional_operators.htm#Example_1_-Match
$Guy ="Guy Thomas 1949" $Guy -match "Th"
this returns true