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: “For these devices, remove them using Remove-MgDevice
.”
A block of code is set as follows:
$Headers = @{ "Authorization" = "Bearer " + $resourceToken "Content-type" = "application/json" "X-Requested-With" = "XMLHttpRequest" "x-ms-client-request-id" = [guid]::NewGuid() "x-ms-correlation-id" = [guid]::NewGuid() }
Any command-line input or output is written as follows:
((Invoke-MgGraphRequest -Method GET -Uri "https://graph.microsoft.com/beta/deviceManagement/configurationSettings?&`$filter=categoryId eq '4a5e4714-00ac-4793-b0cc-5049041b0ed7'" -OutputType PSObject).value | select-object name, description, '@odata.type', rootDefinitionId, options, @{Name="Platform"; Expression={ $_.applicability | Select-Object platform}},@{Name="technologies"; Expression={ $_.applicability | Select-Object technologies}},valuedefinition, id) | out-gridview
Bold: Indicates a new term, an important word, or words that you see on screen. For example, words in menus or dialog boxes appear in the text like this. Here is an example: "Now that we have our licensing in place, we need to create a tenant"
Tips or important notes
Appear like this.