- Learning PowerShell DSC(Second Edition)
- James Pogran
- 226字
- 2021-07-02 18:31:15
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: "What this DSC configuration does is ensure that a file is created in the D:FooProduct folder called foo.txt, with the contents this is example text."
A block of code is set as follows:
configuration BaseServerConfiguration
{
File ExampleTextFile
{
Ensure = 'Present'
Type = 'File'
DestinationPath = 'D:FooProductfoo.txt'
Contents = "this is example text"
}
WindowsFeature DotNet
{
Ensure = 'Present'
Name = 'NET-Framework-45-Core'
}
}
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
configuration BaseServerConfiguration
{
File ExampleTextFile
{
Ensure = 'Present'
Type = 'File'
DestinationPath = 'D:FooProductfoo.txt'
Contents = "this is example text"
}
WindowsFeature DotNet
{
Ensure = 'Present'
Name = 'NET-Framework-45-Core'
}
}
Any command-line input or output is written as follows:
[PS]> Get-HotFix -Id KB2883200
Source Description HotFixID InstalledBy InstalledOn
------ ----------- -------- ----------- -----------
HOSTNAME Update KB2883200 HOSTNAMEAdmini... 9/30/2013 12:00:00 AM
New terms and important words are shown in bold.
- Functional Python Programming
- JSP網絡編程(學習筆記)
- Spring 5企業級開發實戰
- Redis Applied Design Patterns
- 微服務與事件驅動架構
- 無代碼編程:用云表搭建企業數字化管理平臺
- Mastering Ember.js
- Mastering Entity Framework
- NativeScript for Angular Mobile Development
- Java:Data Science Made Easy
- C語言程序設計同步訓練與上機指導(第三版)
- Oracle Exadata專家手冊
- 自然語言處理Python進階
- C語言程序設計
- 移動互聯網軟件開發實驗指導