Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

8,916

Downloads of v 1.0.35:

275

Last Update:

26 Aug 2019

Package Maintainer(s):

Software Author(s):

  • Friedrich Weinmann

Tags:

admin powershell module framework tools

psframework (PowerShell Module)

This is not the latest version of psframework (PowerShell Module) available.

  • 1
  • 2
  • 3

1.0.35 | Updated: 26 Aug 2019

Downloads:

8,916

Downloads of v 1.0.35:

275

Maintainer(s):

Software Author(s):

  • Friedrich Weinmann

psframework (PowerShell Module) 1.0.35

This is not the latest version of psframework (PowerShell Module) available.

  • 1
  • 2
  • 3

All Checks are Passing

3 Passing Tests


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Successful:

No detections found in any package files

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install psframework (PowerShell Module), run the following command from the command line or from PowerShell:

>

To upgrade psframework (PowerShell Module), run the following command from the command line or from PowerShell:

>

To uninstall psframework (PowerShell Module), run the following command from the command line or from PowerShell:

>

Deployment Method:

NOTE

This applies to both open source and commercial editions of Chocolatey.

1. Enter Your Internal Repository Url

(this should look similar to https://community.chocolatey.org/api/v2/)


2. Setup Your Environment

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://community.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

3. Copy Your Script

choco upgrade psframework -y --source="'INTERNAL REPO URL'" --version="'1.0.35'" [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 psframework -y --source="'INTERNAL REPO URL'" --version="'1.0.35'" 
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install psframework
  win_chocolatey:
    name: psframework
    version: '1.0.35'
    source: INTERNAL REPO URL
    state: present

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'psframework' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '1.0.35'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller psframework
{
    Name     = "psframework"
    Version  = "1.0.35"
    Source   = "INTERNAL REPO URL"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'psframework':
  ensure   => '1.0.35',
  provider => 'chocolatey',
  source   => 'INTERNAL REPO URL',
}

Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

Package Approved

This package was approved as a trusted package on 26 Aug 2019.

Description

The PowerShell Framework project strives to provide tools and infrastructure for PowerShell developers. Main Goals:

  • Reduce development time needed
  • Improve Manageability of developed code
  • Enhance scalability of code
  • Enhance uniformity of user experience

NOTE: This module requires a minimum of PowerShell v3.

NOTE: This is an automatically updated package. If you find it is out of date by more than a week, please contact the maintainer(s) and let them know the package is no longer updating correctly.


tools\.skipAutoUninstaller
 
tools\chocolateyBeforeModify.ps1
$ErrorActionPreference = 'Stop'

$moduleName = 'psframework'      # this could be different from package name

$module = Get-Module -Name $moduleName
if ($module) {
    Write-Verbose "Module '$moduleName' is imported into the session. Removing it."
    Remove-Module -Name $moduleName -Force -ErrorAction SilentlyContinue

    if ($lib = [appdomain]::CurrentDomain.GetAssemblies() | Where-Object FullName -like "psframework, *") {
        Write-Verbose "Found locked DLL files for module '$moduleName'."
        $moduleDir = Split-Path $module.Path -Parent
        if ($lib.Location -like "$moduleDir\*") {
            Write-Warning @"
We have detected '$moduleName' to be already imported from '$moduleDir' and the dll files have been locked and cannot be updated.
Please close all consoles that have the module imported (Remove-Module '$moduleName' is NOT enough).
"@
            throw
        }
    }
}
tools\chocolateyInstall.ps1
$ErrorActionPreference = 'Stop'

$toolsDir   = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$moduleName = 'psframework'  # this may be different from the package name and different case

if ($PSVersionTable.PSVersion.Major -lt 3) {
    throw "$moduleName) module requires a minimum of PowerShell v3."
}

# module may already be installed outside of Chocolatey
Remove-Module -Name $moduleName -Force -ErrorAction SilentlyContinue

$sourcePath = Join-Path -Path $toolsDir -ChildPath "$modulename.zip"
$destPath   = Join-Path -Path $env:ProgramFiles -ChildPath "WindowsPowerShell\Modules\$moduleName"

if ($PSVersionTable.PSVersion.Major -ge 5)
{
    $destPath     = Join-Path -Path $destPath -ChildPath $env:ChocolateyPackageVersion
}

Write-Verbose "Creating destination directory '$destPath' for module."
New-Item -Path $destPath -ItemType Directory -Force -ErrorAction SilentlyContinue | Out-Null

Write-Verbose "Extracting '$moduleName' files from '$sourcePath' to '$destPath'."
Get-ChocolateyUnzip -FileFullPath $sourcePath -Destination $destPath

if ($PSVersionTable.PSVersion.Major -lt 4)
{
    $modulePaths = [Environment]::GetEnvironmentVariable('PSModulePath', 'Machine') -split ';'
    if ($modulePaths -notcontains $destPath)
    {
        Write-Verbose "Adding '$destPath' to PSModulePath."
        $newModulePath = @($destPath, $modulePaths) -join ';'

        [Environment]::SetEnvironmentVariable('PSModulePath', $newModulePath, 'Machine')
        $env:PSModulePath = $newModulePath
    }
}
tools\chocolateyUninstall.ps1
$ErrorActionPreference = 'Stop'

$moduleName = 'psframework'
$sourcePath = Join-Path -Path $env:ProgramFiles -ChildPath "WindowsPowerShell\Modules\$moduleName"

Write-Verbose "Removing all version of '$moduleName' from '$sourcePath'."
Remove-Item -Path $sourcePath -Recurse -Force -ErrorAction SilentlyContinue

if ($PSVersionTable.PSVersion.Major -lt 4) {
    $modulePaths = [Environment]::GetEnvironmentVariable('PSModulePath', 'Machine') -split ';'

    Write-Verbose "Removing '$sourcePath' from PSModulePath."
    $newModulePath = $modulePaths | Where-Object { $_ -ne $sourcePath }

    [Environment]::SetEnvironmentVariable('PSModulePath', $newModulePath, 'Machine')
    $env:PSModulePath = $newModulePath
}
tools\LICENSE.txt
From: https://raw.githubusercontent.com/PowershellFrameworkCollective/psframework/development/LICENSE

MIT License

Copyright (c) 2017 Friedrich Weinmann

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
tools\psframework.zip
md5: 6B237A6C3EB749ADEABFB72E7A4547AB | sha1: 1716479FA057D2EB1DDFFE57A2B6BD57F6EE1802 | sha256: 2D3FC2ACF89C4E1D0FF844DE82EF51BEE56F1EF6D0F397AAF4B6910657BCEC57 | sha512: E64C5668F1D0D81E41050960CC58CA4D02CCE62BC346FC3BB5D35C0F8C8E1B17434728376993A1A884DC8AF29EB7C097BD360DDC9C794F0A0FB220BF9E622947
tools\VERIFICATION.txt
VERIFICATION
Verification is intended to assist the Chocolatey moderators and community in verifying that this package's contents are trustworthy.

To verify the files using the project source:

1. Please go to the project source location (https://github.com/PowershellFrameworkCollective/psframework) and download the source files;
2. Build the source to create the binary files to verify;
3. Use Get-FileHash -Path <FILE TO VERIFY> to get the file hash value from both the built file (from step 1 above) and the file from the dbatools.zip within the package and compare them;

Alternatively you can download the module from the PowerShell Gallery ...

    Save-Module -Name psframework -Path <PATH TO DOWNLOAD TO>

... and compare the files from the package against those in the installed module. Again use Get-FileHash -Path <FILE TO VERIFY> to retrieve those hash values.

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.

Add to Builder Version Downloads Last Updated Status
psframework (PowerShell Module) 1.9.310 133 Wednesday, September 13, 2023 Approved
psframework (PowerShell Module) 1.9.308 74 Friday, September 8, 2023 Approved
psframework (PowerShell Module) 1.8.291 337 Tuesday, July 11, 2023 Approved
psframework (PowerShell Module) 1.8.289 143 Tuesday, June 13, 2023 Approved
psframework (PowerShell Module) 1.7.270 371 Monday, February 6, 2023 Approved
psframework (PowerShell Module) 1.7.249 347 Monday, October 17, 2022 Approved
psframework (PowerShell Module) 1.7.247 70 Thursday, October 13, 2022 Approved
psframework (PowerShell Module) 1.7.246 79 Friday, October 7, 2022 Approved
psframework (PowerShell Module) 1.7.245 62 Wednesday, October 5, 2022 Approved
psframework (PowerShell Module) 1.7.244 111 Tuesday, September 20, 2022 Approved
psframework (PowerShell Module) 1.7.237 264 Wednesday, June 15, 2022 Approved
psframework (PowerShell Module) 1.7.235 105 Saturday, June 4, 2022 Approved
psframework (PowerShell Module) 1.7.227 120 Friday, May 13, 2022 Approved
psframework (PowerShell Module) 1.7.226 59 Friday, May 13, 2022 Approved
psframework (PowerShell Module) 1.6.214 604 Thursday, November 11, 2021 Approved
psframework (PowerShell Module) 1.6.205 611 Wednesday, June 16, 2021 Approved
psframework (PowerShell Module) 1.6.201 870 Thursday, May 6, 2021 Approved
psframework (PowerShell Module) 1.6.198 151 Monday, April 12, 2021 Approved
psframework (PowerShell Module) 1.6.197 104 Thursday, April 8, 2021 Approved
psframework (PowerShell Module) 1.6.195 97 Thursday, April 1, 2021 Approved
psframework (PowerShell Module) 1.6.193 85 Thursday, April 1, 2021 Approved
psframework (PowerShell Module) 1.6.181 145 Wednesday, March 17, 2021 Approved
psframework (PowerShell Module) 1.5.172 214 Tuesday, February 9, 2021 Approved
psframework (PowerShell Module) 1.5.171 113 Sunday, February 7, 2021 Approved
psframework (PowerShell Module) 1.5.170 160 Tuesday, January 19, 2021 Approved
psframework (PowerShell Module) 1.5.168 107 Monday, January 18, 2021 Approved
psframework (PowerShell Module) 1.4.150 474 Friday, September 25, 2020 Approved
psframework (PowerShell Module) 1.4.149 189 Thursday, September 3, 2020 Approved
psframework (PowerShell Module) 1.4.146 136 Sunday, August 30, 2020 Approved
psframework (PowerShell Module) 1.1.59 1218 Saturday, November 2, 2019 Approved
psframework (PowerShell Module) 1.0.35 275 Monday, August 26, 2019 Approved
psframework (PowerShell Module) 1.0.33 153 Sunday, August 11, 2019 Approved
psframework (PowerShell Module) 1.0.32 152 Sunday, August 11, 2019 Approved
psframework (PowerShell Module) 1.0.19 222 Wednesday, May 22, 2019 Approved
psframework (PowerShell Module) 1.0.13 184 Tuesday, April 30, 2019 Approved
psframework (PowerShell Module) 1.0.12 230 Friday, April 5, 2019 Approved

This package has no dependencies.

Discussion for the psframework (PowerShell Module) Package

Ground Rules:

  • This discussion is only about psframework (PowerShell Module) and the psframework (PowerShell Module) 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 psframework (PowerShell Module), 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.
comments powered by Disqus