Collections:
Other Resources:
Add Comments in Windows PowerShell Scripts
How to add comments in Windows PowerShell scripts?
✍: FYIcenter.com
There are two primary ways to add comments in Windows PowerShell scripts:
1. Using # in the middle of line - If you use the "#" sign in the middle of a line, everything starts from "#" to the end of line is considered as a comment. For example:
Write-Host "Hello World!" # Can you hear me?
2. Using <# ... #> block - If you use the "#" block in a script file, everything between the starting tag and the ending tag is considered as a comment. For example:
<# The following command will
Test connection with the Microsoft Website
Format the output with 2 properties only
#>
Test-Connection www.microsoft.com -count 1 | format-list Address,ResponseTime
⇒ Assign Object to Variable in Windows PowerShell Scripts
⇐ Running Scripts Disabled in Windows PowerShell
2016-11-02, ∼4271🔥, 0💬
Popular Posts:
Why am I getting errors when starting Apache server to load PHP as a module with php5apache2.dll? If...
How to Verify Apache server configuration for PHP scripts support? If you have followed our Configur...
Why am I getting a blank page when running PHP scripts to access MySQL database? Assuming that you h...
Can I remove startup application "OSA9.exe - Microsoft Office Launch Helper" to speedup my computer ...
What is GoogleUpdaterService.exe - Google Updater Service? GoogleUpdaterService.exe is binary file o...