Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Save more on your purchases now! discount-offer-chevron-icon
Savings automatically calculated. No voucher code required.
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Mastering PowerShell Scripting
Mastering PowerShell Scripting

Mastering PowerShell Scripting: Automate repetitive tasks and simplify complex administrative tasks using PowerShell , Fifth Edition

eBook
AU$34.98 AU$49.99
Paperback
AU$42.99 AU$61.99
Subscription
Free Trial
Renews at AU$24.99p/m

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
Product feature icon AI Assistant (beta) to help accelerate your learning
Table of content icon View table of contents Preview book icon Preview Book

Mastering PowerShell Scripting

Modules

Modules are packaged collections of commands that may be loaded inside PowerShell, allowing PowerShell to interact with new systems and services. Modules come from a wide variety of different sources.

PowerShell itself is installed with a small number of modules, including ThreadJob and PSReadline.

Some modules can be installed by adding Windows features or enabling capabilities, for example, the ActiveDirectory and GroupPolicy modules.

Several applications include modules as part of their installers; for example, Microsoft Local Administrator Password Solution (LAPS) includes a PowerShell module that may be used to get passwords and set permissions.

The Windows platform itself includes many modules, for example, the NetFirewall module. Most of these have been included since Windows 8 was released.

Modules can be installed from the PowerShell Gallery or another registered repository. The PowerShell Gallery can include updated versions of pre-installed modules...

Introducing modules

Modules were introduced with the release of PowerShell version 2.0. A module is a packaged set of commands (binary commands, functions, and aliases) that includes any required supporting content; modules often include help content.

PowerShell 5.1 introduced support for classes written in PowerShell. These are explored in Chapter 19, Classes and Enumerations, but while support is present these are rarely directly user-accessible.

Modules tend to target a specific system or focus on a small set of related operations. For example, the Microsoft.PowerShell.Archive module contains a small number of commands for interacting with ZIP files.

The modules available on a system can be discovered using the Get-Module command.

The Get-Module command

Get-Module is used to find the modules either in the current PowerShell session or available on the current system.

PowerShell itself comes with several built-in modules, including PowerShellGet, ThreadJob...

Finding and installing modules

PowerShell includes a module named PowerShellGet, which can be used to register repositories and search for and install modules.

By default, PowerShellGet searches the PowerShell Gallery.

What is the PowerShell Gallery?

The PowerShell Gallery is a Microsoft-run repository and distribution platform for PowerShell scripts and modules written by Microsoft or other users.

The PowerShell Gallery has parallels in other scripting languages, as shown in the following examples:

  • Perl has cpan.org.
  • Python has PyPI.
  • Ruby has RubyGems.

Support for the gallery is included by default in PowerShell 5 and above. For Windows PowerShell 3 and 4, PowerShellGet must be installed as described in Microsoft Learn:

https://learn.microsoft.com/en-us/powershell/gallery/powershellget/install-on-older-systems.

The PowerShell Gallery may be searched using https://www.powershellgallery.com, as shown in the following screenshot...

Microsoft.PowerShell.PSResourceGet

PowerShellGet 2 (for example, PowerShellGet 2.2.4.1) implements the Install-Module, Update-Module, and Save-Module module commands demonstrated at the beginning of this chapter.

Microsoft.PowerShell.PSResourceGet (PSResourceGet), formerly PowerShellGet 3, hopes to replace PowerShellGet version 2 installations. One of the key features is that this new version does not depend on the PackageManagement module, allowing a simpler installation process, and avoiding the need to bootstrap the NuGet provider, making upgrading the module simpler.

The preview version also uses new command names, completely divorcing it from the previous implementations of PowerShellGet. The change in command names means the new version can safely be installed alongside any existing version.

PSResourceGet is included with the PowerShell 7.4 installation.

If not installed, PSResourceGet can be installed as follows:

Install-Module Microsoft.PowerShell.PSResourceGet...

PowerShell repositories

