Welcome to the Chocolatey Community Package Repository! The packages found in this section of the site are provided, maintained, and moderated by the community.
Moderation
Every version of each package undergoes a rigorous moderation process before it goes live that typically includes:
- Security, consistency, and quality checking
- Installation testing
- Virus checking through VirusTotal
- Human moderators who give final review and sign off
More detail at Security and Moderation.
Organizational Use
If you are an organization using Chocolatey, we want your experience to be fully reliable. Due to the nature of this publicly offered repository, reliability cannot be guaranteed. Packages offered here are subject to distribution rights, which means they may need to reach out further to the internet to the official locations to download files at runtime.
Fortunately, distribution rights do not apply for internal use. With any edition of Chocolatey (including the free open source edition), you can host your own packages and cache or internalize existing community packages.
Disclaimer
Your use of the packages on this site means you understand they are not supported or guaranteed in any way. Learn more...

Downloads:
1,574
Downloads of v 0.9.47:
262
Last Update:
14 Sep 2014
Package Maintainer(s):
Software Author(s):
- Glenn Sarti
Tags:
posh powershell puppet- Software Specific:
- Software Site
- Package Specific:
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download

Posh Puppet Reports
This is not the latest version of Posh Puppet Reports available.
- Software Specific:
- Software Site
- Package Specific:
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
1,574
Downloads of v 0.9.47:
262
Maintainer(s):
Software Author(s):
- Glenn Sarti
Edit Package
To edit the metadata for a package, please upload an updated version of the package.
Chocolatey's Community Package Repository currently does not allow updating package metadata on the website. This helps ensure that the package itself (and the source used to build the package) remains the one true source of package metadata.
This does require that you increment the package version.
Posh Puppet Reports 0.9.47
This is not the latest version of Posh Puppet Reports available.
All Checks are Unknown
2 Test of Unknown Status
Validation Testing Unknown
Verification Testing Unknown
To install Posh Puppet Reports, run the following command from the command line or from PowerShell:
To upgrade Posh Puppet Reports, run the following command from the command line or from PowerShell:
To uninstall Posh Puppet Reports, run the following command from the command line or from PowerShell:
NOTE: This applies to both open source and commercial editions of Chocolatey.
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://chocolatey.org/api/v2. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
- You can also just download the package and push it to a repository Download
-
Open Source
- Download the Package Download
- Follow manual internalization instructions
-
Package Internalizer (C4B)
- Run
choco download poshpuppetreports --internalize --version=0.9.47 --source=https://chocolatey.org/api/v2
(additional options) - Run
choco push --source="'http://internal/odata/repo'"
for package and dependencies - Automate package internalization
- Run
3. Enter your internal repository url
(this should look similar to https://chocolatey.org/api/v2)
4. Choose your deployment method:
choco upgrade poshpuppetreports -y --source="'STEP 3 URL'" [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade poshpuppetreports -y --source="'STEP 3 URL'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Ensure poshpuppetreports installed
win_chocolatey:
name: poshpuppetreports
state: present
version: 0.9.47
source: STEP 3 URL
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
Coming early 2020! Central Managment Reporting available now! More information...
chocolatey_package 'poshpuppetreports' do
action :install
version '0.9.47'
source 'STEP 3 URL'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
Chocolatey::Ensure-Package
(
Name: poshpuppetreports,
Version: 0.9.47,
Source: STEP 3 URL
);
Requires Otter Chocolatey Extension. See docs at https://inedo.com/den/otter/chocolatey.
cChocoPackageInstaller poshpuppetreports
{
Name = 'poshpuppetreports'
Ensure = 'Present'
Version = '0.9.47'
Source = 'STEP 3 URL'
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'poshpuppetreports':
provider => 'chocolatey',
ensure => '0.9.47',
source => 'STEP 3 URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
salt '*' chocolatey.install poshpuppetreports version="0.9.47" source="STEP 3 URL"
See docs at https://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.chocolatey.html.
5. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
This package was submitted prior to moderation and has not been approved. While it is likely safe for you, there is more risk involved.
Powershell scripts to convert Puppet YAML reports into different formats (HTML, TeamCity events), and includes a GUI to convert reports on the fly
$packageName = 'poshpuppetreports' # arbitrary name for the package, used in messages
try {
$installDir = Join-Path (Join-Path $PSHome "Modules") "POSHPuppetReports"
$sourceDir = Join-Path (Split-Path -parent $MyInvocation.MyCommand.Definition) "module"
# Copy the folder to the powershell modules directory
[void] (Copy-Item -Path $sourceDir -Destination $installDir -Recurse -Confirm:$false -Force -ErrorAction 'Stop')
Write-ChocolateySuccess "$packageName"
} catch {
Write-ChocolateyFailure "$packageName" "$($_.Exception.Message)"
throw
}
$packageName = 'poshpuppetreports' # arbitrary name for the package, used in messages
try {
$installDir = Join-Path (Join-Path $PSHome "Modules") "POSHPuppetReports"
# Remove the folder from the powershell modules directory
[void] (Remove-Item $installDir -Recurse -Confirm:$false -Force -ErrorAction 'Stop')
Write-ChocolateySuccess "$packageName"
} catch {
Write-ChocolateyFailure "$packageName" "$($_.Exception.Message)"
throw
}
function ConvertFrom-PuppetReport {
[cmdletBinding(SupportsShouldProcess=$false,ConfirmImpact='Low')]
param(
[Parameter(Mandatory=$true,ValueFromPipeline=$true)]
[string[]]$Report
,[Parameter(Mandatory=$true,ValueFromPipeline=$false)]
[string[]]$Transform
,[Parameter(Mandatory=$false,ValueFromPipeline=$false)]
[string]$TransformDir = ''
,[Parameter(Mandatory=$true,ValueFromPipeline=$false)]
[string]$OutputDir
,[Parameter(Mandatory=$false,ValueFromPipeline=$false)]
[switch]$OutputXML = $false
,[Parameter(Mandatory=$false,ValueFromPipeline=$false)]
[switch]$TeeToWriteHost = $false
)
Begin {
# References
# Report v3/4 Reference for Puppet 2.7.x and 3.x
# http://docs.puppetlabs.com/puppet/3/reference/format_report.html
# Fatal Sanity Checks
# Can't check for piped output until the Process section
if ($TransformDir -eq '') { $TransformDir = "$PSScriptRoot\..\transforms" }
if ($Transform -eq '') { Throw 'No transform was specified'; return; }
$Transform | % {
if (!(Test-Path "$TransformDir\$($_).xsl")) { Throw ('Transform file ' + $_ + '.xsl does not exist'); return; }
}
if ($OutputDir -ne '') {
if (!(Test-Path $OutputDir)) { Throw ('Output directory of ' + $OutputDir + ' does not exist'); return; }
}
}
Process {
# Somewhat fatal Sanity Checks
if ($Report -eq '') { Throw 'No puppet report file was specified'; return; }
if (!(Test-Path $Report)) { Throw ('Report file ' + $Report + ' does not exist'); return; }
# Process the report and transforms...
$yamlFile = $Report
try {
Write-Verbose "Reading $yamlFile ..."
$objYaml = Get-Yaml -FromFile $yamlFile -ErrorAction Stop
$xmlDoc = [xml]"<report />"
Write-Verbose "Creating Resource Status Summary XML..."
Write-ResourceStatusSummary $objYaml $xmlDoc
# TODO: Write out the Metric.Time table to determine the total time
Write-Verbose "Creating Resource Status XML..."
Write-ResourceStatus $objYaml $xmlDoc
if ($OutputXML) {
$filename = Join-Path -Path $OutputDir -ChildPath ( (Get-ChildItem $yamlFile).BaseName + '.xml')
Write-Verbose "Writing XML to $filename ..."
$xmlDoc.innerXml | Out-File $filename -Encoding ASCII -Force -Confirm:$false
}
$Transform | % {
$transformFile = "$TransformDir\$($_).xsl"
$filename = Join-Path -Path $OutputDir -ChildPath ( (Get-ChildItem $yamlFile).BaseName + '.' + $_)
Write-Verbose "Applying transform $transformFile , output to $filename ..."
[void] (Transform-XML -XMLDocument $xmlDoc -transformFilename $transformFile | Out-File $filename -Force -Confirm:$false )
if ($TeeToWriteHost) {
# TODO Write out the file content to Write-Host. Useful if the caller is trapping Stdout
}
Write-Output $filename
}
}
catch
{
Write-Verbose ("ERROR " + $_.ToString())
Throw $_
return ;
}
}
End {
}
}
# Import this modules functions etc.
Get-ChildItem -Path $PSScriptRoot | Unblock-File
Get-ChildItem -Path $PSScriptRoot\*.ps1 | ForEach-Object {
Write-Verbose "Importing $($_.Name)..."
. ($_.Fullname)
}
function Open-Location {
[cmdletBinding(SupportsShouldProcess=$false,ConfirmImpact='Low')]
param(
[Parameter(Mandatory=$false,ValueFromPipeline=$false)]
[string]$Servername
,[Parameter(Mandatory=$false,ValueFromPipeline=$false)]
[string]$ConnectAs
,[Parameter(Mandatory=$true,ValueFromPipeline=$false)]
[string]$TargetDirectory
)
Begin {
[void] (Get-PSDrive 'PuppetReports' -ErrorAction 'SilentlyContinue' | Remove-PSDrive)
}
Process {
if (($ServerName -eq '') -or ($ServerName -eq 'localhost'))
{
Write-Verbose 'Connecting to local filesystem...'
[void](New-PSDrive -Name 'PuppetReports' -PSProvider FileSystem -Root $TargetDirectory -Scope Script)
}
else
{
Write-Verbose "Connecting to $($ServerName) ..."
}
}
}
function Get-WPFControl {
[cmdletBinding(SupportsShouldProcess=$false,ConfirmImpact='Low')]
param(
[Parameter(Mandatory=$true,ValueFromPipeline=$true)]
[string]$ControlName
,[Parameter(Mandatory=$false,ValueFromPipeline=$false)]
[System.Windows.Window]$Window = $Global:wpfWindow
)
Process {
Write-Output $Window.FindName($ControlName)
}
}
Function Invoke-ConvertReport() {
[cmdletBinding(SupportsShouldProcess=$false,ConfirmImpact='Low')]
param(
[Parameter(Mandatory=$true,ValueFromPipeline=$false)]
[string]$YAMLFilename
,[Parameter(Mandatory=$true,ValueFromPipeline=$false)]
[string]$TransformFilename
,[Parameter(Mandatory=$true,ValueFromPipeline=$false)]
[string]$TransformParentPath
)
Process {
$outputDir = ($Env:Temp)
$resultContent = (ConvertFrom-PuppetReport -Report $YAMLFilename -Transform $TransformFilename -TransformDir $TransformParentPath -OutputDir $outputDir -Verbose:($VerbosePreference -eq 'Continue'))
$fileContent = [IO.File]::ReadAllText($resultContent)
if ($TransformFilename.EndsWith('.stdout')) {
$fileContent = "<html><body><pre>" + $fileContent + "</pre></body></html>"
}
(Get-WPFControl 'reportBrowser').NavigateToString($fileContent)
Write-Verbose "Removing temporary file $resultContent ..."
[void](Remove-Item -Path $resultContent -Force -Confirm:$false)
}
}
# Setup script defaults
$ErrorActionPreference = "Stop"
$VerbosePreference = "Continue"
# Bootstrap
function Get-ScriptDirectory
{
$Invocation = (Get-Variable MyInvocation -Scope 1).Value
$global:ScriptDirectory = (Split-Path ($Invocation.MyCommand.Path))
$global:ScriptDirectory
}
[void] (Get-ScriptDirectory)
$transformPath = (Join-Path -Path $global:ScriptDirectory -ChildPath '..\transforms')
#Load Required Assemblies
Write-Verbose 'Loading WPF assemblies'
Add-Type �assemblyName PresentationFramework
Add-Type �assemblyName PresentationCore
Add-Type �assemblyName WindowsBase
Write-Verbose 'Loading the POSHPuppetReports module'
Import-Module "$PSScriptRoot\..\POSHPuppetReports.psd1"
# Load other PS1 files
Get-ChildItem -Path $global:ScriptDirectory | Where-Object { ($_.Name -imatch '\.ps1$') -and ($_.Name -ne 'reportgui.ps1') } | % {
Write-Verbose "Importing $($_.Name)..."
. ($_.Fullname)
}
# Load XAML from the external file
Write-Verbose "Loading the window XAML..."
[xml]$xaml = (Get-Content (Join-Path -Path $global:ScriptDirectory -ChildPath 'reportgui.xaml'))
# Build the GUI
Write-Verbose "Parsing the window XAML..."
$reader = (New-Object System.Xml.XmlNodeReader $xaml)
$Global:wpfWindow = [Windows.Markup.XamlReader]::Load($reader)
# Wire up the XAML
Write-Verbose "Adding XAML event handlers..."
(Get-WPFControl 'buttonConnect').Add_Click({
$serverName = ((Get-WPFControl 'textServerName').Text)
$userName = ((Get-WPFControl 'textUsername').Text)
$location = ((Get-WPFControl 'textReportLocation').Text)
[void]( Open-Location -ServerName $serverName -ConnectAs $userName -TargetDirectory $location )
# Populate the list box
Write-Verbose 'Populating the report list...'
[xml]$xmlDoc = '<reports xmlns=""></reports>'
Get-Item -Path 'PuppetReports:\*.yaml' | Sort-Object ($_.LastWriteTime) -Descending | % {
$xmlNode = $xmlDoc.CreateElement('report')
$xmlNode.SetAttribute('name',$_.name.ToString())
$xmlNode.SetAttribute('datemodified',($_.LastWriteTime.ToString('dd MMM yyyy HH:mm:ss')))
$xmlNode.innerText = ($_.FullName)
$xmlDoc.reports.AppendChild($xmlNode)
}
# Write the xml document to the XAML for databinding
(Get-WPFControl 'xmlReportList').Document = $xmlDoc
Write-Verbose 'Expanding the report list'
# Expand the Reports List
(Get-WPFControl 'expandReportList').IsExpanded = $true
# Contract the Report Location
(Get-WPFControl 'expandReportLocation').IsExpanded = $false
})
(Get-WPFControl 'listReports').Add_MouseDoubleClick({
param($sender,$e)
# Parse the control tree looking for the descendant ListViewItem
$originalSource = [System.Windows.DependencyObject]$e.OriginalSource;
while ( ($originalSource -ne $null) -and ($originalSource.GetType().ToString() -ne 'System.Windows.Controls.ListViewItem') ) {
$originalSource = [System.Windows.Media.VisualTreeHelper]::GetParent($originalSource)
}
if ($originalSource -eq $null) { return; }
# Get the data context (XMLElement)
$dc = $originalSource.DataContext
$reportName = ($dc."#text")
# Get the template name
$index = (Get-WPFControl 'comboReportList').selectedIndex
if ($index -eq -1) { # No transform has been selected
[void] ([System.Windows.MessageBox]::Show('Please select a Report Type to use','Error','Ok','Information'))
return;
}
$transformName = (Get-WPFControl 'comboReportList').Items[$index]
# Actually do the conversion
Write-Verbose "Parsing report $($reportName) with transform $($transformName)..."
Invoke-ConvertReport -YAMLFilename $reportName -TransformFilename $transformName -TransformParentPath $transformPath
Write-Verbose "Conversion finished..."
})
# Populate XAML items
Write-Verbose "Populating XAML controls..."
Get-ChildItem -Path $transformPath | % {
$transfromName = ($_.Name) -replace '.xsl',''
[void]( (Get-WPFControl 'comboReportList').Items.Add($transfromName) )
}
$readMe = $global:ScriptDirectory + '\reportgui.readme.html'
if (Test-Path -Path $readMe) {
Write-Verbose "Displaying ReadMe..."
(Get-WPFControl 'reportBrowser').NavigateToString( ([IO.File]::ReadAllText($readMe) ) )
}
# Show the GUI
Write-Verbose "Showing the window..."
[void]($wpfWindow.ShowDialog())
Write-Verbose "Cleanup..."
$wpfWindow.Close()
$wpfWindow = $null
function Transform-XML($xmlDocument, $transformFilename) {
$xmlContentReader = ([System.Xml.XmlReader]::Create( (New-Object System.IO.StringReader($xmlDocument.innerXML))))
$StyleSheet = New-Object System.Xml.Xsl.XslCompiledTransform
$StyleSheet.Load($transformFile)
$stringWriter = New-Object System.IO.StringWriter
$XmlWriter = New-Object System.XMl.XmlTextWriter $StringWriter
$StyleSheet.Transform( [System.Xml.XmlReader]$xmlContentReader, [System.Xml.XmlWriter]$XmlWriter)
Write-Output $stringWriter.ToString()
}
function Write-HashTableToXML($attrName, $attrValue, $rootNode) {
$xmlNode = $rootNode.OwnerDocument.createElement($attrName)
if ($attrValue -ne $null) {
switch ($attrValue.GetType().ToString()) {
'System.String' {
# Special property. Convert it to ms as well
if ($attrName -eq 'evaluation_time') {
$xmlMSnode = $rootNode.OwnerDocument.createElement($attrName + '_ms')
$xmlMSnode.innerText = [int](([float]$attrValue)*1000)
[void]($rootNode.appendChild($xmlMSnode))
}
$xmlNode.innerText = $attrValue;
break ;
}
'System.Object[]' {
if ( ($attrValue[0]).GetType().ToString() -eq 'System.Collections.HashTable' ) {
$attrValue | % { Write-HashTableToXML $attrName $_ $xmlNode }
} else {
$xmlNode.innerText = $attrValue;
}
break ;
}
'System.Collections.Hashtable' { $attrValue.Keys | % { Write-HashTableToXML $_ $attrValue[$_] $xmlNode }; break ; }
default { $xmlNode.innerText = ('Unknown type ' + $attrValue.GetType().ToString()); break ; }
}
}
[void]($rootNode.appendChild($xmlNode))
}
function Write-ResourceStatus($objYaml, $xmlDoc) {
$resourcesNode = $xmlDoc.createElement('resources')
$objYaml.resource_statuses.Keys | % {
$resourceNode = $xmlDoc.createElement('resource')
[void]($resourceNode.SetAttribute('name',$_))
$resource = $objYaml.resource_statuses[$_]
$resource.Keys | % {
Write-HashTableToXML $_ ($resource[$_]) $resourceNode
}
[void]($resourcesNode.AppendChild($resourceNode))
}
[void]($xmlDoc.DocumentElement.AppendChild($resourcesNode))
}
function Write-ResourceStatusSummary($objYaml, $xmlDoc) {
$reportInfoNode = $xmlDoc.createElement('reportinformation')
$node = $xmlDoc.createElement('host'); $node.innerText = $objYaml.host; [void]($reportInfoNode.appendChild($node))
$node = $xmlDoc.createElement('time'); $node.innerText = $objYaml.time; [void]($reportInfoNode.appendChild($node))
$node = $xmlDoc.createElement('reportformat'); $node.innerText = $objYaml.report_format; [void]($reportInfoNode.appendChild($node))
$node = $xmlDoc.createElement('puppetversion'); $node.innerText = $objYaml.puppet_version; [void]($reportInfoNode.appendChild($node))
$node = $xmlDoc.createElement('status'); $node.innerText = $objYaml.status; [void]($reportInfoNode.appendChild($node))
$node = $xmlDoc.createElement('environment'); $node.innerText = $objYaml.environment; [void]($reportInfoNode.appendChild($node))
[void]($xmlDoc.DocumentElement.appendChild($reportInfoNode))
$statuses = @{}
$resourceMetrics = $objYaml.metrics['resources'].values
$noChange = 0
$total = 0
for($index = $resourceMetrics.GetLowerBound(0); $index -lt $resourceMetrics.GetUpperBound(0); $index = $index + 3) {
if ($resourceMetrics[$index] -eq 'total')
{
$noChange = $noChange + $resourceMetrics[$index + 2]
$total = $resourceMetrics[$index + 2]
}
else
{
$noChange = $noChange - $resourceMetrics[$index + 2]
$statusInfo = @{}
$statusInfo['count'] = $resourceMetrics[$index + 2]
$statusInfo['id'] = $resourceMetrics[$index]
$statuses[$resourceMetrics[$index + 1]] = $statusInfo
}
}
$statusInfo = @{}
$statusInfo['count'] = $noChange
$statusInfo['id'] = 'nochange'
$statuses["No change"] = $statusInfo
$summaryNode = $xmlDoc.createElement('resourcesummary')
[void]($summaryNode.SetAttribute('total',$total))
$statuses.Keys | ForEach-Object {
$node = $xmlDoc.createElement('status')
$node.SetAttribute('name',$_)
$node.SetAttribute('id',$statuses[$_].id)
$node.SetAttribute('count',$statuses[$_].count)
if ($total -gt 0)
{ $node.SetAttribute('percent',[int](($statuses[$_].count / $total)*100)) }
else
{ $node.SetAttribute('percent',0) }
[void]($summaryNode.AppendChild($node))
}
[void]($xmlDoc.DocumentElement.AppendChild($summaryNode))
}
- poshpuppetreports.0.9.47.nupkg (5ae86e292ca4) - ## / 57 - Log in or click on link to see number of positives
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Version | Downloads | Last Updated | Status |
---|---|---|---|
Posh Puppet Reports 0.9.55 | 629 | Sunday, December 14, 2014 | Approved |
Posh Puppet Reports 0.9.53 | 366 | Saturday, November 8, 2014 | Approved |
Posh Puppet Reports 0.9.51 | 317 | Saturday, September 27, 2014 | Unknown |
Posh Puppet Reports 0.9.47 | 262 | Sunday, September 14, 2014 | Unknown |
This package has no dependencies.
Ground Rules:
- This discussion is only about Posh Puppet Reports and the Posh Puppet Reports package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or Posh Puppet Reports, or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.