Created
July 8, 2023 09:15
-
-
Save ShaunLawrie/0f4460fdbcf7c76a6a0a3c570a2325f6 to your computer and use it in GitHub Desktop.
Adding a feedback provider from PS https://devblogs.microsoft.com/powershell/what-are-feedback-providers/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using namespace System.Management.Automation.Subsystem.Feedback | |
using namespace System.Management.Automation.Subsystem | |
using namespace System.Threading | |
param ( | |
# Just unregister the implementation | |
[switch] $UnregisterOnly | |
) | |
class TestingFeedback : IFeedbackProvider { | |
[Guid] $Id | |
[FeedbackTrigger] $Trigger | |
[string] $Name | |
[string] $Description | |
TestingFeedback() { | |
$this.Id = [Guid]::new("230e5ee4-afa8-4319-9492-88239003f0e6"); | |
$this.Trigger = [FeedbackTrigger]::CommandNotFound | |
$this.Name = "testing" | |
$this.Description = "A feedback source for testing." | |
} | |
[FeedbackItem] GetFeedback([FeedbackContext] $context, [CancellationToken] $token) { | |
if ($null -eq [runspace]::DefaultRunspace) { | |
return $null | |
} | |
return [FeedbackItem]::new( | |
"Testing testing...", | |
[System.Collections.Generic.List[string]] @( | |
"1", | |
"2", | |
"3" | |
), | |
[FeedbackDisplayLayout]::Portrait | |
) | |
} | |
} | |
# Check if the provider is already registered | |
$provider = [TestingFeedback]::new() | |
$existingRegistration = (Get-PSSubsystem -Kind "FeedbackProvider").Implementations | Where-Object { | |
$_.Id -eq $provider.Id | |
} | |
# Re-add the provider to reflect code changes | |
if($null -ne $existingRegistration) { | |
[SubsystemManager]::UnregisterSubsystem( | |
[SubsystemKind]::FeedbackProvider, | |
$provider.Id | |
) | |
} | |
if(-not $UnregisterOnly) { | |
[SubsystemManager]::RegisterSubsystem( | |
[SubsystemKind]::FeedbackProvider, | |
$provider | |
) | |
Write-Host -ForegroundColor Green "Registered '$($provider.Name)' as a FeedbackProvider" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It's close but having some issues.
