Mastering PowerShell scripting :: automate and manage your environment using PowerShell 7.1 /
This complete guide takes you on a tour of PowerShell from the basics to its advanced functionality, helping you automate your tedious and time-consuming system admin tasks Key Features Automate complex tasks, manipulate data, and secure your environment Work with dual code for PowerShell 7 and Wind...
Gespeichert in:
1. Verfasser: | |
---|---|
Format: | Elektronisch E-Book |
Sprache: | English |
Veröffentlicht: |
Birmingham :
Packt Publishing,
2021.
|
Ausgabe: | Fourth edition. |
Schlagworte: | |
Online-Zugang: | Volltext |
Zusammenfassung: | This complete guide takes you on a tour of PowerShell from the basics to its advanced functionality, helping you automate your tedious and time-consuming system admin tasks Key Features Automate complex tasks, manipulate data, and secure your environment Work with dual code for PowerShell 7 and Windows PowerShell to maintain compatibility with older versions See PowerShell in action, from learning the fundamentals to creating classes, scripts, and modules Book DescriptionPowerShell scripts offer a convenient way to automate various tasks, but working with them can be daunting. Mastering PowerShell Scripting takes away the fear and helps you navigate through PowerShell's capabilities.This extensively revised edition includes new chapters on debugging and troubleshooting and creating GUIs (online chapter). Learn the new features of PowerShell 7.1 by working with parameters, objects, and .NET classes from within PowerShell 7.1. This comprehensive guide starts with the basics before moving on to advanced topics, including asynchronous processing, desired state configuration, using more complex scripts and filters, debugging issues, and error-handling techniques. Explore how to efficiently manage substantial amounts of data and interact with other services using PowerShell 7.1. This book will help you to make the most of PowerShell's automation features, using different methods to parse data, manipulate regular expressions, and work with Windows Management Instrumentation (WMI). What you will learn Optimize code with functions, switches, and looping structures Test and debug your scripts as well as raising and catching errors Work with objects and operators to test and manipulate data Parse and manipulate different data types Use jobs, runspaces, and runspace pools to run code asynchronously Write .NET classes with ease within PowerShell Create and implement regular expressions in PowerShell scripts Make use of advanced techniques to define and restrict the behavior of parameters Who this book is for This book is for system administrators who want to automate and speed up their processes using PowerShell and Windows PowerShell. You'll need to know the basics of operating systems, but beginners with no prior experience with PowerShell will have no trouble following along. |
Beschreibung: | 1 online resource |
ISBN: | 9781800208575 180020857X |
Internformat
MARC
LEADER | 00000cam a22000001i 4500 | ||
---|---|---|---|
001 | ZDB-4-EBA-on1263801963 | ||
003 | OCoLC | ||
005 | 20241004212047.0 | ||
006 | m d | ||
007 | cr ||||||||||| | ||
008 | 210614s2021 enk o 000 0 eng d | ||
040 | |a UKMGB |b eng |e rda |e pn |c UKMGB |d EBLCP |d OCLCO |d OCLCF |d UKAHL |d YDX |d N$T |d OCLCO |d OCLCQ |d IEEEE |d OCLCO |d OCLCL |d TMA |d OCLCQ | ||
015 | |a GBC196782 |2 bnb | ||
016 | 7 | |a 020226994 |2 Uk | |
019 | |a 1257705467 | ||
020 | |a 9781800208575 |q (ebook) | ||
020 | |a 180020857X | ||
020 | |z 9781800206540 (pbk.) | ||
035 | |a (OCoLC)1263801963 |z (OCoLC)1257705467 | ||
037 | |a 9781800208575 |b Packt Publishing Pvt. Ltd | ||
037 | |a 10163077 |b IEEE | ||
050 | 4 | |a QA76.73.W56 | |
082 | 7 | |a 005.133 |2 23 | |
049 | |a MAIN | ||
100 | 1 | |a Dent, Chris, |e author. | |
245 | 1 | 0 | |a Mastering PowerShell scripting : |b automate and manage your environment using PowerShell 7.1 / |c Chris Dent. |
250 | |a Fourth edition. | ||
264 | 1 | |a Birmingham : |b Packt Publishing, |c 2021. | |
300 | |a 1 online resource | ||
336 | |a text |2 rdacontent | ||
337 | |a computer |2 rdamedia | ||
338 | |a online resource |2 rdacarrier | ||
588 | |a Description based on CIP data; resource not viewed. | ||
505 | 0 | |a Intro -- Copyright -- Contributors -- Table of Contents -- Preface -- Chapter 1: Introduction to PowerShell -- What is PowerShell? -- PowerShell editors -- Getting help -- Updatable help -- The Get-Help command -- Syntax -- Examples -- Parameter -- Detailed and Full switches -- Save-Help -- Update-Help -- About_* help files -- Command naming and discovery -- Verbs -- Nouns -- Finding commands -- Aliases -- Parameters, values, and parameter sets -- Parameters -- Optional parameters -- Optional positional parameters -- Mandatory parameters -- Mandatory positional parameters -- Switch parameters | |
505 | 8 | |a Parameter values -- Parameter sets -- Common parameters -- Confirm and WhatIf -- Confirm and ConfirmPreference -- WhatIf and WhatIfPreference -- Force parameter -- PassThru parameter -- Introduction to providers -- Drives and providers -- Introduction to splatting -- Splatting to avoid long lines -- Conditional use of parameters -- Splatting to avoid repetition -- Splatting and positional parameters -- Parser modes -- Experimental features -- Summary -- Chapter 2: Modules and Snap-Ins -- Introducing modules -- The Get-Module command -- The Import-Module command -- The Remove-Module command | |
505 | 8 | |a PSModulePath in PowerShell -- Using Windows PowerShell modules in PowerShell 7 -- Finding and installing modules -- What is the PowerShell Gallery? -- The Find-Module command -- The Install-Module command -- The Update-Module command -- The Save-Module command -- PowerShellGet 3.0 -- Repositories -- Version ranges -- PowerShell repositories -- Creating an SMB repository -- NuGet repositories -- About snap-ins -- Summary -- Chapter 3: Working with Objects in PowerShell -- Pipelines -- Standard output -- Non-standard output -- The object pipeline -- Members -- The Get-Member command | |
505 | 8 | |a Accessing object properties -- Access modifiers -- Using methods -- The Add-Member command -- Enumerating and filtering -- The ForEach-Object command -- Begin and End parameters -- The Parallel parameter -- The MemberName parameter -- The Where-Object command -- Selecting and sorting -- The Select-Object command -- Calculated properties -- The ExpandProperty parameter -- The Unique parameter -- Property sets -- The Sort-Object command -- Grouping and measuring -- The Group-Object command -- The Measure-Object command -- Comparing -- Importing, exporting, and converting -- The Export-Csv command | |
505 | 8 | |a The Import-Csv command -- Export-Clixml and Import-Clixml -- The Tee-Object command -- Summary -- Chapter 4: Operators -- Arithmetic operators -- Operator precedence -- Addition and subtraction operators -- Addition operator -- Subtraction operator -- Multiplication, division, and remainder operators -- Multiplication operator -- Division operator -- Remainder operator -- Assignment operators -- Assign, add and assign, and subtract and assign -- Multiply and assign, divide and assign, and modulus and assign -- Statements can be assigned to a variable -- Comparison operators -- Case sensitivity | |
520 | |a This complete guide takes you on a tour of PowerShell from the basics to its advanced functionality, helping you automate your tedious and time-consuming system admin tasks Key Features Automate complex tasks, manipulate data, and secure your environment Work with dual code for PowerShell 7 and Windows PowerShell to maintain compatibility with older versions See PowerShell in action, from learning the fundamentals to creating classes, scripts, and modules Book DescriptionPowerShell scripts offer a convenient way to automate various tasks, but working with them can be daunting. Mastering PowerShell Scripting takes away the fear and helps you navigate through PowerShell's capabilities.This extensively revised edition includes new chapters on debugging and troubleshooting and creating GUIs (online chapter). Learn the new features of PowerShell 7.1 by working with parameters, objects, and .NET classes from within PowerShell 7.1. This comprehensive guide starts with the basics before moving on to advanced topics, including asynchronous processing, desired state configuration, using more complex scripts and filters, debugging issues, and error-handling techniques. Explore how to efficiently manage substantial amounts of data and interact with other services using PowerShell 7.1. This book will help you to make the most of PowerShell's automation features, using different methods to parse data, manipulate regular expressions, and work with Windows Management Instrumentation (WMI). What you will learn Optimize code with functions, switches, and looping structures Test and debug your scripts as well as raising and catching errors Work with objects and operators to test and manipulate data Parse and manipulate different data types Use jobs, runspaces, and runspace pools to run code asynchronously Write .NET classes with ease within PowerShell Create and implement regular expressions in PowerShell scripts Make use of advanced techniques to define and restrict the behavior of parameters Who this book is for This book is for system administrators who want to automate and speed up their processes using PowerShell and Windows PowerShell. You'll need to know the basics of operating systems, but beginners with no prior experience with PowerShell will have no trouble following along. | ||
650 | 0 | |a Windows PowerShell (Computer program language) |0 http://id.loc.gov/authorities/subjects/sh2008003638 | |
650 | 6 | |a Windows PowerShell (Langage de programmation) | |
650 | 7 | |a Windows PowerShell (Computer program language) |2 fast | |
758 | |i has work: |a Mastering PowerShell Scripting (Text) |1 https://id.oclc.org/worldcat/entity/E39PD3dHHg4MJfqPhDgbHMTMWC |4 https://id.oclc.org/worldcat/ontology/hasWork | ||
776 | 0 | 8 | |i Print version: |z 9781800206540 |
856 | 4 | 0 | |l FWS01 |p ZDB-4-EBA |q FWS_PDA_EBA |u https://search.ebscohost.com/login.aspx?direct=true&scope=site&db=nlebk&AN=2955953 |3 Volltext |
938 | |a Askews and Holts Library Services |b ASKH |n AH38807479 | ||
938 | |a ProQuest Ebook Central |b EBLB |n EBL6670230 | ||
938 | |a YBP Library Services |b YANK |n 302285615 | ||
938 | |a EBSCOhost |b EBSC |n 2955953 | ||
994 | |a 92 |b GEBAY | ||
912 | |a ZDB-4-EBA | ||
049 | |a DE-863 |
Datensatz im Suchindex
DE-BY-FWS_katkey | ZDB-4-EBA-on1263801963 |
---|---|
_version_ | 1816882548162166784 |
adam_text | |
any_adam_object | |
author | Dent, Chris |
author_facet | Dent, Chris |
author_role | aut |
author_sort | Dent, Chris |
author_variant | c d cd |
building | Verbundindex |
bvnumber | localFWS |
callnumber-first | Q - Science |
callnumber-label | QA76 |
callnumber-raw | QA76.73.W56 |
callnumber-search | QA76.73.W56 |
callnumber-sort | QA 276.73 W56 |
callnumber-subject | QA - Mathematics |
collection | ZDB-4-EBA |
contents | Intro -- Copyright -- Contributors -- Table of Contents -- Preface -- Chapter 1: Introduction to PowerShell -- What is PowerShell? -- PowerShell editors -- Getting help -- Updatable help -- The Get-Help command -- Syntax -- Examples -- Parameter -- Detailed and Full switches -- Save-Help -- Update-Help -- About_* help files -- Command naming and discovery -- Verbs -- Nouns -- Finding commands -- Aliases -- Parameters, values, and parameter sets -- Parameters -- Optional parameters -- Optional positional parameters -- Mandatory parameters -- Mandatory positional parameters -- Switch parameters Parameter values -- Parameter sets -- Common parameters -- Confirm and WhatIf -- Confirm and ConfirmPreference -- WhatIf and WhatIfPreference -- Force parameter -- PassThru parameter -- Introduction to providers -- Drives and providers -- Introduction to splatting -- Splatting to avoid long lines -- Conditional use of parameters -- Splatting to avoid repetition -- Splatting and positional parameters -- Parser modes -- Experimental features -- Summary -- Chapter 2: Modules and Snap-Ins -- Introducing modules -- The Get-Module command -- The Import-Module command -- The Remove-Module command PSModulePath in PowerShell -- Using Windows PowerShell modules in PowerShell 7 -- Finding and installing modules -- What is the PowerShell Gallery? -- The Find-Module command -- The Install-Module command -- The Update-Module command -- The Save-Module command -- PowerShellGet 3.0 -- Repositories -- Version ranges -- PowerShell repositories -- Creating an SMB repository -- NuGet repositories -- About snap-ins -- Summary -- Chapter 3: Working with Objects in PowerShell -- Pipelines -- Standard output -- Non-standard output -- The object pipeline -- Members -- The Get-Member command Accessing object properties -- Access modifiers -- Using methods -- The Add-Member command -- Enumerating and filtering -- The ForEach-Object command -- Begin and End parameters -- The Parallel parameter -- The MemberName parameter -- The Where-Object command -- Selecting and sorting -- The Select-Object command -- Calculated properties -- The ExpandProperty parameter -- The Unique parameter -- Property sets -- The Sort-Object command -- Grouping and measuring -- The Group-Object command -- The Measure-Object command -- Comparing -- Importing, exporting, and converting -- The Export-Csv command The Import-Csv command -- Export-Clixml and Import-Clixml -- The Tee-Object command -- Summary -- Chapter 4: Operators -- Arithmetic operators -- Operator precedence -- Addition and subtraction operators -- Addition operator -- Subtraction operator -- Multiplication, division, and remainder operators -- Multiplication operator -- Division operator -- Remainder operator -- Assignment operators -- Assign, add and assign, and subtract and assign -- Multiply and assign, divide and assign, and modulus and assign -- Statements can be assigned to a variable -- Comparison operators -- Case sensitivity |
ctrlnum | (OCoLC)1263801963 |
dewey-full | 005.133 |
dewey-hundreds | 000 - Computer science, information, general works |
dewey-ones | 005 - Computer programming, programs, data, security |
dewey-raw | 005.133 |
dewey-search | 005.133 |
dewey-sort | 15.133 |
dewey-tens | 000 - Computer science, information, general works |
discipline | Informatik |
edition | Fourth edition. |
format | Electronic eBook |
fullrecord | <?xml version="1.0" encoding="UTF-8"?><collection xmlns="http://www.loc.gov/MARC21/slim"><record><leader>07413cam a22005651i 4500</leader><controlfield tag="001">ZDB-4-EBA-on1263801963</controlfield><controlfield tag="003">OCoLC</controlfield><controlfield tag="005">20241004212047.0</controlfield><controlfield tag="006">m d </controlfield><controlfield tag="007">cr |||||||||||</controlfield><controlfield tag="008">210614s2021 enk o 000 0 eng d</controlfield><datafield tag="040" ind1=" " ind2=" "><subfield code="a">UKMGB</subfield><subfield code="b">eng</subfield><subfield code="e">rda</subfield><subfield code="e">pn</subfield><subfield code="c">UKMGB</subfield><subfield code="d">EBLCP</subfield><subfield code="d">OCLCO</subfield><subfield code="d">OCLCF</subfield><subfield code="d">UKAHL</subfield><subfield code="d">YDX</subfield><subfield code="d">N$T</subfield><subfield code="d">OCLCO</subfield><subfield code="d">OCLCQ</subfield><subfield code="d">IEEEE</subfield><subfield code="d">OCLCO</subfield><subfield code="d">OCLCL</subfield><subfield code="d">TMA</subfield><subfield code="d">OCLCQ</subfield></datafield><datafield tag="015" ind1=" " ind2=" "><subfield code="a">GBC196782</subfield><subfield code="2">bnb</subfield></datafield><datafield tag="016" ind1="7" ind2=" "><subfield code="a">020226994</subfield><subfield code="2">Uk</subfield></datafield><datafield tag="019" ind1=" " ind2=" "><subfield code="a">1257705467</subfield></datafield><datafield tag="020" ind1=" " ind2=" "><subfield code="a">9781800208575</subfield><subfield code="q">(ebook)</subfield></datafield><datafield tag="020" ind1=" " ind2=" "><subfield code="a">180020857X</subfield></datafield><datafield tag="020" ind1=" " ind2=" "><subfield code="z">9781800206540 (pbk.)</subfield></datafield><datafield tag="035" ind1=" " ind2=" "><subfield code="a">(OCoLC)1263801963</subfield><subfield code="z">(OCoLC)1257705467</subfield></datafield><datafield tag="037" ind1=" " ind2=" "><subfield code="a">9781800208575</subfield><subfield code="b">Packt Publishing Pvt. Ltd</subfield></datafield><datafield tag="037" ind1=" " ind2=" "><subfield code="a">10163077</subfield><subfield code="b">IEEE</subfield></datafield><datafield tag="050" ind1=" " ind2="4"><subfield code="a">QA76.73.W56</subfield></datafield><datafield tag="082" ind1="7" ind2=" "><subfield code="a">005.133</subfield><subfield code="2">23</subfield></datafield><datafield tag="049" ind1=" " ind2=" "><subfield code="a">MAIN</subfield></datafield><datafield tag="100" ind1="1" ind2=" "><subfield code="a">Dent, Chris,</subfield><subfield code="e">author.</subfield></datafield><datafield tag="245" ind1="1" ind2="0"><subfield code="a">Mastering PowerShell scripting :</subfield><subfield code="b">automate and manage your environment using PowerShell 7.1 /</subfield><subfield code="c">Chris Dent.</subfield></datafield><datafield tag="250" ind1=" " ind2=" "><subfield code="a">Fourth edition.</subfield></datafield><datafield tag="264" ind1=" " ind2="1"><subfield code="a">Birmingham :</subfield><subfield code="b">Packt Publishing,</subfield><subfield code="c">2021.</subfield></datafield><datafield tag="300" ind1=" " ind2=" "><subfield code="a">1 online resource</subfield></datafield><datafield tag="336" ind1=" " ind2=" "><subfield code="a">text</subfield><subfield code="2">rdacontent</subfield></datafield><datafield tag="337" ind1=" " ind2=" "><subfield code="a">computer</subfield><subfield code="2">rdamedia</subfield></datafield><datafield tag="338" ind1=" " ind2=" "><subfield code="a">online resource</subfield><subfield code="2">rdacarrier</subfield></datafield><datafield tag="588" ind1=" " ind2=" "><subfield code="a">Description based on CIP data; resource not viewed.</subfield></datafield><datafield tag="505" ind1="0" ind2=" "><subfield code="a">Intro -- Copyright -- Contributors -- Table of Contents -- Preface -- Chapter 1: Introduction to PowerShell -- What is PowerShell? -- PowerShell editors -- Getting help -- Updatable help -- The Get-Help command -- Syntax -- Examples -- Parameter -- Detailed and Full switches -- Save-Help -- Update-Help -- About_* help files -- Command naming and discovery -- Verbs -- Nouns -- Finding commands -- Aliases -- Parameters, values, and parameter sets -- Parameters -- Optional parameters -- Optional positional parameters -- Mandatory parameters -- Mandatory positional parameters -- Switch parameters</subfield></datafield><datafield tag="505" ind1="8" ind2=" "><subfield code="a">Parameter values -- Parameter sets -- Common parameters -- Confirm and WhatIf -- Confirm and ConfirmPreference -- WhatIf and WhatIfPreference -- Force parameter -- PassThru parameter -- Introduction to providers -- Drives and providers -- Introduction to splatting -- Splatting to avoid long lines -- Conditional use of parameters -- Splatting to avoid repetition -- Splatting and positional parameters -- Parser modes -- Experimental features -- Summary -- Chapter 2: Modules and Snap-Ins -- Introducing modules -- The Get-Module command -- The Import-Module command -- The Remove-Module command</subfield></datafield><datafield tag="505" ind1="8" ind2=" "><subfield code="a">PSModulePath in PowerShell -- Using Windows PowerShell modules in PowerShell 7 -- Finding and installing modules -- What is the PowerShell Gallery? -- The Find-Module command -- The Install-Module command -- The Update-Module command -- The Save-Module command -- PowerShellGet 3.0 -- Repositories -- Version ranges -- PowerShell repositories -- Creating an SMB repository -- NuGet repositories -- About snap-ins -- Summary -- Chapter 3: Working with Objects in PowerShell -- Pipelines -- Standard output -- Non-standard output -- The object pipeline -- Members -- The Get-Member command</subfield></datafield><datafield tag="505" ind1="8" ind2=" "><subfield code="a">Accessing object properties -- Access modifiers -- Using methods -- The Add-Member command -- Enumerating and filtering -- The ForEach-Object command -- Begin and End parameters -- The Parallel parameter -- The MemberName parameter -- The Where-Object command -- Selecting and sorting -- The Select-Object command -- Calculated properties -- The ExpandProperty parameter -- The Unique parameter -- Property sets -- The Sort-Object command -- Grouping and measuring -- The Group-Object command -- The Measure-Object command -- Comparing -- Importing, exporting, and converting -- The Export-Csv command</subfield></datafield><datafield tag="505" ind1="8" ind2=" "><subfield code="a">The Import-Csv command -- Export-Clixml and Import-Clixml -- The Tee-Object command -- Summary -- Chapter 4: Operators -- Arithmetic operators -- Operator precedence -- Addition and subtraction operators -- Addition operator -- Subtraction operator -- Multiplication, division, and remainder operators -- Multiplication operator -- Division operator -- Remainder operator -- Assignment operators -- Assign, add and assign, and subtract and assign -- Multiply and assign, divide and assign, and modulus and assign -- Statements can be assigned to a variable -- Comparison operators -- Case sensitivity</subfield></datafield><datafield tag="520" ind1=" " ind2=" "><subfield code="a">This complete guide takes you on a tour of PowerShell from the basics to its advanced functionality, helping you automate your tedious and time-consuming system admin tasks Key Features Automate complex tasks, manipulate data, and secure your environment Work with dual code for PowerShell 7 and Windows PowerShell to maintain compatibility with older versions See PowerShell in action, from learning the fundamentals to creating classes, scripts, and modules Book DescriptionPowerShell scripts offer a convenient way to automate various tasks, but working with them can be daunting. Mastering PowerShell Scripting takes away the fear and helps you navigate through PowerShell's capabilities.This extensively revised edition includes new chapters on debugging and troubleshooting and creating GUIs (online chapter). Learn the new features of PowerShell 7.1 by working with parameters, objects, and .NET classes from within PowerShell 7.1. This comprehensive guide starts with the basics before moving on to advanced topics, including asynchronous processing, desired state configuration, using more complex scripts and filters, debugging issues, and error-handling techniques. Explore how to efficiently manage substantial amounts of data and interact with other services using PowerShell 7.1. This book will help you to make the most of PowerShell's automation features, using different methods to parse data, manipulate regular expressions, and work with Windows Management Instrumentation (WMI). What you will learn Optimize code with functions, switches, and looping structures Test and debug your scripts as well as raising and catching errors Work with objects and operators to test and manipulate data Parse and manipulate different data types Use jobs, runspaces, and runspace pools to run code asynchronously Write .NET classes with ease within PowerShell Create and implement regular expressions in PowerShell scripts Make use of advanced techniques to define and restrict the behavior of parameters Who this book is for This book is for system administrators who want to automate and speed up their processes using PowerShell and Windows PowerShell. You'll need to know the basics of operating systems, but beginners with no prior experience with PowerShell will have no trouble following along.</subfield></datafield><datafield tag="650" ind1=" " ind2="0"><subfield code="a">Windows PowerShell (Computer program language)</subfield><subfield code="0">http://id.loc.gov/authorities/subjects/sh2008003638</subfield></datafield><datafield tag="650" ind1=" " ind2="6"><subfield code="a">Windows PowerShell (Langage de programmation)</subfield></datafield><datafield tag="650" ind1=" " ind2="7"><subfield code="a">Windows PowerShell (Computer program language)</subfield><subfield code="2">fast</subfield></datafield><datafield tag="758" ind1=" " ind2=" "><subfield code="i">has work:</subfield><subfield code="a">Mastering PowerShell Scripting (Text)</subfield><subfield code="1">https://id.oclc.org/worldcat/entity/E39PD3dHHg4MJfqPhDgbHMTMWC</subfield><subfield code="4">https://id.oclc.org/worldcat/ontology/hasWork</subfield></datafield><datafield tag="776" ind1="0" ind2="8"><subfield code="i">Print version:</subfield><subfield code="z">9781800206540</subfield></datafield><datafield tag="856" ind1="4" ind2="0"><subfield code="l">FWS01</subfield><subfield code="p">ZDB-4-EBA</subfield><subfield code="q">FWS_PDA_EBA</subfield><subfield code="u">https://search.ebscohost.com/login.aspx?direct=true&scope=site&db=nlebk&AN=2955953</subfield><subfield code="3">Volltext</subfield></datafield><datafield tag="938" ind1=" " ind2=" "><subfield code="a">Askews and Holts Library Services</subfield><subfield code="b">ASKH</subfield><subfield code="n">AH38807479</subfield></datafield><datafield tag="938" ind1=" " ind2=" "><subfield code="a">ProQuest Ebook Central</subfield><subfield code="b">EBLB</subfield><subfield code="n">EBL6670230</subfield></datafield><datafield tag="938" ind1=" " ind2=" "><subfield code="a">YBP Library Services</subfield><subfield code="b">YANK</subfield><subfield code="n">302285615</subfield></datafield><datafield tag="938" ind1=" " ind2=" "><subfield code="a">EBSCOhost</subfield><subfield code="b">EBSC</subfield><subfield code="n">2955953</subfield></datafield><datafield tag="994" ind1=" " ind2=" "><subfield code="a">92</subfield><subfield code="b">GEBAY</subfield></datafield><datafield tag="912" ind1=" " ind2=" "><subfield code="a">ZDB-4-EBA</subfield></datafield><datafield tag="049" ind1=" " ind2=" "><subfield code="a">DE-863</subfield></datafield></record></collection> |
id | ZDB-4-EBA-on1263801963 |
illustrated | Not Illustrated |
indexdate | 2024-11-27T13:30:22Z |
institution | BVB |
isbn | 9781800208575 180020857X |
language | English |
oclc_num | 1263801963 |
open_access_boolean | |
owner | MAIN DE-863 DE-BY-FWS |
owner_facet | MAIN DE-863 DE-BY-FWS |
physical | 1 online resource |
psigel | ZDB-4-EBA |
publishDate | 2021 |
publishDateSearch | 2021 |
publishDateSort | 2021 |
publisher | Packt Publishing, |
record_format | marc |
spelling | Dent, Chris, author. Mastering PowerShell scripting : automate and manage your environment using PowerShell 7.1 / Chris Dent. Fourth edition. Birmingham : Packt Publishing, 2021. 1 online resource text rdacontent computer rdamedia online resource rdacarrier Description based on CIP data; resource not viewed. Intro -- Copyright -- Contributors -- Table of Contents -- Preface -- Chapter 1: Introduction to PowerShell -- What is PowerShell? -- PowerShell editors -- Getting help -- Updatable help -- The Get-Help command -- Syntax -- Examples -- Parameter -- Detailed and Full switches -- Save-Help -- Update-Help -- About_* help files -- Command naming and discovery -- Verbs -- Nouns -- Finding commands -- Aliases -- Parameters, values, and parameter sets -- Parameters -- Optional parameters -- Optional positional parameters -- Mandatory parameters -- Mandatory positional parameters -- Switch parameters Parameter values -- Parameter sets -- Common parameters -- Confirm and WhatIf -- Confirm and ConfirmPreference -- WhatIf and WhatIfPreference -- Force parameter -- PassThru parameter -- Introduction to providers -- Drives and providers -- Introduction to splatting -- Splatting to avoid long lines -- Conditional use of parameters -- Splatting to avoid repetition -- Splatting and positional parameters -- Parser modes -- Experimental features -- Summary -- Chapter 2: Modules and Snap-Ins -- Introducing modules -- The Get-Module command -- The Import-Module command -- The Remove-Module command PSModulePath in PowerShell -- Using Windows PowerShell modules in PowerShell 7 -- Finding and installing modules -- What is the PowerShell Gallery? -- The Find-Module command -- The Install-Module command -- The Update-Module command -- The Save-Module command -- PowerShellGet 3.0 -- Repositories -- Version ranges -- PowerShell repositories -- Creating an SMB repository -- NuGet repositories -- About snap-ins -- Summary -- Chapter 3: Working with Objects in PowerShell -- Pipelines -- Standard output -- Non-standard output -- The object pipeline -- Members -- The Get-Member command Accessing object properties -- Access modifiers -- Using methods -- The Add-Member command -- Enumerating and filtering -- The ForEach-Object command -- Begin and End parameters -- The Parallel parameter -- The MemberName parameter -- The Where-Object command -- Selecting and sorting -- The Select-Object command -- Calculated properties -- The ExpandProperty parameter -- The Unique parameter -- Property sets -- The Sort-Object command -- Grouping and measuring -- The Group-Object command -- The Measure-Object command -- Comparing -- Importing, exporting, and converting -- The Export-Csv command The Import-Csv command -- Export-Clixml and Import-Clixml -- The Tee-Object command -- Summary -- Chapter 4: Operators -- Arithmetic operators -- Operator precedence -- Addition and subtraction operators -- Addition operator -- Subtraction operator -- Multiplication, division, and remainder operators -- Multiplication operator -- Division operator -- Remainder operator -- Assignment operators -- Assign, add and assign, and subtract and assign -- Multiply and assign, divide and assign, and modulus and assign -- Statements can be assigned to a variable -- Comparison operators -- Case sensitivity This complete guide takes you on a tour of PowerShell from the basics to its advanced functionality, helping you automate your tedious and time-consuming system admin tasks Key Features Automate complex tasks, manipulate data, and secure your environment Work with dual code for PowerShell 7 and Windows PowerShell to maintain compatibility with older versions See PowerShell in action, from learning the fundamentals to creating classes, scripts, and modules Book DescriptionPowerShell scripts offer a convenient way to automate various tasks, but working with them can be daunting. Mastering PowerShell Scripting takes away the fear and helps you navigate through PowerShell's capabilities.This extensively revised edition includes new chapters on debugging and troubleshooting and creating GUIs (online chapter). Learn the new features of PowerShell 7.1 by working with parameters, objects, and .NET classes from within PowerShell 7.1. This comprehensive guide starts with the basics before moving on to advanced topics, including asynchronous processing, desired state configuration, using more complex scripts and filters, debugging issues, and error-handling techniques. Explore how to efficiently manage substantial amounts of data and interact with other services using PowerShell 7.1. This book will help you to make the most of PowerShell's automation features, using different methods to parse data, manipulate regular expressions, and work with Windows Management Instrumentation (WMI). What you will learn Optimize code with functions, switches, and looping structures Test and debug your scripts as well as raising and catching errors Work with objects and operators to test and manipulate data Parse and manipulate different data types Use jobs, runspaces, and runspace pools to run code asynchronously Write .NET classes with ease within PowerShell Create and implement regular expressions in PowerShell scripts Make use of advanced techniques to define and restrict the behavior of parameters Who this book is for This book is for system administrators who want to automate and speed up their processes using PowerShell and Windows PowerShell. You'll need to know the basics of operating systems, but beginners with no prior experience with PowerShell will have no trouble following along. Windows PowerShell (Computer program language) http://id.loc.gov/authorities/subjects/sh2008003638 Windows PowerShell (Langage de programmation) Windows PowerShell (Computer program language) fast has work: Mastering PowerShell Scripting (Text) https://id.oclc.org/worldcat/entity/E39PD3dHHg4MJfqPhDgbHMTMWC https://id.oclc.org/worldcat/ontology/hasWork Print version: 9781800206540 FWS01 ZDB-4-EBA FWS_PDA_EBA https://search.ebscohost.com/login.aspx?direct=true&scope=site&db=nlebk&AN=2955953 Volltext |
spellingShingle | Dent, Chris Mastering PowerShell scripting : automate and manage your environment using PowerShell 7.1 / Intro -- Copyright -- Contributors -- Table of Contents -- Preface -- Chapter 1: Introduction to PowerShell -- What is PowerShell? -- PowerShell editors -- Getting help -- Updatable help -- The Get-Help command -- Syntax -- Examples -- Parameter -- Detailed and Full switches -- Save-Help -- Update-Help -- About_* help files -- Command naming and discovery -- Verbs -- Nouns -- Finding commands -- Aliases -- Parameters, values, and parameter sets -- Parameters -- Optional parameters -- Optional positional parameters -- Mandatory parameters -- Mandatory positional parameters -- Switch parameters Parameter values -- Parameter sets -- Common parameters -- Confirm and WhatIf -- Confirm and ConfirmPreference -- WhatIf and WhatIfPreference -- Force parameter -- PassThru parameter -- Introduction to providers -- Drives and providers -- Introduction to splatting -- Splatting to avoid long lines -- Conditional use of parameters -- Splatting to avoid repetition -- Splatting and positional parameters -- Parser modes -- Experimental features -- Summary -- Chapter 2: Modules and Snap-Ins -- Introducing modules -- The Get-Module command -- The Import-Module command -- The Remove-Module command PSModulePath in PowerShell -- Using Windows PowerShell modules in PowerShell 7 -- Finding and installing modules -- What is the PowerShell Gallery? -- The Find-Module command -- The Install-Module command -- The Update-Module command -- The Save-Module command -- PowerShellGet 3.0 -- Repositories -- Version ranges -- PowerShell repositories -- Creating an SMB repository -- NuGet repositories -- About snap-ins -- Summary -- Chapter 3: Working with Objects in PowerShell -- Pipelines -- Standard output -- Non-standard output -- The object pipeline -- Members -- The Get-Member command Accessing object properties -- Access modifiers -- Using methods -- The Add-Member command -- Enumerating and filtering -- The ForEach-Object command -- Begin and End parameters -- The Parallel parameter -- The MemberName parameter -- The Where-Object command -- Selecting and sorting -- The Select-Object command -- Calculated properties -- The ExpandProperty parameter -- The Unique parameter -- Property sets -- The Sort-Object command -- Grouping and measuring -- The Group-Object command -- The Measure-Object command -- Comparing -- Importing, exporting, and converting -- The Export-Csv command The Import-Csv command -- Export-Clixml and Import-Clixml -- The Tee-Object command -- Summary -- Chapter 4: Operators -- Arithmetic operators -- Operator precedence -- Addition and subtraction operators -- Addition operator -- Subtraction operator -- Multiplication, division, and remainder operators -- Multiplication operator -- Division operator -- Remainder operator -- Assignment operators -- Assign, add and assign, and subtract and assign -- Multiply and assign, divide and assign, and modulus and assign -- Statements can be assigned to a variable -- Comparison operators -- Case sensitivity Windows PowerShell (Computer program language) http://id.loc.gov/authorities/subjects/sh2008003638 Windows PowerShell (Langage de programmation) Windows PowerShell (Computer program language) fast |
subject_GND | http://id.loc.gov/authorities/subjects/sh2008003638 |
title | Mastering PowerShell scripting : automate and manage your environment using PowerShell 7.1 / |
title_auth | Mastering PowerShell scripting : automate and manage your environment using PowerShell 7.1 / |
title_exact_search | Mastering PowerShell scripting : automate and manage your environment using PowerShell 7.1 / |
title_full | Mastering PowerShell scripting : automate and manage your environment using PowerShell 7.1 / Chris Dent. |
title_fullStr | Mastering PowerShell scripting : automate and manage your environment using PowerShell 7.1 / Chris Dent. |
title_full_unstemmed | Mastering PowerShell scripting : automate and manage your environment using PowerShell 7.1 / Chris Dent. |
title_short | Mastering PowerShell scripting : |
title_sort | mastering powershell scripting automate and manage your environment using powershell 7 1 |
title_sub | automate and manage your environment using PowerShell 7.1 / |
topic | Windows PowerShell (Computer program language) http://id.loc.gov/authorities/subjects/sh2008003638 Windows PowerShell (Langage de programmation) Windows PowerShell (Computer program language) fast |
topic_facet | Windows PowerShell (Computer program language) Windows PowerShell (Langage de programmation) |
url | https://search.ebscohost.com/login.aspx?direct=true&scope=site&db=nlebk&AN=2955953 |
work_keys_str_mv | AT dentchris masteringpowershellscriptingautomateandmanageyourenvironmentusingpowershell71 |