Skip to content

Latest commit

 

History

History
34 lines (13 loc) · 1.17 KB

chapter-3.md

File metadata and controls

34 lines (13 loc) · 1.17 KB

Chapter 3 | PSDrive and PSProviders

  • PSDrive is a PowerShell way of looking various storage types as Drive similar to filesystem drives.
  • This gives you capability do cd .. or md into PSDrives i.e. Registry, Certificates
  • CmdLet Get-PSDrive Lists all Logical Drives + PS Drives (Through PSProviders)

image

  • PowerShell providers let you access a variety of data stores as though they were file system drives

image

  • Examples

image

image

  • Lets Browse a Registry path and create a new hive and a key with a string value

image

image