r-Techsupport / Get-Specs

Windows Specifications script for rTechsupport
GNU General Public License v3.0
6 stars 4 forks source link

Convert contains to Like #90

Closed sealsrock12 closed 2 years ago

sealsrock12 commented 2 years ago

Contains is for containment, Like is for checking

PS> $a="KMSpico blah"
PS> $a -Like "KMS*"
True
PS> $a -Contains "KMS*"
False
PS> $a -Contains "KMS" 
False
sealsrock12 commented 2 years ago

Closed in favor of #91