0%

0/1 Lessons

Course Introduction

• 5min

0 / 2 lessons complete

Getting Started with Windows PowerShell

• 56min

0 / 8 lessons complete

Getting Help and Finding Commands

• 39min

0 / 6 lessons complete

PowerShell Command Syntax

• 33min

0 / 5 lessons complete

PowerShell Objects and Properties

• 35min

0 / 6 lessons complete

The PowerShell Pipeline

• 24min

0 / 2 lessons complete

PowerShell Providers

• 30min

0 / 5 lessons complete

PowerShell Arrays and Variables

• 28min

0 / 4 lessons complete

PowerShell Loops

• 19min

0 / 3 lessons complete

PowerShell Conditional Statements

• 11min

0 / 1 lessons complete

On Premises Lab Setup

• 36min

0 / 8 lessons complete

Basic Domain Administration with Windows PowerShell

• 2hr 27min

0 / 10 lessons complete

Send Emails with PowerShell

• 22min

0 / 2 lessons complete

PowerShell Desired State Configuration (DSC) Basics

• 1hr 48min

0 / 6 lessons complete

PowerShell Modules

• 58min

0 / 7 lessons complete

Powershell Challenges

• 1hr 55min

0 / 23 lessons complete

Section Overview
Full Access Account Required

Video | 5 min

The Trusted Hosts List Challenge
Full Access Account Required

Text | 5 min

The Trusted Hosts List Answer
Full Access Account Required

Video | 5 min

Starting a Remote Session Challenge
Full Access Account Required

Text | 5 min

Starting a Remote Session Answer
Full Access Account Required

Video | 5 min

Rename a Computer Challenge
Full Access Account Required

Text | 5 min

Rename a Computer Answer
Full Access Account Required

Video | 5 min

Change a Password on a Remote Computer Challenge
Full Access Account Required

Text | 5 min

Change a Password on a Remote Computer Answer
Full Access Account Required

Video | 5 min

How to Copy Files To-From a Remote Machine Challenge
Full Access Account Required

Text | 5 min

How to Copy Files To-From a Remote Machine using VSC Answer
Full Access Account Required

Video | 5 min

How to Export Logs to a CSV File Challenge
Full Access Account Required

Text | 5 min

How to Export Logs to a CSV File Answer
Full Access Account Required

Video | 5 min

How to Create Multiple Folders on the Host Machine using Powershell
Full Access Account Required

Text | 5 min

How to Create Multiple Folders on the Host Machine using Powershell Answer
Full Access Account Required

Video | 5 min

Who Rebooted the Server ID1074 Challenge
Full Access Account Required

Text | 5 min

Who Rebooted the Server
Full Access Account Required

Video | 5 min

How can you get Info on all your Hard Drives Challenge
Full Access Account Required

Text | 5 min

How can you get Info on all your Hard Drives Answer
Full Access Account Required

Video | 5 min

How can I get a list of CPU's and Installed Printers, Last Boot-up Time Challenge
Full Access Account Required

Text | 5 min

How can I get a List of CPU's and Installed Printers, Last Boot-up Time Answer
Full Access Account Required

Video | 5 min

How can I Automate Tasks with Task Scheduler Challenge
Full Access Account Required

Text | 5 min

How can I Automate Tasks with the Task Scheduler Answer
Full Access Account Required

Video | 5 min

Course Conclusion

• 1min

0 / 1 lessons complete

Using PS Drive

Instructions

Q&A (0)

Notes (0)

Resources (0)

Saving Progress...

Resources

There are no resources for this lesson.

Notes can be saved and accessed anywhere in the course. They also double as bookmarks so you can quickly review important lesson material.

Create note

In this lecture we will learn how to use PSDrive. The PSDrive cmdlet allows you to view, create and remove PowerShell drives. A PSDrive is considered a data store location that can represent the file system, a registry hive and network share, among other things as well. 

If you want to follow along, download the lesson that came with this lecture. You'll find all the commands that we're going to use in the lesson. 

  • Go ahead and open PowerShell as the current user. We will use the cmdlet New-PSDrive to create a temporary or persistent drive that is mapped to or associated with a location in a data store. 

