To get the most out of this book
Software/hardware covered in the book |
Operating system requirements |
PowerShell 7 |
Windows, macOS, or Linux |
Conventions used
There are a number of text conventions used throughout this book.
Code in text
: Indicates code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles. Here is an example: "We can identify how to use the PowerShell module by using the get-help
command"
A block of code is set as follows:
if (condition) { # Code block to execute if the condition is true }
Any command-line input or output is written as follows:
PS C:\> Set-ExecutionPolicy Unrestricted
Bold: Indicates a new term, an important word, or words that you see onscreen. For instance, words in menus or dialog boxes appear in bold. Here is an example: "During penetration testing, it is common to craft custom XML payloads to test for XML-based vulnerabilities such as XML External Entity (XXE) injection. "
Tips or important notes
Appear like this.