Naming Conventions
Use the full name of each command.
# Do not write:
gps -Name Explorer
# Instead write:
Get-Process -Name ExplorerUse full parameter names.
# Do not write:
Get-Process Explorer
# Instead write:
Get-Process -Name ExplorerUse full, explicit paths when possible.
Avoid the use of ~ to represent the home folder.
~ to represent the home folder.See also the Capitalization Conventions
Last updated
Was this helpful?