- Active Directory with PowerShell
- Uma Yellapragada
- 210字
- 2021-08-06 19:33:35
Conventions
In this book, you will find a number of styles of text 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: "The Get-ADUser
command can be used to query user information. We can apply filters to narrow down the results using the -Filter
and -LDAPFilter
parameters".
A block of code is set as follows:
function Get-ADObjectsCount { [CmdletBinding()] param( ) $Users = Get-ADUser -Filter * $Groups = Get-ADGroup -Filter * $Computers = Get-ADComputer -Filter * $DomainName = (Get-ADDomain).Name "{0} Users, {1} Computers and {2} Groups found in {3} Domain" -f $Users.Count,$Computers.Count,$Groups.Count,$DomainName }
Any command-line input or output is written as follows:
PS C:\> Get-ADObjectsCount 110 Users, 13 Computers and 83 Groups found in techibee Domain PS C:\>
New terms and important words are shown in bold. Words that you see on the screen, in menus or dialog boxes, for example, appear in the text like this: "add the Group Policy Management option to install this feature".
- 新編Visual Basic程序設計上機實驗教程
- HTML5+CSS3+JavaScript從入門到精通:上冊(微課精編版·第2版)
- Computer Vision for the Web
- Go語言高效編程:原理、可觀測性與優化
- JavaScript+jQuery網頁特效設計任務驅動教程(第2版)
- 跟“龍哥”學C語言編程
- Learning Flask Framework
- Python高級編程
- 精通API架構:設計、運維與演進
- Spring Boot企業級項目開發實戰
- PySpark Cookbook
- Statistical Application Development with R and Python(Second Edition)
- GameMaker Essentials
- Natural Language Processing with Python Quick Start Guide
- Java并發實現原理:JDK源碼剖析