Downloads:
9,776
Downloads of v 1.12.346:
81
Last Update:
25 Sep 2024
Package Maintainer(s):
Software Author(s):
- Friedrich Weinmann
Tags:
admin powershell module framework tools- Software Specific:
- Software Site
- Software Source
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
psframework (PowerShell Module)
- 1
- 2
- 3
1.12.346 | Updated: 25 Sep 2024
- Software Specific:
- Software Site
- Software Source
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
9,776
Downloads of v 1.12.346:
81
Maintainer(s):
Software Author(s):
- Friedrich Weinmann
psframework (PowerShell Module) 1.12.346
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Friedrich Weinmann. The inclusion of Friedrich Weinmann trademark(s), if any, upon this webpage is solely to identify Friedrich Weinmann goods or services and not for commercial purposes.
- 1
- 2
- 3
All Checks are Passing
3 Passing Tests
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:
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
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
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
-
Open Source
-
Download the package:
Download - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
choco download psframework --internalize --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade psframework -y --source="'INTERNAL REPO 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 psframework -y --source="'INTERNAL REPO URL'"
$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.12.346'
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.12.346'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller psframework
{
Name = "psframework"
Version = "1.12.346"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'psframework':
ensure => '1.12.346',
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.
This package was approved as a trusted package on 25 Sep 2024.
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.
$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
}
}
}
$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
}
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.
md5: 8EF4690FDF8E1C850B8CEE4CD83B88D6 | sha1: 33BB640F3CD7D5D96E459FDA0DD6A6F4CE48A788 | sha256: 47AF23157110BD24BF92AAE4EA91AD77B14E9D1EAC1A78C1AF65A99412627AAA | sha512: 5F521760D76A12E43277097351EA88E2BBBC803240A67F4DD4CE8711A8E7C9E324C2C1CF386AB35D25D56C0ADE6C80FB8B566EEE5EC6F8AFCDC303CDBE96408D
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.
- PSFramework.dll (d4e89f750ddd) - ## / 74
- psframework.1.12.346.nupkg (2b54c5ced541) - ## / 64
- psframework.zip (47af23157110) - ## / 68
- PSFramework.dll (999f5fa66125) - ## / 72
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.12.346 | 81 | Wednesday, September 25, 2024 | Approved | |
psframework (PowerShell Module) 1.12.345 | 77 | Tuesday, September 17, 2024 | Approved | |
psframework (PowerShell Module) 1.11.343 | 93 | Thursday, July 18, 2024 | Approved | |
psframework (PowerShell Module) 1.11.341 | 44 | Tuesday, July 9, 2024 | Approved | |
psframework (PowerShell Module) 1.10.318 | 213 | Saturday, November 11, 2023 | Approved | |
psframework (PowerShell Module) 1.9.310 | 149 | Wednesday, September 13, 2023 | Approved | |
psframework (PowerShell Module) 1.9.308 | 91 | Friday, September 8, 2023 | Approved | |
psframework (PowerShell Module) 1.8.291 | 350 | Tuesday, July 11, 2023 | Approved | |
psframework (PowerShell Module) 1.8.289 | 155 | Tuesday, June 13, 2023 | Approved | |
psframework (PowerShell Module) 1.7.270 | 383 | Monday, February 6, 2023 | Approved | |
psframework (PowerShell Module) 1.7.249 | 364 | Monday, October 17, 2022 | Approved | |
psframework (PowerShell Module) 1.7.247 | 82 | Thursday, October 13, 2022 | Approved | |
psframework (PowerShell Module) 1.7.246 | 92 | Friday, October 7, 2022 | Approved | |
psframework (PowerShell Module) 1.7.245 | 75 | Wednesday, October 5, 2022 | Approved | |
psframework (PowerShell Module) 1.7.244 | 126 | Tuesday, September 20, 2022 | Approved | |
psframework (PowerShell Module) 1.7.237 | 279 | Wednesday, June 15, 2022 | Approved | |
psframework (PowerShell Module) 1.7.235 | 118 | Saturday, June 4, 2022 | Approved | |
psframework (PowerShell Module) 1.7.227 | 134 | Friday, May 13, 2022 | Approved | |
psframework (PowerShell Module) 1.7.226 | 71 | Friday, May 13, 2022 | Approved | |
psframework (PowerShell Module) 1.6.214 | 624 | Thursday, November 11, 2021 | Approved | |
psframework (PowerShell Module) 1.6.205 | 622 | Wednesday, June 16, 2021 | Approved | |
psframework (PowerShell Module) 1.6.201 | 886 | Thursday, May 6, 2021 | Approved | |
psframework (PowerShell Module) 1.6.198 | 166 | Monday, April 12, 2021 | Approved | |
psframework (PowerShell Module) 1.6.197 | 115 | Thursday, April 8, 2021 | Approved | |
psframework (PowerShell Module) 1.6.195 | 110 | Thursday, April 1, 2021 | Approved | |
psframework (PowerShell Module) 1.6.193 | 95 | Thursday, April 1, 2021 | Approved | |
psframework (PowerShell Module) 1.6.181 | 156 | Wednesday, March 17, 2021 | Approved | |
psframework (PowerShell Module) 1.5.172 | 228 | Tuesday, February 9, 2021 | Approved | |
psframework (PowerShell Module) 1.5.171 | 125 | Sunday, February 7, 2021 | Approved | |
psframework (PowerShell Module) 1.5.170 | 172 | Tuesday, January 19, 2021 | Approved | |
psframework (PowerShell Module) 1.5.168 | 121 | Monday, January 18, 2021 | Approved | |
psframework (PowerShell Module) 1.4.150 | 488 | Friday, September 25, 2020 | Approved | |
psframework (PowerShell Module) 1.4.149 | 206 | Thursday, September 3, 2020 | Approved | |
psframework (PowerShell Module) 1.4.146 | 151 | Sunday, August 30, 2020 | Approved | |
psframework (PowerShell Module) 1.1.59 | 1232 | Saturday, November 2, 2019 | Approved | |
psframework (PowerShell Module) 1.0.35 | 290 | Monday, August 26, 2019 | Approved | |
psframework (PowerShell Module) 1.0.33 | 166 | Sunday, August 11, 2019 | Approved | |
psframework (PowerShell Module) 1.0.32 | 165 | Sunday, August 11, 2019 | Approved | |
psframework (PowerShell Module) 1.0.19 | 239 | Wednesday, May 22, 2019 | Approved | |
psframework (PowerShell Module) 1.0.13 | 197 | Tuesday, April 30, 2019 | Approved | |
psframework (PowerShell Module) 1.0.12 | 245 | Friday, April 5, 2019 | Approved |
Friedrich Weinmann 2017. All rights reserved.
This package has no dependencies.
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.