Skip to content

Instantly share code, notes, and snippets.

@darrenjrobinson
Created October 11, 2016 23:07
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save darrenjrobinson/100c5c94be1bb581fea50ad643f19a0c to your computer and use it in GitHub Desktop.
Save darrenjrobinson/100c5c94be1bb581fea50ad643f19a0c to your computer and use it in GitHub Desktop.
Remove Powershell ISE Vertical AddOn Tools
# list ISE Vertical AddOn Tools
$psISE.CurrentPowerShellTab.VerticalAddOnTools
# Add on name from the list retreived above
$addOnName = 'PowerGist'
# Check you've spelled it right and remove
$exists = $psISE.CurrentPowerShellTab.VerticalAddOnTools | where { $_.Name -eq $addOnName }
if ($exists) {
$psISE.CurrentPowerShellTab.VerticalAddOnTools.Remove($exists)
}
# verify its gone
$psISE.CurrentPowerShellTab.VerticalAddOnTools
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment