Book Image

PowerShell 3.0 Advanced Administration Handbook

By : Sherif Talaat, Haijun Fu
Book Image

PowerShell 3.0 Advanced Administration Handbook

By: Sherif Talaat, Haijun Fu

Overview of this book

<p>Technology’s growing rhythm is running faster than before, and business needs are getting more complex every day. So, it is time to learn something new to help conquer the challenge. With PowerShell in your toolbox, you can easily perform many tasks with less time, effort, and cost. PowerShell is a helpful scripting technology that enables the automation of system management tasks and the creation of system management tools.<br /><br />"PowerShell 3.0 Advanced Administration Handbook" comes with a set of real-world scenarios and detailed scripts that will help you get started with PowerShell, learn what PowerShell is, how to write the syntax, and build your scripts, and how to use and integrate PowerShell with different technologies, products, and tools.<br /><br />This handbook starts with the essential topics of PowerShell, then introduces the new features in PowerShell 3.0. The book then goes through building PowerShell scripts, function, and developing extensions like snap-ins and modules, and continues with detailed examples showing the usage of PowerShell with different technologies and products to give you an idea of PowerShell usage in the real world.</p>
Table of Contents (21 chapters)
PowerShell 3.0 Advanced Administration Handbook
Credits
About the Authors
Acknowledgement
Acknowledgement
About the Reviewers
www.PacktPub.com
Preface
Index

Managing AppLocker with PowerShell


AppLocker is a new feature used for Software Restriction Policies. AppLocker contains new capabilities and extensions that allow users to create rules to allow or deny applications' permission to run based on the unique identities of files, and to specify which users or groups can run those applications. Of course, you can create and manage AppLocker rules by using Windows PowerShell cmdlets.

Microsoft supplies an AppLocker module, which contains five cmdlets that are used to help create, test, maintain, and troubleshoot an AppLocker policy. To edit or update a GPO by using the AppLocker cmdlet, you must have the Edit Setting permission. By default, members of the Domain Admins group, the Enterprise Admins group, and the Group Policy Creator Owners group have this permission. To perform tasks by using the Local Security policy snap-in, you must be a member of the Local Administrators group on the computer.

Importing the AppLocker PowerShell module

To use...