├── .vscode └── settings.json ├── Chapter01 ├── 1.1 Installing PowerShell 7.ps1 ├── 1.2 Using the PowerShell 7 console.ps1 ├── 1.3 Exploring PowerSHell 7Installation Artifacts.ps1 ├── 1.4 Building PowerSAhell 7 profile files.ps1 ├── 1.5 Installing-VSCode.ps1 ├── 1.6 Installing the Cascadia Code font.ps1 ├── 1.7 Exploring PSReadline.ps1 └── 1.8 Installing PowerSHell 7 in WSL.ps1 ├── Chapter02 ├── 2.1 - Exploring New Operators.ps1 ├── 2.2 - Exploring Parallel Processing with ForEach-Object.ps1 ├── 2.2 - Exploring Parallel Processing.ps1 ├── 2.3 - Exploring Improvements in Foreach and ForEach-Object.ps1 ├── 2.3 - Exploring Performance Improvements.ps1 ├── 2.4 - Using Test-Connection.ps1 ├── 2.5 - Using Select-String.ps1 ├── 2.6 - Exploring Error View and Get-Error.ps1 ├── 2.7 - Exploring Experimental Features.ps1 └── perf.ps1 ├── Chapter03 ├── 3.1 - Exploring Compatibility with WIndows PowerShell.ps1 ├── 3.2 - Using the Windows PowserShell Compatibility Solution.ps1 ├── 3.3 - Exploring Compability Solution Limitations .ps1 ├── 3.4 - Exploring the Module Deny list.ps1 ├── 3.5 - Importing Format XML.ps1 └── 3.6 - Leveraging Compatibility.ps1 ├── Chapter04 ├── 4.1 - Installing RSAT Tools on Windows Server.ps1 ├── 4.2 - Exploring Package Mangement.ps1 ├── 4.3 - Exploring PowerShellGet and the PS Gallery.ps1 ├── 4.4 - Creating a local PowerShell repository.ps1 ├── 4.5 - Establishing a script signing environment.ps1 ├── 4.6 - Working with Shortcuts.ps1 └── 4.7 - Working with archive files.ps1 ├── Chapter05 ├── 5.1 - Exploring .NET Assemblies.ps1 ├── 5.2 - Examining .NET Classes.ps1 ├── 5.3 - Leveraging .NET Methods.ps1 ├── 5.4 - Creating a C# Extension.ps1 └── 5.5 - Creating a PowerShell Cmdlet.ps1 ├── Chapter06 ├── 6.1 - Installing an Active Directory Forest Root Domain.ps1 ├── 6.10 - Reporting on AD computers .ps1 ├── 6.11 - Reporting on AD Users.ps1 ├── 6.2 - Testing an AD Installation.ps1 ├── 6.3 - Installing a replica domain controllerC.ps1 ├── 6.4 - Installing a Child Domain.ps1 ├── 6.5 - Creating and managing AD users and groups.ps1 ├── 6.6 - Managing AD Computers.ps1 ├── 6.7 - Adding users to AD using a CSV file.ps1 ├── 6.8 - Creating group policy objects.ps1 ├── 6.9 - Reporting on AD replication.ps1 └── goodies │ ├── ReadMe.md │ └── users.csv ├── Chapter07 ├── 7.1 - Configuring IP addressing.ps1 ├── 7.2 - Testing Network Connectivity.ps1 ├── 7.3 - Installing DHCP.ps1 ├── 7.4 - Configuring DHCP Scopes.ps1 ├── 7.5 - Using DHCP.ps1 ├── 7.6 - Configuring DHCP Failover and Load Balancing.ps1 ├── 7.7 -Configuring DNS In the Enterprise.ps1 ├── 7.8 - Configuring DNS Forwarding.ps1 └── 7.9 - Configuring DNS zones and Resource records.ps1 ├── Chapter08 ├── 8.1 - Implementing Just Enough Administration (JEA).ps1 ├── 8.2 - Examining Applications and Services Logs.ps1 ├── 8.3 - Disovering Logon Events In the Event Log .ps1 ├── 8.4 - Deploying PowerShell Group Policies.ps1 ├── 8.5 - Using PowerShell Script Block Logging.ps1 ├── 8.6 - Configuring AD Password Policies.ps1 └── 8.7 - Managing Windows Defender Antivirus.ps1 ├── Chapter09 ├── Recipe 9.1 - Manatging Physical Disks andf Volumes.ps1 ├── Recipe 9.2 - Managing FileSystems.ps1 ├── Recipe 9.3 - Exploring Providers And The File System Provider.ps1 ├── Recipe 9.4 - Managing Storage Replica.ps1 └── Recipe 9.5 - Deploying Storage Spaces.ps1 ├── Chapter10 ├── Recipe 10.1 - Managing NTFS FIle and Folder Permissions.ps1 ├── Recipe 10.2 - Setting up and Securing an SMB file server.ps1 ├── Recipe 10.3 - Creating and securing SMB shares.ps1 ├── Recipe 10.4 - Accessing SMB Shares.ps1 ├── Recipe 10.5 - Creating an iSCSI Target.ps1 ├── Recipe 10.6 - Using an iSCSI target.ps1 ├── Recipe 10.7 - Implementing Filestore Quotas.ps1 ├── Recipe 10.8 - Implementing FSRM Reporting.ps1 └── Recipe 10.9 - Implementing filestore screening.ps1 ├── Chapter11 ├── Recipe 11.1 - Installing and sharing printers.ps1 ├── Recipe 11.2 - Publishing a printer.ps1 ├── Recipe 11.3 - Changing the spooler directory.ps1 ├── Recipe 11.4 - Changing printer drivers.ps1 ├── Recipe 11.5 - Printing a test page.ps1 ├── Recipe 11.6 - Modiying printer security.ps1 └── Recipe 11.7 - Creating a Printer Pool.ps1 ├── Chapter12 ├── Recipe 12.1 - Installing Hyper-V inside Windows Server.ps1 ├── Recipe 12.10 - Configuring VM replication.ps1 ├── Recipe 12.11 - Managing VM Checkpoints.ps1 ├── Recipe 12.2 - Creating a Hyper-V M.ps1 ├── Recipe 12.3 - Using PowerShell Direct.ps1 ├── Recipe 12.4 - Using Hyper-V VM Groups.ps1 ├── Recipe 12.5 - Configuring VM hardware.ps1 ├── Recipe 12.6 - Configuring Networking.ps1 ├── Recipe 12.7 - Implementing nested virtualization.ps1 ├── Recipe 12.8 - Managing VM state.ps1 └── Recipe 12.9 - Configuring VM and storage movement.ps1 ├── Chapter13 ├── Recipe 13.1 - Getting Started using Azure with PowerShell.ps1 ├── Recipe 13.2 - Creating Azure Resources.ps1 ├── Recipe 13.3 - Exploring the Azure Storage Account.ps1 ├── Recipe 13.4 - Creating an Azure SMB file share.ps1 ├── Recipe 13.5 - Creating an Azure Web Site.ps1 ├── Recipe 13.6 - Creating an Azure VM.ps1 └── Recipe 13.7 - Configuring VM for PowerShell Access.ps1 ├── Chapter14 ├── 14.1 - Using PowerShell Script Analyzer.ps1 ├── 14.2 - Using Best Practices Analyzer.ps1 ├── 14.3 - Network Troubleshooting.ps1 ├── 14.4 - Checking Your Network with Get-NetView.ps1 └── 14.5 - Exploring PowerShell Script Debugging.ps1 ├── Chapter15 ├── 15.1 - Exploring WMI in Windows.ps1 ├── 15.2 - Exploring WMI namespaces.ps1 ├── 15.3 - Exploring WMI Classes.ps1 ├── 15.4 - Getting Local and Remote Objects.ps1 ├── 15.5 - Using WMI Methods.PS1 ├── 15.6 - Managing WMI Events.ps1 └── 15.7 - Implementing Permanent WMI Event Handling.ps1 ├── LICENSE ├── README.md └── goodies ├── .vscode └── settings.json ├── Microsoft.PowerShell_Profile.ps1 ├── Microsoft.VSCode_profile.ps1 ├── Readme.MD ├── Setup PS 7 - Part 1 (from ISE).ps1 ├── Setup PS7 - Part 2 (from Code).ps1 └── Update-RKProfile.ps1 /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Chapter01/1.1 Installing PowerShell 7.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter01/1.1 Installing PowerShell 7.ps1 -------------------------------------------------------------------------------- /Chapter01/1.2 Using the PowerShell 7 console.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter01/1.2 Using the PowerShell 7 console.ps1 -------------------------------------------------------------------------------- /Chapter01/1.3 Exploring PowerSHell 7Installation Artifacts.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter01/1.3 Exploring PowerSHell 7Installation Artifacts.ps1 -------------------------------------------------------------------------------- /Chapter01/1.4 Building PowerSAhell 7 profile files.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter01/1.4 Building PowerSAhell 7 profile files.ps1 -------------------------------------------------------------------------------- /Chapter01/1.5 Installing-VSCode.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter01/1.5 Installing-VSCode.ps1 -------------------------------------------------------------------------------- /Chapter01/1.6 Installing the Cascadia Code font.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter01/1.6 Installing the Cascadia Code font.ps1 -------------------------------------------------------------------------------- /Chapter01/1.7 Exploring PSReadline.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter01/1.7 Exploring PSReadline.ps1 -------------------------------------------------------------------------------- /Chapter01/1.8 Installing PowerSHell 7 in WSL.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter01/1.8 Installing PowerSHell 7 in WSL.ps1 -------------------------------------------------------------------------------- /Chapter02/2.1 - Exploring New Operators.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter02/2.1 - Exploring New Operators.ps1 -------------------------------------------------------------------------------- /Chapter02/2.2 - Exploring Parallel Processing with ForEach-Object.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter02/2.2 - Exploring Parallel Processing with ForEach-Object.ps1 -------------------------------------------------------------------------------- /Chapter02/2.2 - Exploring Parallel Processing.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter02/2.2 - Exploring Parallel Processing.ps1 -------------------------------------------------------------------------------- /Chapter02/2.3 - Exploring Improvements in Foreach and ForEach-Object.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter02/2.3 - Exploring Improvements in Foreach and ForEach-Object.ps1 -------------------------------------------------------------------------------- /Chapter02/2.3 - Exploring Performance Improvements.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter02/2.3 - Exploring Performance Improvements.ps1 -------------------------------------------------------------------------------- /Chapter02/2.4 - Using Test-Connection.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter02/2.4 - Using Test-Connection.ps1 -------------------------------------------------------------------------------- /Chapter02/2.5 - Using Select-String.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter02/2.5 - Using Select-String.ps1 -------------------------------------------------------------------------------- /Chapter02/2.6 - Exploring Error View and Get-Error.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter02/2.6 - Exploring Error View and Get-Error.ps1 -------------------------------------------------------------------------------- /Chapter02/2.7 - Exploring Experimental Features.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter02/2.7 - Exploring Experimental Features.ps1 -------------------------------------------------------------------------------- /Chapter02/perf.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter02/perf.ps1 -------------------------------------------------------------------------------- /Chapter03/3.1 - Exploring Compatibility with WIndows PowerShell.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter03/3.1 - Exploring Compatibility with WIndows PowerShell.ps1 -------------------------------------------------------------------------------- /Chapter03/3.2 - Using the Windows PowserShell Compatibility Solution.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter03/3.2 - Using the Windows PowserShell Compatibility Solution.ps1 -------------------------------------------------------------------------------- /Chapter03/3.3 - Exploring Compability Solution Limitations .ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter03/3.3 - Exploring Compability Solution Limitations .ps1 -------------------------------------------------------------------------------- /Chapter03/3.4 - Exploring the Module Deny list.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter03/3.4 - Exploring the Module Deny list.ps1 -------------------------------------------------------------------------------- /Chapter03/3.5 - Importing Format XML.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter03/3.5 - Importing Format XML.ps1 -------------------------------------------------------------------------------- /Chapter03/3.6 - Leveraging Compatibility.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter03/3.6 - Leveraging Compatibility.ps1 -------------------------------------------------------------------------------- /Chapter04/4.1 - Installing RSAT Tools on Windows Server.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter04/4.1 - Installing RSAT Tools on Windows Server.ps1 -------------------------------------------------------------------------------- /Chapter04/4.2 - Exploring Package Mangement.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter04/4.2 - Exploring Package Mangement.ps1 -------------------------------------------------------------------------------- /Chapter04/4.3 - Exploring PowerShellGet and the PS Gallery.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter04/4.3 - Exploring PowerShellGet and the PS Gallery.ps1 -------------------------------------------------------------------------------- /Chapter04/4.4 - Creating a local PowerShell repository.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter04/4.4 - Creating a local PowerShell repository.ps1 -------------------------------------------------------------------------------- /Chapter04/4.5 - Establishing a script signing environment.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter04/4.5 - Establishing a script signing environment.ps1 -------------------------------------------------------------------------------- /Chapter04/4.6 - Working with Shortcuts.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter04/4.6 - Working with Shortcuts.ps1 -------------------------------------------------------------------------------- /Chapter04/4.7 - Working with archive files.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter04/4.7 - Working with archive files.ps1 -------------------------------------------------------------------------------- /Chapter05/5.1 - Exploring .NET Assemblies.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter05/5.1 - Exploring .NET Assemblies.ps1 -------------------------------------------------------------------------------- /Chapter05/5.2 - Examining .NET Classes.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter05/5.2 - Examining .NET Classes.ps1 -------------------------------------------------------------------------------- /Chapter05/5.3 - Leveraging .NET Methods.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter05/5.3 - Leveraging .NET Methods.ps1 -------------------------------------------------------------------------------- /Chapter05/5.4 - Creating a C# Extension.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter05/5.4 - Creating a C# Extension.ps1 -------------------------------------------------------------------------------- /Chapter05/5.5 - Creating a PowerShell Cmdlet.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter05/5.5 - Creating a PowerShell Cmdlet.ps1 -------------------------------------------------------------------------------- /Chapter06/6.1 - Installing an Active Directory Forest Root Domain.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter06/6.1 - Installing an Active Directory Forest Root Domain.ps1 -------------------------------------------------------------------------------- /Chapter06/6.10 - Reporting on AD computers .ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter06/6.10 - Reporting on AD computers .ps1 -------------------------------------------------------------------------------- /Chapter06/6.11 - Reporting on AD Users.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter06/6.11 - Reporting on AD Users.ps1 -------------------------------------------------------------------------------- /Chapter06/6.2 - Testing an AD Installation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter06/6.2 - Testing an AD Installation.ps1 -------------------------------------------------------------------------------- /Chapter06/6.3 - Installing a replica domain controllerC.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter06/6.3 - Installing a replica domain controllerC.ps1 -------------------------------------------------------------------------------- /Chapter06/6.4 - Installing a Child Domain.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter06/6.4 - Installing a Child Domain.ps1 -------------------------------------------------------------------------------- /Chapter06/6.5 - Creating and managing AD users and groups.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter06/6.5 - Creating and managing AD users and groups.ps1 -------------------------------------------------------------------------------- /Chapter06/6.6 - Managing AD Computers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter06/6.6 - Managing AD Computers.ps1 -------------------------------------------------------------------------------- /Chapter06/6.7 - Adding users to AD using a CSV file.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter06/6.7 - Adding users to AD using a CSV file.ps1 -------------------------------------------------------------------------------- /Chapter06/6.8 - Creating group policy objects.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter06/6.8 - Creating group policy objects.ps1 -------------------------------------------------------------------------------- /Chapter06/6.9 - Reporting on AD replication.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter06/6.9 - Reporting on AD replication.ps1 -------------------------------------------------------------------------------- /Chapter06/goodies/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter06/goodies/ReadMe.md -------------------------------------------------------------------------------- /Chapter06/goodies/users.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter06/goodies/users.csv -------------------------------------------------------------------------------- /Chapter07/7.1 - Configuring IP addressing.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter07/7.1 - Configuring IP addressing.ps1 -------------------------------------------------------------------------------- /Chapter07/7.2 - Testing Network Connectivity.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter07/7.2 - Testing Network Connectivity.ps1 -------------------------------------------------------------------------------- /Chapter07/7.3 - Installing DHCP.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter07/7.3 - Installing DHCP.ps1 -------------------------------------------------------------------------------- /Chapter07/7.4 - Configuring DHCP Scopes.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter07/7.4 - Configuring DHCP Scopes.ps1 -------------------------------------------------------------------------------- /Chapter07/7.5 - Using DHCP.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter07/7.5 - Using DHCP.ps1 -------------------------------------------------------------------------------- /Chapter07/7.6 - Configuring DHCP Failover and Load Balancing.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter07/7.6 - Configuring DHCP Failover and Load Balancing.ps1 -------------------------------------------------------------------------------- /Chapter07/7.7 -Configuring DNS In the Enterprise.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter07/7.7 -Configuring DNS In the Enterprise.ps1 -------------------------------------------------------------------------------- /Chapter07/7.8 - Configuring DNS Forwarding.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter07/7.8 - Configuring DNS Forwarding.ps1 -------------------------------------------------------------------------------- /Chapter07/7.9 - Configuring DNS zones and Resource records.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter07/7.9 - Configuring DNS zones and Resource records.ps1 -------------------------------------------------------------------------------- /Chapter08/8.1 - Implementing Just Enough Administration (JEA).ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter08/8.1 - Implementing Just Enough Administration (JEA).ps1 -------------------------------------------------------------------------------- /Chapter08/8.2 - Examining Applications and Services Logs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter08/8.2 - Examining Applications and Services Logs.ps1 -------------------------------------------------------------------------------- /Chapter08/8.3 - Disovering Logon Events In the Event Log .ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter08/8.3 - Disovering Logon Events In the Event Log .ps1 -------------------------------------------------------------------------------- /Chapter08/8.4 - Deploying PowerShell Group Policies.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter08/8.4 - Deploying PowerShell Group Policies.ps1 -------------------------------------------------------------------------------- /Chapter08/8.5 - Using PowerShell Script Block Logging.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter08/8.5 - Using PowerShell Script Block Logging.ps1 -------------------------------------------------------------------------------- /Chapter08/8.6 - Configuring AD Password Policies.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter08/8.6 - Configuring AD Password Policies.ps1 -------------------------------------------------------------------------------- /Chapter08/8.7 - Managing Windows Defender Antivirus.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter08/8.7 - Managing Windows Defender Antivirus.ps1 -------------------------------------------------------------------------------- /Chapter09/Recipe 9.1 - Manatging Physical Disks andf Volumes.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter09/Recipe 9.1 - Manatging Physical Disks andf Volumes.ps1 -------------------------------------------------------------------------------- /Chapter09/Recipe 9.2 - Managing FileSystems.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter09/Recipe 9.2 - Managing FileSystems.ps1 -------------------------------------------------------------------------------- /Chapter09/Recipe 9.3 - Exploring Providers And The File System Provider.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter09/Recipe 9.3 - Exploring Providers And The File System Provider.ps1 -------------------------------------------------------------------------------- /Chapter09/Recipe 9.4 - Managing Storage Replica.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter09/Recipe 9.4 - Managing Storage Replica.ps1 -------------------------------------------------------------------------------- /Chapter09/Recipe 9.5 - Deploying Storage Spaces.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter09/Recipe 9.5 - Deploying Storage Spaces.ps1 -------------------------------------------------------------------------------- /Chapter10/Recipe 10.1 - Managing NTFS FIle and Folder Permissions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter10/Recipe 10.1 - Managing NTFS FIle and Folder Permissions.ps1 -------------------------------------------------------------------------------- /Chapter10/Recipe 10.2 - Setting up and Securing an SMB file server.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter10/Recipe 10.2 - Setting up and Securing an SMB file server.ps1 -------------------------------------------------------------------------------- /Chapter10/Recipe 10.3 - Creating and securing SMB shares.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter10/Recipe 10.3 - Creating and securing SMB shares.ps1 -------------------------------------------------------------------------------- /Chapter10/Recipe 10.4 - Accessing SMB Shares.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter10/Recipe 10.4 - Accessing SMB Shares.ps1 -------------------------------------------------------------------------------- /Chapter10/Recipe 10.5 - Creating an iSCSI Target.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter10/Recipe 10.5 - Creating an iSCSI Target.ps1 -------------------------------------------------------------------------------- /Chapter10/Recipe 10.6 - Using an iSCSI target.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter10/Recipe 10.6 - Using an iSCSI target.ps1 -------------------------------------------------------------------------------- /Chapter10/Recipe 10.7 - Implementing Filestore Quotas.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter10/Recipe 10.7 - Implementing Filestore Quotas.ps1 -------------------------------------------------------------------------------- /Chapter10/Recipe 10.8 - Implementing FSRM Reporting.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter10/Recipe 10.8 - Implementing FSRM Reporting.ps1 -------------------------------------------------------------------------------- /Chapter10/Recipe 10.9 - Implementing filestore screening.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter10/Recipe 10.9 - Implementing filestore screening.ps1 -------------------------------------------------------------------------------- /Chapter11/Recipe 11.1 - Installing and sharing printers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter11/Recipe 11.1 - Installing and sharing printers.ps1 -------------------------------------------------------------------------------- /Chapter11/Recipe 11.2 - Publishing a printer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter11/Recipe 11.2 - Publishing a printer.ps1 -------------------------------------------------------------------------------- /Chapter11/Recipe 11.3 - Changing the spooler directory.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter11/Recipe 11.3 - Changing the spooler directory.ps1 -------------------------------------------------------------------------------- /Chapter11/Recipe 11.4 - Changing printer drivers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter11/Recipe 11.4 - Changing printer drivers.ps1 -------------------------------------------------------------------------------- /Chapter11/Recipe 11.5 - Printing a test page.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter11/Recipe 11.5 - Printing a test page.ps1 -------------------------------------------------------------------------------- /Chapter11/Recipe 11.6 - Modiying printer security.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter11/Recipe 11.6 - Modiying printer security.ps1 -------------------------------------------------------------------------------- /Chapter11/Recipe 11.7 - Creating a Printer Pool.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter11/Recipe 11.7 - Creating a Printer Pool.ps1 -------------------------------------------------------------------------------- /Chapter12/Recipe 12.1 - Installing Hyper-V inside Windows Server.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter12/Recipe 12.1 - Installing Hyper-V inside Windows Server.ps1 -------------------------------------------------------------------------------- /Chapter12/Recipe 12.10 - Configuring VM replication.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter12/Recipe 12.10 - Configuring VM replication.ps1 -------------------------------------------------------------------------------- /Chapter12/Recipe 12.11 - Managing VM Checkpoints.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter12/Recipe 12.11 - Managing VM Checkpoints.ps1 -------------------------------------------------------------------------------- /Chapter12/Recipe 12.2 - Creating a Hyper-V M.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter12/Recipe 12.2 - Creating a Hyper-V M.ps1 -------------------------------------------------------------------------------- /Chapter12/Recipe 12.3 - Using PowerShell Direct.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter12/Recipe 12.3 - Using PowerShell Direct.ps1 -------------------------------------------------------------------------------- /Chapter12/Recipe 12.4 - Using Hyper-V VM Groups.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter12/Recipe 12.4 - Using Hyper-V VM Groups.ps1 -------------------------------------------------------------------------------- /Chapter12/Recipe 12.5 - Configuring VM hardware.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter12/Recipe 12.5 - Configuring VM hardware.ps1 -------------------------------------------------------------------------------- /Chapter12/Recipe 12.6 - Configuring Networking.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter12/Recipe 12.6 - Configuring Networking.ps1 -------------------------------------------------------------------------------- /Chapter12/Recipe 12.7 - Implementing nested virtualization.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter12/Recipe 12.7 - Implementing nested virtualization.ps1 -------------------------------------------------------------------------------- /Chapter12/Recipe 12.8 - Managing VM state.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter12/Recipe 12.8 - Managing VM state.ps1 -------------------------------------------------------------------------------- /Chapter12/Recipe 12.9 - Configuring VM and storage movement.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter12/Recipe 12.9 - Configuring VM and storage movement.ps1 -------------------------------------------------------------------------------- /Chapter13/Recipe 13.1 - Getting Started using Azure with PowerShell.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter13/Recipe 13.1 - Getting Started using Azure with PowerShell.ps1 -------------------------------------------------------------------------------- /Chapter13/Recipe 13.2 - Creating Azure Resources.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter13/Recipe 13.2 - Creating Azure Resources.ps1 -------------------------------------------------------------------------------- /Chapter13/Recipe 13.3 - Exploring the Azure Storage Account.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter13/Recipe 13.3 - Exploring the Azure Storage Account.ps1 -------------------------------------------------------------------------------- /Chapter13/Recipe 13.4 - Creating an Azure SMB file share.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter13/Recipe 13.4 - Creating an Azure SMB file share.ps1 -------------------------------------------------------------------------------- /Chapter13/Recipe 13.5 - Creating an Azure Web Site.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter13/Recipe 13.5 - Creating an Azure Web Site.ps1 -------------------------------------------------------------------------------- /Chapter13/Recipe 13.6 - Creating an Azure VM.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter13/Recipe 13.6 - Creating an Azure VM.ps1 -------------------------------------------------------------------------------- /Chapter13/Recipe 13.7 - Configuring VM for PowerShell Access.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter13/Recipe 13.7 - Configuring VM for PowerShell Access.ps1 -------------------------------------------------------------------------------- /Chapter14/14.1 - Using PowerShell Script Analyzer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter14/14.1 - Using PowerShell Script Analyzer.ps1 -------------------------------------------------------------------------------- /Chapter14/14.2 - Using Best Practices Analyzer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter14/14.2 - Using Best Practices Analyzer.ps1 -------------------------------------------------------------------------------- /Chapter14/14.3 - Network Troubleshooting.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter14/14.3 - Network Troubleshooting.ps1 -------------------------------------------------------------------------------- /Chapter14/14.4 - Checking Your Network with Get-NetView.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter14/14.4 - Checking Your Network with Get-NetView.ps1 -------------------------------------------------------------------------------- /Chapter14/14.5 - Exploring PowerShell Script Debugging.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter14/14.5 - Exploring PowerShell Script Debugging.ps1 -------------------------------------------------------------------------------- /Chapter15/15.1 - Exploring WMI in Windows.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter15/15.1 - Exploring WMI in Windows.ps1 -------------------------------------------------------------------------------- /Chapter15/15.2 - Exploring WMI namespaces.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter15/15.2 - Exploring WMI namespaces.ps1 -------------------------------------------------------------------------------- /Chapter15/15.3 - Exploring WMI Classes.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter15/15.3 - Exploring WMI Classes.ps1 -------------------------------------------------------------------------------- /Chapter15/15.4 - Getting Local and Remote Objects.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter15/15.4 - Getting Local and Remote Objects.ps1 -------------------------------------------------------------------------------- /Chapter15/15.5 - Using WMI Methods.PS1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter15/15.5 - Using WMI Methods.PS1 -------------------------------------------------------------------------------- /Chapter15/15.6 - Managing WMI Events.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter15/15.6 - Managing WMI Events.ps1 -------------------------------------------------------------------------------- /Chapter15/15.7 - Implementing Permanent WMI Event Handling.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/Chapter15/15.7 - Implementing Permanent WMI Event Handling.ps1 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/README.md -------------------------------------------------------------------------------- /goodies/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "powershell.codeFormatting.addWhitespaceAroundPipe": true 3 | } -------------------------------------------------------------------------------- /goodies/Microsoft.PowerShell_Profile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/goodies/Microsoft.PowerShell_Profile.ps1 -------------------------------------------------------------------------------- /goodies/Microsoft.VSCode_profile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/goodies/Microsoft.VSCode_profile.ps1 -------------------------------------------------------------------------------- /goodies/Readme.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/goodies/Readme.MD -------------------------------------------------------------------------------- /goodies/Setup PS 7 - Part 1 (from ISE).ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/goodies/Setup PS 7 - Part 1 (from ISE).ps1 -------------------------------------------------------------------------------- /goodies/Setup PS7 - Part 2 (from Code).ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/goodies/Setup PS7 - Part 2 (from Code).ps1 -------------------------------------------------------------------------------- /goodies/Update-RKProfile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Windows-Server-Automation-with-PowerShell-7.1-Cookbook-Fourth-Edition/HEAD/goodies/Update-RKProfile.ps1 --------------------------------------------------------------------------------