diff --git a/contributing-guides/style-guide.md b/contributing-guides/style-guide.md index 68f2785d01..6f7131cc3e 100644 --- a/contributing-guides/style-guide.md +++ b/contributing-guides/style-guide.md @@ -103,7 +103,7 @@ Thus, if the command or its options are unavailable or contain different behavio # Clear-RecycleBin > Clear items from the Recycle Bin. -> This command can only be used through PowerShell versions 5.1 and below, or 7.1 and above. +> Note: This command can only be used through PowerShell versions 5.1 and below, or 7.1 and above. > More information: . ``` diff --git a/pages/windows/clear-host.md b/pages/windows/clear-host.md index 910cd97865..cf2cd66d70 100644 --- a/pages/windows/clear-host.md +++ b/pages/windows/clear-host.md @@ -1,7 +1,7 @@ # Clear-Host > Clears the screen. -> This command can only be used through PowerShell. +> Note: This command can only be used through PowerShell. > More information: . - Clear the screen: diff --git a/pages/windows/get-acl.md b/pages/windows/get-acl.md index bd0ad8d4ba..41d4ee4a96 100644 --- a/pages/windows/get-acl.md +++ b/pages/windows/get-acl.md @@ -1,7 +1,7 @@ # Get-Acl > Get the security descriptor for a resource, such as a file or registry key. -> This command can only be used through PowerShell. +> Note: This command can only be used through PowerShell. > More information: . - Display the ACL for a specific directory: diff --git a/pages/windows/get-childitem.md b/pages/windows/get-childitem.md index 008ed35c7b..d0f265caa9 100644 --- a/pages/windows/get-childitem.md +++ b/pages/windows/get-childitem.md @@ -1,7 +1,7 @@ # Get-ChildItem > List items in a directory. -> This command can only be used through PowerShell. +> Note: This command can only be used through PowerShell. > More information: . - List all non-hidden items in the current directory: diff --git a/pages/windows/get-content.md b/pages/windows/get-content.md index 81aed61615..da5f0ce9b5 100644 --- a/pages/windows/get-content.md +++ b/pages/windows/get-content.md @@ -1,7 +1,7 @@ # Get-Content > Get the content of the item at the specified location. -> This command can only be used through PowerShell. +> Note: This command can only be used through PowerShell. > More information: . - Display the content of a file: diff --git a/pages/windows/get-date.md b/pages/windows/get-date.md index 83178a1ee6..25a6534fd8 100644 --- a/pages/windows/get-date.md +++ b/pages/windows/get-date.md @@ -1,7 +1,7 @@ # Get-Date > Get the current date and time. -> This command can only be used through PowerShell. +> Note: This command can only be used through PowerShell. > More information: . - Display the current date and time: diff --git a/pages/windows/get-filehash.md b/pages/windows/get-filehash.md index cf2f5941b7..851963ee03 100644 --- a/pages/windows/get-filehash.md +++ b/pages/windows/get-filehash.md @@ -1,7 +1,7 @@ # Get-FileHash > Calculate a hash for a file. -> This command can only be used through PowerShell. +> Note: This command can only be used through PowerShell. > More information: . - Calculate a hash for a specified file using the SHA256 algorithm: diff --git a/pages/windows/get-history.md b/pages/windows/get-history.md index 5522df3eac..39a94d714a 100644 --- a/pages/windows/get-history.md +++ b/pages/windows/get-history.md @@ -1,7 +1,7 @@ # Get-History > Display PowerShell command history. -> This command can only be used through PowerShell. +> Note: This command can only be used through PowerShell. > More information: . - Display the commands history list with ID: diff --git a/pages/windows/invoke-item.md b/pages/windows/invoke-item.md index c6201bce6b..287e772c20 100644 --- a/pages/windows/invoke-item.md +++ b/pages/windows/invoke-item.md @@ -1,7 +1,7 @@ # Invoke-Item > Open files in their respective default programs. -> This command can only be used through PowerShell. +> Note: This command can only be used through PowerShell. > More information: . - Open a file in its default program: diff --git a/pages/windows/invoke-webrequest.md b/pages/windows/invoke-webrequest.md index f747e8cef9..734489de2b 100644 --- a/pages/windows/invoke-webrequest.md +++ b/pages/windows/invoke-webrequest.md @@ -1,7 +1,7 @@ # Invoke-WebRequest > Performs a HTTP/HTTPS request to the Web. -> This command can only be used through PowerShell. +> Note: This command can only be used through PowerShell. > More information: . - Download the contents of a URL to a file: diff --git a/pages/windows/measure-command.md b/pages/windows/measure-command.md index 03bfd5277b..623745781a 100644 --- a/pages/windows/measure-command.md +++ b/pages/windows/measure-command.md @@ -1,7 +1,7 @@ # Measure-Command > Measures the time it takes to run script blocks and cmdlets. -> This command can only be used through PowerShell. +> Note: This command can only be used through PowerShell. > More information: . - Measure the time it takes to run a command: diff --git a/pages/windows/measure-object.md b/pages/windows/measure-object.md index e3e4715d61..cbd88ac338 100644 --- a/pages/windows/measure-object.md +++ b/pages/windows/measure-object.md @@ -1,7 +1,7 @@ # Measure-Object > Calculates the numeric properties of objects, and the characters, words, and lines in string objects, such as files of text. -> This command can only be used through PowerShell. +> Note: This command can only be used through PowerShell. > More information: . - Count the files and folders in a directory: diff --git a/pages/windows/new-item.md b/pages/windows/new-item.md index 5bf4d9f071..d6f63f7898 100644 --- a/pages/windows/new-item.md +++ b/pages/windows/new-item.md @@ -1,7 +1,7 @@ # New-Item > Create a new file, directory, symbolic link, or a registry entry. -> This command can only be used through PowerShell. +> Note: This command can only be used through PowerShell. > More information: . - Create a new blank file (equivalent to `touch`): diff --git a/pages/windows/out-string.md b/pages/windows/out-string.md index 2a946af9cd..4dcda8b229 100644 --- a/pages/windows/out-string.md +++ b/pages/windows/out-string.md @@ -1,7 +1,7 @@ # Out-String > Outputs input objects as a string. -> This command can only be used through PowerShell. +> Note: This command can only be used through PowerShell. > More information: . - Print host information as string: diff --git a/pages/windows/resolve-path.md b/pages/windows/resolve-path.md index 99d62e9f0b..636dc8680f 100644 --- a/pages/windows/resolve-path.md +++ b/pages/windows/resolve-path.md @@ -1,7 +1,7 @@ # Resolve-Path > Resolves the wildcard characters in a path, and displays the path contents. -> This command can only be used through PowerShell. +> Note: This command can only be used through PowerShell. > More information: . - Resolve the home folder path: diff --git a/pages/windows/select-string.md b/pages/windows/select-string.md index 7889255276..106ca0e116 100644 --- a/pages/windows/select-string.md +++ b/pages/windows/select-string.md @@ -1,7 +1,7 @@ # Select-String > Finds text in strings and files in PowerShell. -> This command can only be used through PowerShell. +> Note: This command can only be used through PowerShell. > You can use `Select-String` similar to `grep` in UNIX or `findstr.exe` in Windows. > More information: . diff --git a/pages/windows/set-acl.md b/pages/windows/set-acl.md index f9f9a3f4c8..3934f6b539 100644 --- a/pages/windows/set-acl.md +++ b/pages/windows/set-acl.md @@ -1,7 +1,7 @@ # Set-Acl > Changes the security descriptor of a specified item, such as a file or a registry key. -> This command can only be used through PowerShell. +> Note: This command can only be used through PowerShell. > More information: . - Copy a security descriptor from one file to another: diff --git a/pages/windows/set-date.md b/pages/windows/set-date.md index 787dfe7790..bedd2cd27d 100644 --- a/pages/windows/set-date.md +++ b/pages/windows/set-date.md @@ -1,7 +1,7 @@ # Set-Date > Changes the system time on the computer to a time that you specify. -> This command can only be used through PowerShell. +> Note: This command can only be used through PowerShell. > More information: . - Add three days to the system date: diff --git a/pages/windows/set-location.md b/pages/windows/set-location.md index 320c5ddb61..c8a8207f99 100644 --- a/pages/windows/set-location.md +++ b/pages/windows/set-location.md @@ -1,7 +1,7 @@ # Set-Location > Display the current working directory or move to a different directory. -> This command can only be used through PowerShell. +> Note: This command can only be used through PowerShell. > More information: . - Go to the specified directory: diff --git a/pages/windows/set-service.md b/pages/windows/set-service.md index 1b594b45b3..5aaca33a4c 100644 --- a/pages/windows/set-service.md +++ b/pages/windows/set-service.md @@ -1,7 +1,7 @@ # Set-Service > Starts, stops, and suspends a service, and changes its properties. -> This command can only be used through PowerShell. +> Note: This command can only be used through PowerShell. > More information: . - Change a display name: diff --git a/pages/windows/show-markdown.md b/pages/windows/show-markdown.md index b7503b3400..76dcbc820f 100644 --- a/pages/windows/show-markdown.md +++ b/pages/windows/show-markdown.md @@ -1,7 +1,7 @@ # Show-Markdown > Shows a Markdown file or string in the console in a friendly way using VT100 escape sequences or in a browser using HTML. -> This command can only be used through PowerShell. +> Note: This command can only be used through PowerShell. > More information: . - Render markdown to console from a file: diff --git a/pages/windows/sort-object.md b/pages/windows/sort-object.md index 1b0d617ff7..b3394d1b96 100644 --- a/pages/windows/sort-object.md +++ b/pages/windows/sort-object.md @@ -1,7 +1,7 @@ # Sort-Object > Sorts objects by property values. -> This command can only be used through PowerShell. +> Note: This command can only be used through PowerShell. > More information: . - Sort the current directory by name: diff --git a/pages/windows/start-service.md b/pages/windows/start-service.md index 7d817a2df3..370bc06576 100644 --- a/pages/windows/start-service.md +++ b/pages/windows/start-service.md @@ -1,7 +1,7 @@ # Start-Service > Starts stopped services. -> This command can only be used through PowerShell. +> Note: This command can only be used through PowerShell. > More information: . - Start a service by using its name: diff --git a/pages/windows/stop-service.md b/pages/windows/stop-service.md index c84c11cf94..36448212ef 100644 --- a/pages/windows/stop-service.md +++ b/pages/windows/stop-service.md @@ -1,7 +1,7 @@ # Stop-Service > Stops running services. -> This command can only be used through PowerShell. +> Note: This command can only be used through PowerShell. > More information: . - Stop a service on the local computer: diff --git a/pages/windows/tee-object.md b/pages/windows/tee-object.md index 9bf9d5d44b..bf7b4148b4 100644 --- a/pages/windows/tee-object.md +++ b/pages/windows/tee-object.md @@ -1,7 +1,7 @@ # Tee-Object > Saves command output in a file or variable and also sends it down the pipeline. -> This command can only be used through PowerShell. +> Note: This command can only be used through PowerShell. > More information: . - Output processes to a file and to the console: diff --git a/pages/windows/test-json.md b/pages/windows/test-json.md index 4b25ba7361..c13e869f44 100644 --- a/pages/windows/test-json.md +++ b/pages/windows/test-json.md @@ -1,7 +1,7 @@ # Test-Json > Test whether a string is a valid JSON document. -> This command can only be used through PowerShell. +> Note: This command can only be used through PowerShell. > More information: . - Test if a string from `stdin` is in JSON format: diff --git a/pages/windows/test-netconnection.md b/pages/windows/test-netconnection.md index 5a0035899a..025513df81 100644 --- a/pages/windows/test-netconnection.md +++ b/pages/windows/test-netconnection.md @@ -1,7 +1,7 @@ # Test-NetConnection > Display diagnostic information for a connection. -> This command can only be used through PowerShell. +> Note: This command can only be used through PowerShell. > More information: . - Test a connection and display detailed results: diff --git a/pages/windows/wait-process.md b/pages/windows/wait-process.md index 93e3cad430..7e1f4033d5 100644 --- a/pages/windows/wait-process.md +++ b/pages/windows/wait-process.md @@ -1,7 +1,7 @@ # Wait-Process > Waits for the processes to be stopped before accepting more input. -> This command can only be used through PowerShell. +> Note: This command can only be used through PowerShell. > More information: . - Stop a process and wait: diff --git a/pages/windows/where-object.md b/pages/windows/where-object.md index 74465aa1be..8d95a3133b 100644 --- a/pages/windows/where-object.md +++ b/pages/windows/where-object.md @@ -1,7 +1,7 @@ # Where-Object > Selects objects from a collection based on their property values. -> This command can only be used through PowerShell. +> Note: This command can only be used through PowerShell. > More information: . - Filter aliases by its name: