Tagged Questions

Description of PowerShell Providers Providers are a Windows PowerShell feature that exposes objects and operations as a file system within the PowerShell environment. Resources Writing a PowerShell Provider (MDSN) Microsoft Windows PowerShell Home Windows PowerShell (MSDN)

learn more… | top users | synonyms

5
votes
1answer
109 views

In a PowerShell Provider, when do you refresh vs cache data?

I am writing a PowerShell provider in C#. The provider exposes an applications domain objects through a drive-like interface. For example: my:\Users\joe@blow.com my:\Customers\Marty This data ...
2
votes
2answers
164 views

How to support powershell tab expansion in psprovider?

I'm implementing Powershell PSProvider for some internal hierarchical data. Everything works fine, I can navigate through the tree with usual cd/dir commands, the only thing doesn't work is tab ...
2
votes
2answers
579 views

PowerShell custom provider RemoveItem

I'm implementing a custom PowerShell provider. I'm now working on the remove-item cmdlet implementation. The RemoveItem method has the following signature: protected override void RemoveItem(string ...
1
vote
1answer
256 views

How to make zip etc. files appear as folders in PowerShell?

How can I make zip etc. files appear as folders in powershell? Does PowerShell have a concept of folder (item) providers akin to drive providers? Can this be done without implementing a drive ...
1
vote
1answer
230 views

How do I persist Powershell provider drive information?

In my Powershell provider, which is a business-logic layer over an SQL database, the Powershell drives equate to database connection settings. This collection of connection settings is persisted to ...
1
vote
3answers
93 views

Is there a way in Powershell to provide virtual file systems in other file systems?

I know you can write support for custom PSDrives. But those are always a root of a file system. What would be nice if there was a way to allow for VFS start at arbitrary nodes of the file system, such ...
0
votes
1answer
80 views

PowerShell InitializeDefaultDrive

In my custom powershell provider I want the user to be able to skip the internal call to InitializeDefaultDrives. The InitializeDefaultDrives method is called when the provider starts. I guess this ...