Each of the examples from the previous section uses the PowerShell Gallery as a source for installing modules. This is an important resource, but in a business setting, it may be desirable to restrict access to the gallery. Instead, an internal repository that holds curated or internally developed content may be implemented to share content.

Creating an SMB repository

An SMB file share is a simple way to share PowerShell content. A file share may be registered as a repository as follows:

$params = @{
    Name               = 'Internal'
    SourceLocation     = '\\server\share\directory'
    InstallationPolicy = 'Trusted'
}
Register-PSRepository @params

Existing modules can be published to the repository using the Publish-Module command. For example, if the module Pester 5.0.2 is installed, it may be published to the newly created internal repository:

$params = @{
    Name            = 'pester'
  ...

About snap-ins

Snap-ins, and the commands for interacting with snap-ins, are only available in Windows PowerShell; they are not present in PowerShell 7 and the commands used below will not work.

A snap-in is the predecessor to a module. It was the mechanism available to extend the set of commands in PowerShell 1 and was deprecated with the release of PowerShell 2. Unfortunately, a small number of organizations persist in offering PowerShell commands via a snap-in.

The list of installed snap-ins may be viewed using the following command:

Get-PSSnapIn -Registered

If the Registered parameter is excluded, Get-PSSnapIn will show the snap-ins that have been imported into the current PowerShell session.

PowerShell does not automatically load commands from a snap-in. All snap-ins must be explicitly imported using the Add-PSSnapIn command:

Add-PSSnapIn WDeploySnapin3.0

Once a snap-in has been installed (registered) and added, Get-Command can be used to list the...

Summary

Modules are a vital part of PowerShell. Modules allow users to extend the commands available within PowerShell, allowing PowerShell to work with many different systems from many different vendors.

The commands explored in this chapter have demonstrated how to discover and use locally available modules along with the commands each module contains. The PowerShell Gallery has been introduced as a public repository of modules, extending PowerShell further still.

PowerShellGet has been a feature of PowerShell since PowerShell 3. With the release of PowerShellGet 3 on the horizon, we demonstrated its new commands and filtering capabilities.

SMB- and NuGet-based repositories were briefly introduced for those looking to establish private repositories for use within an organization. This allows administrators to create private repositories with curated content, reducing exposure to unknown modules.

Snap-ins, an artifact of PowerShell 1 that is limited to Windows PowerShell...

Left arrow icon Right arrow icon
Download code icon Download Code

Key benefits

  • Explores PowerShell as a programming language
  • Take advantage of the features built into the PowerShell language in day-to-day automation
  • Automation of complex tasks, data manipulation, and environment security

Description

Mastering PowerShell Scripting, Fifth Edition, can help you overcome any fears and become proficient in navigating PowerShell's capabilities. This edition includes new chapters on debugging, troubleshooting, and creating GUIs. You will learn about the latest features of PowerShell 7.3, including working with parameters, objects, and .NET classes. The book covers basic and advanced topics, such as asynchronous processing, desired state configuration, managing large amounts of data, interacting with other services, and working with regular expressions and Windows Management Instrument (WMI). Discover how to efficiently use PowerShell's automation features and error-handling techniques for more complex scripts and filters. Starting with foundational knowledge, this extensive guide progresses to advanced concepts like using complex scripts and filters, asynchronous processing, desired state configuration, debugging, and error-handling techniques. You will learn how to effectively handle large data sets and interact with external services using PowerShell 7.3. Additionally, you'll discover how to fully utilize PowerShell's automation capabilities, including parsing data, manipulating regular expressions, and working with WMI using various methods.

Who is this book 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.

What you will learn

  • Create scripts that can be run on different systems
  • PowerShell is highly extensible and can integrate with other programming languages
  • Discover the powerful command-line interface that enables users to perform various operations with ease
  • Create reusable scripts and functions in PowerShell
  • Utilize PowerShell for various purposes, including system administration, automation, and data processing
  • Integrate PowerShell with other technologies such as .NET, COM, and WMI
  • Work with common data formats such as XML, JSON, and CSV in PowerShell
  • Create custom PowerShell modules and cmdlets to extend its functionality

Product Details

Country selected
Publication date, Length, Edition, Language, ISBN-13
Publication date : May 24, 2024
Length: 826 pages
Edition : 5th
Language : English
ISBN-13 : 9781805124153
Languages :
Tools :

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
Product feature icon AI Assistant (beta) to help accelerate your learning

Product Details

Publication date : May 24, 2024
Length: 826 pages
Edition : 5th
Language : English
ISBN-13 : 9781805124153
Languages :
Tools :

Packt Subscriptions

See our plans and pricing
Modal Close icon
AU$24.99 billed monthly
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Simple pricing, no contract
AU$249.99 billed annually
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just AU$5 each
Feature tick icon Exclusive print discounts
AU$349.99 billed in 18 months
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just AU$5 each
Feature tick icon Exclusive print discounts

Frequently bought together


Stars icon
Total AU$ 152.96 213.97 61.01 saved
Mastering Microsoft Intune
AU$56.98 AU$75.99
The Ultimate Kali Linux Book
AU$52.99 AU$75.99
Mastering PowerShell Scripting
AU$42.99 AU$61.99
Total AU$ 152.96 213.97 61.01 saved Stars icon

Table of Contents

22 Chapters
Introduction to PowerShell Chevron down icon Chevron up icon
Modules Chevron down icon Chevron up icon
Variables, Arrays, and Hashtables Chevron down icon Chevron up icon
Working with Objects in PowerShell Chevron down icon Chevron up icon
Operators Chevron down icon Chevron up icon
Conditional Statements and Loops Chevron down icon Chevron up icon
Working with .NET Chevron down icon Chevron up icon
Files, Folders, and the Registry Chevron down icon Chevron up icon
Windows Management Instrumentation Chevron down icon Chevron up icon
Working with HTML, XML, and JSON Chevron down icon Chevron up icon
Web Requests and Web Services Chevron down icon Chevron up icon
Remoting and Remote Management Chevron down icon Chevron up icon
Asynchronous Processing Chevron down icon Chevron up icon
Graphical User Interfaces Chevron down icon Chevron up icon
Scripts, Functions, and Script Blocks Chevron down icon Chevron up icon
Parameters, Validation, and Dynamic Parameters Chevron down icon Chevron up icon
Classes and Enumerations Chevron down icon Chevron up icon
Testing Chevron down icon Chevron up icon
Error Handling Chevron down icon Chevron up icon
Debugging Chevron down icon Chevron up icon
Other Books You May Enjoy Chevron down icon Chevron up icon
Index Chevron down icon Chevron up icon

Customer reviews

Most Recent
Rating distribution
Full star icon Full star icon Full star icon Full star icon Full star icon 5
(27 Ratings)
5 star 96.3%
4 star 3.7%
3 star 0%
2 star 0%
1 star 0%
Filter icon Filter
Most Recent

Filter reviews by




Ulises P. Aug 21, 2024
Full star icon Full star icon Full star icon Full star icon Full star icon 5
Alright, let's get straight to it—if you're deep into systems engineering and automation, especially within a Windows-heavy environment, Chris Dent's Mastering PowerShell Scripting is one of those essential reads that you'll want to keep close. You know, like a favorite tool in your toolkit, always ready to solve problems or streamline your work.Dent’s experience with PowerShell shines through in every chapter. The book takes you on a detailed journey, starting from the basics (for those who might be brushing up) and leading all the way to the more advanced, niche uses of PowerShell scripting. You’ll start with an intro to PowerShell itself, covering topics like command discovery, parameters, and splatting. And if you’re not familiar with the term "splatting," don’t worry—it’s not some California surfer lingo, but a smart way to group parameters that you'll find incredibly useful in automating repetitive tasks.By the time you’re knee-deep in the chapters on objects, operators, and arrays, you start to get a real sense of PowerShell’s versatility. It's not just about running scripts or automating a few tasks here and there—this is a full-fledged language that's perfect for managing large-scale systems, whether on-prem or in the cloud. And given how Microsoft has integrated PowerShell with platforms like Azure and even Linux, it’s become a cross-platform powerhouse. So, it’s no surprise that Dent focuses on making PowerShell an indispensable skill for anyone in IT.A cool aspect of the book is how it balances theory and practice. Sure, you’re going to get deep dives into subjects like error handling and testing with Pester, but it's all paired with real-world applications. For example, there’s a lot of emphasis on testing and debugging. If you're like me, and maybe a bit meticulous (or just hate when something breaks), you’ll appreciate that the author dedicates entire sections to error handling and debugging. That’s where this book really earns its stripes—it’s not just theory, it’s about making sure your code works in the real world.Plus, let’s talk about remoting and automation, two huge areas of focus. As a system engineer, you're going to love how Dent breaks down remoting. Whether you’re dealing with servers locally or over vast networks, the remoting capabilities are a game changer. And for those using cross-platform environments—think Windows, Linux, and maybe even a touch of Mac—this book covers that too.One area where this book really excels is in explaining the “why” behind the “how.” A lot of scripting books just throw commands at you. Not this one. Dent makes sure you understand what each command is doing under the hood, which is key if you're trying to fine-tune scripts for specific environments—especially in mission-critical setups like DoD or other high-stakes industries. It’s like learning to ride a bike: Sure, you could just push the pedals, but knowing how the gears work gives you an edge when the road gets rough.On the flip side, if I had to nitpick, it’s that the book can feel dense at times, especially for newcomers. You might need to read through certain sections a couple of times to really grasp the concepts. But that's more of a testament to the depth of PowerShell than anything else. After all, mastery doesn't come easy, right?In summary, if you’re serious about automating tasks, optimizing workflows, or just making your life easier as a systems engineer, Mastering PowerShell Scripting is a must-read. It’s a one-stop shop for not just learning PowerShell, but mastering it in a way that you’ll use in the real world—whether you’re dealing with hundreds of machines or fine-tuning a single server. Plus, Dent’s conversational style makes the technical content feel less like a manual and more like a trusted mentor showing you the ropes. Highly recommended for anyone in IT looking to up their scripting game.
Amazon Verified review Amazon
James W Aug 21, 2024
Full star icon Full star icon Full star icon Full star icon Full star icon 5
I finally made some time to go through this 800+ page book on PowerShell scripting it is certainly a great piece of work by Chris Dent it certainly made me rethink a few things like working with .Net and Rest using GitHub API as an example.It allowed me the chance to go back through my old memories on scripting I used to do from a logon script to a SQL database oh those were the days lol
Amazon Verified review Amazon
Tomica Kaniski Aug 06, 2024
Full star icon Full star icon Full star icon Full star icon Full star icon 5
The sole fact that this book is in its 5th edition already, speaks about its quality. This edition is packed with the latest on PowerShell 7 and dives further into automation and simplifying admin tasks. I loved the clear explanations, real-world examples, and hands-on exercises. For beginners, I would use another resource, but for more experienced users, this one is just right, as it covers working with jobs, the registry, regular expressions, PowerShell remoting, building modules, testing with Pester, and much more. It also tackles advanced topics like error handling and debugging, helping you write better-quality scripts. In my opinion, even though there are plenty of online resources, sample scripts, and exercises to help you practice, "Mastering PowerShell Scripting" is a must-have for anyone serious about PowerShell.
Amazon Verified review Amazon
Evgenij Smirnov Aug 05, 2024
Full star icon Full star icon Full star icon Full star icon Full star icon 5
The book resonates a great deal with PowerShell courses I used to deliver both internally, for organizations I worked at, and to customers. Each topic starts with establishing a basic understanding and then develops quickly towards practical applications in scripting, quirks and pecularities - things you need available at your elbow to keep yourself out of trouble.If you are new to PowerShell scripting, this book may well be the only one that you'll ever need until you reach a level where you'll want to explore (and be able to leverage) in-depth insights into inner workings, development history, security and integration of PowerShell.
Amazon Verified review Amazon
bradley wyatt Aug 01, 2024
Full star icon Full star icon Full star icon Full star icon Full star icon 5
This book is very well structured and paced. Lots of great real world examples. You’ll go from powershell novice to master in no time
Amazon Verified review Amazon
Get free access to Packt library with over 7500+ books and video courses for 7 days!
Start Free Trial

FAQs

How do I buy and download an eBook? Chevron down icon Chevron up icon

Where there is an eBook version of a title available, you can buy it from the book details for that title. Add either the standalone eBook or the eBook and print book bundle to your shopping cart. Your eBook will show in your cart as a product on its own. After completing checkout and payment in the normal way, you will receive your receipt on the screen containing a link to a personalised PDF download file. This link will remain active for 30 days. You can download backup copies of the file by logging in to your account at any time.

If you already have Adobe reader installed, then clicking on the link will download and open the PDF file directly. If you don't, then save the PDF file on your machine and download the Reader to view it.

Please Note: Packt eBooks are non-returnable and non-refundable.

Packt eBook and Licensing When you buy an eBook from Packt Publishing, completing your purchase means you accept the terms of our licence agreement. Please read the full text of the agreement. In it we have tried to balance the need for the ebook to be usable for you the reader with our needs to protect the rights of us as Publishers and of our authors. In summary, the agreement says:

  • You may make copies of your eBook for your own use onto any machine
  • You may not pass copies of the eBook on to anyone else
How can I make a purchase on your website? Chevron down icon Chevron up icon

If you want to purchase a video course, eBook or Bundle (Print+eBook) please follow below steps:

  1. Register on our website using your email address and the password.
  2. Search for the title by name or ISBN using the search option.
  3. Select the title you want to purchase.
  4. Choose the format you wish to purchase the title in; if you order the Print Book, you get a free eBook copy of the same title. 
  5. Proceed with the checkout process (payment to be made using Credit Card, Debit Cart, or PayPal)
Where can I access support around an eBook? Chevron down icon Chevron up icon
  • If you experience a problem with using or installing Adobe Reader, the contact Adobe directly.
  • To view the errata for the book, see www.packtpub.com/support and view the pages for the title you have.
  • To view your account details or to download a new copy of the book go to www.packtpub.com/account
  • To contact us directly if a problem is not resolved, use www.packtpub.com/contact-us
What eBook formats do Packt support? Chevron down icon Chevron up icon

Our eBooks are currently available in a variety of formats such as PDF and ePubs. In the future, this may well change with trends and development in technology, but please note that our PDFs are not Adobe eBook Reader format, which has greater restrictions on security.

You will need to use Adobe Reader v9 or later in order to read Packt's PDF eBooks.

What are the benefits of eBooks? Chevron down icon Chevron up icon
  • You can get the information you need immediately
  • You can easily take them with you on a laptop
  • You can download them an unlimited number of times
  • You can print them out
  • They are copy-paste enabled
  • They are searchable
  • There is no password protection
  • They are lower price than print
  • They save resources and space
What is an eBook? Chevron down icon Chevron up icon

Packt eBooks are a complete electronic version of the print edition, available in PDF and ePub formats. Every piece of content down to the page numbering is the same. Because we save the costs of printing and shipping the book to you, we are able to offer eBooks at a lower cost than print editions.

When you have purchased an eBook, simply login to your account and click on the link in Your Download Area. We recommend you saving the file to your hard drive before opening it.

For optimal viewing of our eBooks, we recommend you download and install the free Adobe Reader version 9.