0

I am able to use Powershell to configure WinRM using a special "cd" command. Can anyone explain how it works and how I can implement that type of plug in for my own app?

JasonMArcher
  • 14,195
  • 22
  • 56
  • 52
makerofthings7
  • 60,103
  • 53
  • 215
  • 448

1 Answers1

3

What you are looking at is a PowerShell Provider. You can implement providers to expose data or configuration information as a file system.

This link should get your started, but know that providers are more difficult to implement than cmdlets.

Writing a Windows PowerShell Provider

JasonMArcher
  • 14,195
  • 22
  • 56
  • 52