Downloads:
11,000
Downloads of v 7.33.85382.1314:
118
Last Update:
14 Oct 2024
Package Maintainer(s):
Software Author(s):
- PVS-Studio
Tags:
pvs-studio static-code-analysis c++ c# java sast misra cwe cert owasp- Software Specific:
- Software Site
- Software License
- Package Specific:
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
PVS-Studio
This is not the latest version of PVS-Studio available.
- 1
- 2
- 3
7.33.85382.1314 | Updated: 14 Oct 2024
- Software Specific:
- Software Site
- Software License
- Package Specific:
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
11,000
Downloads of v 7.33.85382.1314:
118
Maintainer(s):
Software Author(s):
- PVS-Studio
PVS-Studio 7.33.85382.1314
This is not the latest version of PVS-Studio available.
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by PVS-Studio. The inclusion of PVS-Studio trademark(s), if any, upon this webpage is solely to identify PVS-Studio goods or services and not for commercial purposes.
- 1
- 2
- 3
This Package Contains an Exempted Check
Not All Tests Have Passed
Deployment Method: Individual Install, Upgrade, & Uninstall
To install PVS-Studio, run the following command from the command line or from PowerShell:
To upgrade PVS-Studio, run the following command from the command line or from PowerShell:
To uninstall PVS-Studio, 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 pvs-studio --internalize --version=7.33.85382.1314 --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 pvs-studio -y --source="'INTERNAL REPO URL'" --version="'7.33.85382.1314'" [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 pvs-studio -y --source="'INTERNAL REPO URL'" --version="'7.33.85382.1314'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install pvs-studio
win_chocolatey:
name: pvs-studio
version: '7.33.85382.1314'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'pvs-studio' do
action :install
source 'INTERNAL REPO URL'
version '7.33.85382.1314'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller pvs-studio
{
Name = "pvs-studio"
Version = "7.33.85382.1314"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'pvs-studio':
ensure => '7.33.85382.1314',
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 14 Oct 2024.
PVS-Studio is a tool for detecting bugs and security weaknesses in the source code of programs, written in C, C++, C# and Java. It works under 64-bit systems in Windows, Linux and macOS environments, and can analyze source code intended for 32-bit, 64-bit and embedded ARM platforms.
Check this page to get more info.
This software requires an activation key. You can get trial here.
Default installation contains a core command-line analyzer engine (C, C++, C#). The 'Core' component is a mandatory one, it contains a core command-line analyzer engine, which is required for all of the IDE extension plug-ins to operate. You can also install the following additional components: Standalone, MSVS2010, MSVS2012, MSVS2013, MSVS2015, MSVS2017, MSVS2019, MSVS2022, IDEA, JavaCore, Rider, CLion.
Brief description of components:
- components with 'MSVS' prefix in their name are corresponding to Microsoft Visual Studio plug-in extensions;
- the Standalone component installs compiler monitoring system, which allows to analyze any kind of C, C++ project as long as such project uses one of the supported compilers;
- the 'IDEA' component corresponds to the PVS-Studio plugin for the IntelliJ IDEA development environment;
- the 'JavaCore' component corresponds to the analyzer core for Java;
- the 'Rider' component corresponds to the PVS-Studio plugin for the Rider development environment.
$ErrorActionPreference = 'Stop';
$packageArgs = @{
packageName = $env:ChocolateyPackageName
softwareName = 'PVS-Studio*'
fileType = 'EXE'
validExitCodes= @(0, 3010, 1605, 1614, 1641)
silentArgs = '/verysilent /suppressmsgboxes /nocloseapplications /norestart'
}
$uninstalled = $false
[array]$key = Get-UninstallRegistryKey -SoftwareName $packageArgs['softwareName']
if ($key.Count -eq 1) {
$key | % {
$packageArgs['file'] = "$($_.UninstallString)"
if ($packageArgs['fileType'] -eq 'MSI') {
$packageArgs['silentArgs'] = "$($_.PSChildName) $($packageArgs['silentArgs'])"
$packageArgs['file'] = ''
} else {
}
Uninstall-ChocolateyPackage @packageArgs
}
} elseif ($key.Count -eq 0) {
Write-Warning "$packageName has already been uninstalled by other means."
} elseif ($key.Count -gt 1) {
Write-Warning "$($key.Count) matches found!"
Write-Warning "To prevent accidental data loss, no programs will be uninstalled."
Write-Warning "Please alert package maintainer the following keys were matched:"
$key | % {Write-Warning "- $($_.DisplayName)"}
}
From: http://files.pvs-studio.com/License.rtf
LICENSE
PVS-STUDIO LLC SOFTWARE LICENSE AGREEMENT
The present License agreement is a legal agreement between you, end user (either an individual or a company, hereinafter referred to as Licensee) licensing the PVS-Studio software (hereinafter referred to as PVS-Studio), and PVS-Studio LLC - the developer and the exclusive owner of this software (hereinafter referred to as Licensor) for the accompanying PVS-Studio identified below.
The PVS-Studio may include various applications, utilities and components and may be provided to you on multiple media or in multiple copies. Nonetheless, the PVS-Studio is designed and provided to you as a single product. You are not required to use all component parts of the PVS-Studio, but you may not unbundle the component parts of the PVS-Studio for use on different computers or by different users. You may not unbundle or repackage the PVS-Studio for distribution, transfer or resale.
In case a user purchases the program PVS-Studio LLC may place information about the user's company on his site in "Customers" section. But if the user doesn't want this information to be available on the site because of some reasons, he or she should tell this to PVS-Studio LLC on the program via e-mail.
Licensee may not modify, reverse engineer, decompile, disassemble, distribute, sub-license, sell, rent, lease, give or in any way transfer the Software, by any means or in any medium, including telecommunications. Licensee will use its best efforts and take all reasonable steps to protect the Software from unauthorized use, copying or dissemination, and will retain all proprietary notices intact.
Notwithstanding contrary, Licensees Affiliates may access and use the PVS-Studio. "Licensees Affiliates" shall mean an individual or entity that (a) directly or indirectly controls, or is controlled by, or is under common control with a Licensee; and/or (b) owns or controls fifty percent (50.0%) or more of the outstanding voting securities of a Licensee.
You have the right to use PVS-Studio for free by adding special comments to the source code of your project. To find out which comments should be added and the way to automate this process, read the article: "How to use PVS-Studio for Free".
This mode is not intended for PVS-Studio evaluation. Trial license obtained through PVS-Studio web-site can be used to evaluate PVS-Studio.
You should insert these comments when you have already decided to use the analyzer on a regular basis. You can remove these comments later, but it is possible to remove them only once.
It is not allowed to add and remove the comments in the source code repeatedly. It is also not allowed to append comments multiple times and subsequently roll back the content of comments in source files to initial state using version control system. Such actions are intended to evade the terms that the source code should contain comments and are a violation of the analyzer usage agreement.
PVS-Studio license includes
right to use the product during 1 year;
the duration of product use may be specified in the formal quote provided by the Licensor;
a team of no more than 9 developers may use the product;
if customer has an Enterprise License then the product may be used by the number of developers (including developers of Licensees Affiliates) specified by the License name;
get new versions (including major-versions) for the duration of product use;
get support by e-mail for the duration of product use;
Renewing PVS-Studio license
The license is renewed for one year. The price of renewing the license is 80% of the base price at the moment of renewal. The renewal discount can be applied by a user before the expiration of the current license or during a period of 1 month after the current license expiration date. After this period the license can be renewed for the full base price.
Duration of license
The Agreement is effective until terminated. Licensee may terminate this Agreement at any time and destroy the license info. The validity term of the Agreement is determined by the terms and conditions and is clearly indicated in the License info. The Agreement comes into force when you receive the license info. PVS-Studio LLC may terminate the Agreement immediately without notice if you fail to comply with any provision of the Agreement.
Automatic Update Program
The PVS-Studio software product performs automatic checks for the availability of updated version of itself by sending an update request to the remote server. An update request is fully anonymous. It is tied up to your personal account through a unique identifier and doesn’t contain any private data such as e-mail address, name, gender, age, home or work address, telephone number, etc.
Participation in the Automatic Update Program is voluntary. You can choose to opt out from Automatic Update Program by contacting PVS-Studio customer support.
md5: BD3CC7864A6E78E90D43E5BFB3312F38 | sha1: 359AF7E42230A4461D7B7FABE9EBC4E081D4938C | sha256: F65AA6D81A36EC0CA0AE50A0B9F0E2BC57D7EC16E7D5FF56227FDA0DB6234EA2 | sha512: 313ED5AF1A04AFD5C131426EAFEB48F005772DE5C6977B6FB6DE8DAE087AD803EBAC9225918CC20503F5683C9B2E4F16DD2BF077BD633FCB75AC8735E7446665
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.
Installer can be verified like this:
1. The installer have been downloaded from their official download link listed on:
Only for 64-Bit: http://files.pvs-studio.com/PVS-Studio_setup.exe
2. You can use one of the following methods to obtain the checksum SHA256
- Use powershell function 'Get-Filehash'
- Use chocolatey utility 'checksum.exe'
File 'LICENSE.txt' is obtained from http://files.pvs-studio.com/License.rtf
Log in or click on link to see number of positives.
- pvs-studio.7.33.85382.1314.nupkg (c7bd6d50e42a) - ## / 59
- PVS-Studio_Setup.exe (f65aa6d81a36) - ## / 64
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 |
---|---|---|---|---|
PVS-Studio 7.34.87804.1491 | 8 | Friday, December 20, 2024 | Approved | |
PVS-Studio 7.34.87632.1471 | 25 | Monday, December 16, 2024 | Approved | |
PVS-Studio 7.34.87460.1457 | 29 | Wednesday, December 11, 2024 | Approved | |
PVS-Studio 7.33.85382.1314 | 118 | Monday, October 14, 2024 | Approved | |
PVS-Studio 7.33.85330.1309 | 18 | Friday, October 11, 2024 | Approved | |
PVS-Studio 7.33.85174.1294 | 28 | Tuesday, October 8, 2024 | Approved | |
PVS-Studio 7.32.83291.1127 | 118 | Tuesday, August 6, 2024 | Approved | |
PVS-Studio 7.31.81895.1033 | 422 | Tuesday, June 11, 2024 | Approved | |
PVS-Studio 7.30.81740.1020 | 75 | Wednesday, June 5, 2024 | Approved | |
PVS-Studio 7.30.81185.980 | 626 | Tuesday, May 14, 2024 | Approved | |
PVS-Studio 7.30.81096.971 | 81 | Wednesday, May 8, 2024 | Approved | |
PVS-Studio 7.30.80803.925 | 140 | Thursday, April 18, 2024 | Approved | |
PVS-Studio 7.30.80678.911 | 188 | Friday, April 12, 2024 | Approved | |
PVS-Studio 7.29.79138.771 | 508 | Wednesday, February 7, 2024 | Approved | |
PVS-Studio 7.28.78353.681 | 241 | Monday, December 25, 2023 | Approved | |
PVS-Studio 7.28.78193.659 | 94 | Monday, December 18, 2023 | Approved | |
PVS-Studio 7.28.78017.643 | 76 | Tuesday, December 12, 2023 | Approved | |
PVS-Studio 7.28.77071.626 | 85 | Tuesday, December 5, 2023 | Approved | |
PVS-Studio 7.27.75620.507 | 229 | Tuesday, October 10, 2023 | Approved | |
PVS-Studio 7.26.74187.388 | 125 | Wednesday, August 23, 2023 | Approved | |
PVS-Studio 7.26.73915.362 | 75 | Tuesday, August 8, 2023 | Approved | |
PVS-Studio 7.25.72091.245 | 151 | Wednesday, June 7, 2023 | Approved | |
PVS-Studio 7.25.72051.243 | 73 | Tuesday, June 6, 2023 | Approved | |
PVS-Studio 7.24.70333.195 | 478 | Wednesday, April 5, 2023 | Approved | |
PVS-Studio 7.23.69221.124 | 128 | Thursday, March 2, 2023 | Approved | |
PVS-Studio 7.23.68542.86 | 119 | Thursday, February 9, 2023 | Approved | |
PVS-Studio 7.23.68432.62 | 81 | Wednesday, February 8, 2023 | Approved | |
PVS-Studio 7.22.66578.3926 | 172 | Tuesday, December 6, 2022 | Approved | |
PVS-Studio 7.21.64848.3817 | 164 | Tuesday, October 11, 2022 | Approved | |
PVS-Studio 7.20.63487.3739 | 143 | Monday, August 22, 2022 | Approved | |
PVS-Studio 7.20.63382.3731 | 335 | Tuesday, August 16, 2022 | Approved | |
PVS-Studio 7.20.63142.3717 | 90 | Tuesday, August 9, 2022 | Approved | |
PVS-Studio 7.19.61166.3606 | 169 | Thursday, June 9, 2022 | Approved | |
PVS-Studio 7.18.59865.3530 | 159 | Monday, April 25, 2022 | Approved | |
PVS-Studio 7.18.59208.3491 | 124 | Thursday, April 7, 2022 | Approved | |
PVS-Studio 7.17.56981.3396 | 355 | Wednesday, February 9, 2022 | Approved | |
PVS-Studio 7.16.55368.3308 | 168 | Wednesday, December 15, 2021 | Approved | |
PVS-Studio 7.16.55368.3293 | 134 | Wednesday, December 8, 2021 | Approved | |
PVS-Studio 7.15.53844.3235 | 156 | Thursday, November 11, 2021 | Approved | |
PVS-Studio 7.15.53844.3230 | 109 | Monday, November 8, 2021 | Approved | |
PVS-Studio 7.15.53844.3214 | 143 | Friday, October 29, 2021 | Approved | |
PVS-Studio 7.15.53142.3184 | 151 | Thursday, October 7, 2021 | Approved | |
PVS-Studio 7.14.50440.3082 | 209 | Wednesday, August 11, 2021 | Approved | |
PVS-Studio 7.14.50353.3075 | 110 | Monday, August 9, 2021 | Approved | |
PVS-Studio 7.13.48133.2960 | 217 | Monday, May 31, 2021 | Approved | |
PVS-Studio 7.12.46137.2843 | 189 | Thursday, March 11, 2021 | Approved | |
PVS-Studio 7.11.44204.2742 | 164 | Thursday, January 14, 2021 | Approved | |
PVS-Studio 7.11.44142.2691 | 154 | Thursday, December 17, 2020 | Approved | |
PVS-Studio 7.10.43754.2662 | 130 | Thursday, December 3, 2020 | Approved | |
PVS-Studio 7.10.43654.2653 | 143 | Friday, November 27, 2020 | Approved | |
PVS-Studio 7.10.43223.2624 | 163 | Tuesday, November 10, 2020 | Approved | |
PVS-Studio 7.10.43167.2618 | 142 | Thursday, November 5, 2020 | Approved | |
PVS-Studio 7.09.42245.2576 | 211 | Monday, October 5, 2020 | Approved | |
PVS-Studio 7.09.41435.2517 | 156 | Thursday, September 3, 2020 | Approved | |
PVS-Studio 7.09.41189.2508 | 155 | Thursday, August 27, 2020 | Approved | |
PVS-Studio 7.08.39765.2421 | 205 | Thursday, July 2, 2020 | Approved | |
PVS-Studio 7.08.39499.2403 | 151 | Tuesday, June 23, 2020 | Approved | |
PVS-Studio 7.08.39365.2396 | 187 | Thursday, June 18, 2020 | Approved | |
PVS-Studio 7.07.38234.2308 | 627 | Monday, April 27, 2020 | Approved | |
PVS-Studio 7.07.37949.2290 | 190 | Thursday, April 16, 2020 | Approved | |
PVS-Studio 7.06.37100.2212 | 190 | Thursday, February 27, 2020 | Approved | |
PVS-Studio 7.05.35617.2075 | 341 | Wednesday, December 11, 2019 | Approved |
-
- dotnetfx (≥ 4.7.2.20180712)
Ground Rules:
- This discussion is only about PVS-Studio and the PVS-Studio 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 PVS-Studio, 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.