Pattern: Use of reserved character for cmdlet
Issue: -
You cannot use following reserved characters in a function or cmdlet name as these can cause parsing or runtime errors.
Reserved Characters include:
#,(){}[]&/\\$^;:\"'<>|?@`*%+=~
Remove reserved characters from names.
Example of incorrect code:
function CustomFunction[1]
{...}
Example of correct code:
function CustomFunction
{...}