I'm trying to compare string which contains wildcard character.
("www.mysite.*" -match '`*')
But something is not working because I always get a True response, for example
("www.mysite.com" -match '`*')
I've tried using -contains instead, but i get always false.