Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Severity Level: Error
Description
You cannot use following reserved characters in a function or cmdlet name as these can cause parsing or runtime errors.
Reserved Characters include: #,(){}[]&/\\$^;:\"'<>|?@`*%+=~
How
Remove reserved characters from names.
Example
Wrong
function MyFunction[1]
{...}
Correct
function MyFunction
{...}