Conventions
In this book, you will find a number of text styles that distinguish between different kinds of information. Here are some examples of these styles and an explanation of their meaning.
Code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles are shown as follows: "Copy the MOMCertImport.exe
utility to a location on your C drive."
A block of code is set as follows:
Import-Module ServerManager Add-WindowsFeature Web-Server,NET-Framework-Core,NET-HTTP-Activation,NET-WCF-HTTP-Activation45,Web-Mgmt-Console,Web-Net-Ext,Web-Net-Ext45,Web-Static-Content,Web-Default-Doc,Web-Dir-Browsing,Web-Http-Errors,Web-Http-Logging,Web-Request-Monitor,Web-Filtering,Web-Stat-Compression,Web-ISAPI-Ext,Web-ISAPI-Filter,Web-Metabase,Web-Asp-Net,Web-Windows-Auth,Windows-Identity-Foundation –restart
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
Param([string]$subscription)
Import-Module OperationsManager
Get-SCOMNotificationSubscription | where {$_.displayname -like $subscription} | Disable-SCOMNotificationSubscription
New terms and important words are shown in bold. Words that you see on the screen, for example, in menus or dialog boxes, appear in the text like this: "The last thing you need to do now is to enable the Server Proxy setting on the new Gateway server."
Note
Warnings or important notes appear in a box like this.
Tip
Tips and tricks appear like this.