Skip to content

Instantly share code, notes, and snippets.

@IAMPetro
Created December 22, 2016 09:35
Show Gist options
  • Save IAMPetro/e46cd0cc8b6a8acd44a0f5a75fc709ca to your computer and use it in GitHub Desktop.
Save IAMPetro/e46cd0cc8b6a8acd44a0f5a75fc709ca to your computer and use it in GitHub Desktop.
SharePoint: Mysterious parameter name g
# Open the Site Collection and the Solution Gallery Library
$web = Get-SPWeb http://yourDomain/
$solGallery = $web.Lists["Solution Gallery"]
# View all of the details on the specified Solution
$solGallery.Items | Where-Object {$_.displayName -eq "SolutionName"}
# View the properties of the specified Solution
$solution = $solGallery.Items | Where-Object {$_.displayName -eq "SolutionName"}
$solution.Properties
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment