Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<p>
You cannot use following reserved characters in a function or cmdlet name as these can cause parsing or runtime errors.

Reserved Characters include: #,(){}[]&/\\$^;:\"'<>|?@`*%+=~
Reserved Characters include: #,(){}[]&amp;/\\$^;:\"'&lt;&gt;|?@`*%+=~
</p>

</overview>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<qhelp>
<overview>
<p>Code that passes user input directly to
<code>Invoke-Expression</code>, <code>&</code>, or some other library
<code>Invoke-Expression</code>, <code>&amp;</code>, or some other library
routine that executes a command, allows the user to execute malicious
code.</p>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

<p>Avoid using <code>Invoke-Expression</code> in your powershell code.</p>

<p>If you’re running some command and the command path has spaces in it, then you need the command invocation operator <code>&</code></p>
<p>If you’re running some command and the command path has spaces in it, then you need the command invocation operator <code>&amp;</code></p>
</recommendation>

<references>
Expand Down