0% found this document useful (0 votes)
84 views

PowerShell Tutorial 1-8

This document provides an introduction to PowerShell scripting and automation. It covers PowerShell basics like launching PowerShell and preparing scripts to run. It also discusses PowerShell cmdlets and provides examples of common cmdlets. The document then gives an overview of tasks that can be automated with PowerShell scripts like managing Active Directory and file systems.

Uploaded by

erster
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
84 views

PowerShell Tutorial 1-8

This document provides an introduction to PowerShell scripting and automation. It covers PowerShell basics like launching PowerShell and preparing scripts to run. It also discusses PowerShell cmdlets and provides examples of common cmdlets. The document then gives an overview of tasks that can be automated with PowerShell scripts like managing Active Directory and file systems.

Uploaded by

erster
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 8

Windows

PowerShell Tutorial
for Beginners
Table of Contents
Introduction 4

1. PowerShell Scripting Basics 5

1.1 Launching the PowerShell 5

1.2 Preparing to Run PowerShell Scripts 6

1.3 PowerShell Cmdlets 7

1.4 Comments 11

1.5 Pipes 11

2. Top 10 Active Directory Management Tasks with PowerShell 12

2.1 Creating New User and Computer Accounts 12

2.2 Joining a Computer to a Domain and Removing a Computer from a Domain 18

2.3 Renaming a Computer 19

2.4 Resetting a Computer Account 20

2.5 Disabling User and Computer Accounts 20

2.6 Deleting a Computer from Active Directory 21

2.7 Creating and Deleting an Active Directory Group 22

2.8 Adding Users and Computers to a Group 24

2.9 Removing Users and Computers from a Group 25

2.10 Moving Users and Computers to a New Organizational Unit 26

2
3. Top 10 File System Management Tasks Using PowerShell 28

3.1 Viewing Objects in a Directory 28

3.2 Creating Files and Folders 29

3.3 Deleting Files and Folders 29

3.4 Copying Files and Folders 31

3.5 Moving Files and Directories 32

3.6 Renaming Files 33

3.7 Setting File and Folder Permissions 33

3.8 Removing User Permissions 36

3.9 Enabling and Disabling Permissions Inheritance 37

3.10 Changing File and Folder Ownership 38

4. Automating PowerShell Scripts 39

4.1 Creating Scheduled Tasks with PowerShell Scripts 39

4.2 Running PowerShell Scripts with Task Scheduler 40

Final Word 45

About Netwrix 47

3
Introduction
Automate it. Now, where’s that script…
Warning: PowerShell is addictive.

Windows PowerShell is an object-oriented automation engine and scripting language with an interactive
command-line shell designed to help IT professionals configure systems and automate administrative tasks.
You can find it in every modern Windows OS starting with Windows 2008R2.

Learning Windows PowerShell is like learning to use a universal multi-tool. In this eBook, we’ll walk you
through PowerShell scripting basics, show you PowerShell commands and scripts for performing the most
common administrative tasks, and explain how you can schedule your PowerShell scripts and commands.

So, let’s start learning PowerShell!

4
1. PowerShell Scripting Basics
In this part, we’ll cover PowerShell scripting basics so you can more easily perform virtually any
administration task in your Windows IT environment.

1.1 Launching the PowerShell


PowerShell offers both a command-line option and an integrated scripting environment (ISE):

To launch the PowerShell command line, type powershell.exe in the Windows Start menu. You’ll see a
screen like the following:

To launch the PowerShell ISE, type powershell_ise.exe in the Start menu. Using the PowerShell ISE is the
preferred way to work with the scripting language because it provides syntax highlighting, auto-filling of
commands and other automation features that simplify script development and testing.

5
1.2 Preparing to Run PowerShell Scripts
PowerShell scripts are stored in.ps1 files. You cannot run a script by simply double-clicking a file; this design
helps avoid accidental harm to your systems. Instead, to execute a script, right-click it and choose Run with
PowerShell:

In addition, there is a policy that restricts script execution. You can check this policy by running the
Get-ExecutionPolicy command in PowerShell:

You will get one of the following values:

Restricted — No scripts are allowed. This is the default setting, so you will see it the first time you run the
command.

AllSigned — You can run scripts signed by a trusted developer. Before executing, a script will ask you to
confirm that you want to run it.

RemoteSigned — You can run your own scripts or scripts signed by a trusted developer.

Unrestricted — You can run any script you want.

To start working with PowerShell, you’ll need to change the policy setting from Restricted to RemoteSigned
using the Set-ExecutionPolicy RemoteSigned command:

6
1.3 PowerShell Cmdlets
A cmdlet is a PowerShell command with a predefined function, similar to an operator in a programming
language. Here are some key things to know about cmdlets:

There are system, user and custom cmdlets.

Cmdlets output results as an object or as an array of objects.

Cmdlets can get data for analysis or transfer data to another cmdlet using pipes (I’ll discuss pipes more in
a moment).

Cmdlets are case-insensitive. For example, it doesn’t matter whether you type Get-ADUser, get-aduser
or gEt-AdUsEr.

If you want to use several cmdlets in one string, you must separate them with a semicolon (;).

A cmdlet always consists of a verb (or a word that functions as a verb) and a noun, separated with a hyphen
(the “verb-noun” rule). For example, some of the verbs include:

Get — To get something

Set — To define something

Start — To run something

Stop — To stop something that is running

Out — To output something

New — To create something (“new” is not a verb, of course, but it functions as one)

For practice, try executing the following cmdlets:

Get-Process — Shows the processes currently running on your computer:

7
Get-Service — Shows the list of services with their status

Get-Content — Shows the content of the file you specify (for example, Get-Content
C:\Windows\System32\drivers\etc\hosts)

Good news — you don’t need to memorize all cmdlets. You can list all cmdlets by executing the Get Help
-Category cmdlet, which will return the following:

You can also create your own custom cmdlets.

Each cmdlet has several parameters that customize what it does. The PowerShell ISE will automatically
suggest all valid parameters and their types after you type a cmdlet and a hyphen (-):

You might also like