To see the syntax of PSDrive type Get-Help New-PSdrive, press return.

  • We will be using the command New-PS Drive and the parameters Name, PSProvider and Root. 
  • In our example, daily on a machine, you need to check a particular registry key. You have to open the registry editor, and drill down to that specific registry hive. In this case HKLM, and find the registry key. 

I'm going to show you how to use New-PS drive to map that registry location to a name. And make it assessable like any file system drive. 

  • Now go ahead and copy and paste the first command into PowerShell.

Command #1

New-PSDrive -Name PSReg -PSProvider Registry -Root HKLM:\SOFTWARE\Microsoft\PowerShell\3\

Now what are the following parameters used for? -Name specifies a name for the new drive -PSProvider this shows that the drive is associated with the registry. -Root specifies the data store location to which a PowerShell drive is mapped. And HKLM is the target registry hive. Now press return. 

To access the newly created PSDrive Type cd space psreg: don't forget the colon just after the psreg: name, otherwise you will get an error. And press return. 

Now type dir, and press return. And there is our registry entries.

  • Additional PSDrive cmdlets. Get-PSDrive. This command that gets the drive in the current session. New-PSDrive creates a PowerShell drive that's mapped to a location in a data store, such as a network drive, a directory on the local computer, or a registry key.

Remove-PSDrive. This cmdlet deletes our PowerShell drives that were created by using the New-PSDrive cmdlet. 

Now we'll create a PSDrive and map it to a local folder. Now will copy and paste the second command into PowerShell.

Command #2 
             New-PSDrive -Name "Win" -PSProvider "FileSystem" -Root “C:\windows\media”  

Now for parameters, -Name specifies the name for the new drive. In this case it will be win. The -PSprovider parameter, it'll be file system and the -root will be the folder C:\ windows\ media. Now go ahead and press return.

To access your new PSDrive, type CD space win: then type dir.

  • One important point to note here is that all your PSdrives are non-persistent and that means they'll disappear as soon as your session is closed. 

To make your PSDrive persistent and last even if your session is closed, you can map the PSDrive to appear in Windows Explorer using the switch -persist. 

  • Now copy and paste the third command into PowerShell. 

Command #3
             New-PSDrive -Name 'L' -PSProvider FileSystem -Root '\\127.0.0.1\C$\Recycler -persist

Server Academy Members Only

Sorry, this lesson is only available to Server Academy Full Access members. Become a Full-Access Member now and you’ll get instant access to all of our courses.

0 0 votes
Lesson Rating
Subscribe
Notify of
profile avatar
4 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments

profile avatar
Ambrose Garza(@ambroseg)
Member
1 year ago

I could not get command 3 to work on windows 10 or on windows server2016 it kept giving me this error.

PS C:\Windows\system32> New-PSDrive -Name ‘L’ -PSProvider FileSystem -Root ‘\\127.0.0.1\C$\Recycler’ -persist
New-PSDrive : The specified network resource or device is no longer available
At line:1 char:1
+ New-PSDrive -Name ‘L’ -PSProvider FileSystem -Root ‘\\127.0.0.1\C$\Re …
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  + CategoryInfo     : InvalidOperation: (L:PSDriveInfo) [New-PSDrive], Win32Exception
  + FullyQualifiedErrorId : CouldNotMapNetworkDrive,Microsoft.PowerShell.Commands.NewPSDriveCommand

profile avatar
Ricardo P(@ricardop)
Admin
Reply to  Ambrose Garza
1 year ago

Hi profile avatar Ambrose Garza
I get the same on Windows 10 and Windows Server 2016. It seems the Recycler folder is not available under C:\ drive unless you create one folder with the same name.
Ricardo.

profile avatar
dustenm(@dustenm)
Member
1 year ago

Im on windows 11 and have the same issue of command #3 resulting in nothing but errors… Maybe lesson needs some updating

profile avatar
Ricardo P(@ricardop)
Admin
Reply to  dustenm
1 year ago

We will be updating.