Downloads:
131,970
Downloads of v 2019.2.20200208:
2,269
Last Update:
08 Feb 2020
Package Maintainer(s):
Software Author(s):
- Perforce Software Inc.
Tags:
p4 perforce helix command line client admin- Software Specific:
- Software Site
- Software License
- Software Docs
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
P4: Helix Command-Line Client
This is not the latest version of P4: Helix Command-Line Client available.
- 1
- 2
- 3
2019.2.20200208 | Updated: 08 Feb 2020
- Software Specific:
- Software Site
- Software License
- Software Docs
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
131,970
Downloads of v 2019.2.20200208:
2,269
Maintainer(s):
Software Author(s):
- Perforce Software Inc.
P4: Helix Command-Line Client 2019.2.20200208
This is not the latest version of P4: Helix Command-Line Client available.
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Perforce Software Inc. The inclusion of Perforce Software Inc. trademark(s), if any, upon this webpage is solely to identify Perforce Software Inc. 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 P4: Helix Command-Line Client, run the following command from the command line or from PowerShell:
To upgrade P4: Helix Command-Line Client, run the following command from the command line or from PowerShell:
To uninstall P4: Helix Command-Line Client, 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 p4 --internalize --version=2019.2.20200208 --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 p4 -y --source="'INTERNAL REPO URL'" --version="'2019.2.20200208'" [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 p4 -y --source="'INTERNAL REPO URL'" --version="'2019.2.20200208'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install p4
win_chocolatey:
name: p4
version: '2019.2.20200208'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'p4' do
action :install
source 'INTERNAL REPO URL'
version '2019.2.20200208'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller p4
{
Name = "p4"
Version = "2019.2.20200208"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'p4':
ensure => '2019.2.20200208',
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.
Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...
This package was approved as a trusted package on 08 Feb 2020.
The P4 command-line client provides access to all Perforce features and functions as an interface for scripting and automated operations.
Customize automation for your development and administrative processes by embedding commands using Perl, Python, or any other scripting language. You can tailor operations for automating Continuous Integration/Continuous Development (CI/CD) to create your ideal workflow.
The Perforce P4 Command-Line Client uses the same commands and syntax on a wide variety of platforms. It automatically translates line ending conventions between operating systems.
$ErrorActionPreference = 'Stop';
$packageName = 'p4'
$softwareName = 'Helix P4 Command-Line Client*'
$installerType = 'MSI'
$silentArgs = '/qn /norestart'
$validExitCodes = @(0, 3010, 1605, 1614, 1641)
if ($installerType -ne 'MSI') {
$validExitCodes = @(0)
}
$uninstalled = $false
[array]$key = Get-UninstallRegistryKey -SoftwareName $softwareName
if ($key.Count -eq 1) {
$key | % {
$file = "$($_.UninstallString)"
if ($installerType -eq 'MSI') {
$silentArgs = "$($_.PSChildName) $silentArgs"
$file = ''
}
Uninstall-ChocolateyPackage -PackageName $packageName `
-FileType $installerType `
-SilentArgs "$silentArgs" `
-ValidExitCodes $validExitCodes `
-File "$file"
}
} 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"}
}
Log in or click on link to see number of positives.
- p4.2019.2.20200208.nupkg (e60675ca4b18) - ## / 62
- helix-p4-x64.exe (a722e5a76b2a) - ## / 73
- helix-p4-x86.exe (4de5006333e4) - ## / 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 |
---|---|---|---|---|
P4: Helix Command-Line Client 2024.1.2655224.20241019 | 604 | Sunday, October 20, 2024 | Approved | |
P4: Helix Command-Line Client 2024.1.2655224 | 1282 | Sunday, September 29, 2024 | Approved | |
P4: Helix Command-Line Client 2024.1.2625008 | 2215 | Monday, July 22, 2024 | Approved | |
P4: Helix Command-Line Client 2024.1.2596294 | 1354 | Friday, May 24, 2024 | Approved | |
P4: Helix Command-Line Client 2023.2.2578891 | 962 | Tuesday, April 9, 2024 | Approved | |
P4: Helix Command-Line Client 2023.2.2563409 | 970 | Monday, March 11, 2024 | Approved | |
P4: Helix Command-Line Client 2023.2.0 | 757 | Saturday, January 27, 2024 | Approved | |
P4: Helix Command-Line Client 2022.2 | 6470 | Thursday, January 19, 2023 | Approved | |
P4: Helix Command-Line Client 2022.1 | 3731 | Friday, May 20, 2022 | Approved | |
P4: Helix Command-Line Client 2021.2 | 7623 | Friday, November 12, 2021 | Approved | |
P4: Helix Command-Line Client 2021.1 | 1345 | Friday, May 14, 2021 | Approved | |
P4: Helix Command-Line Client 2020.2 | 1592 | Friday, November 20, 2020 | Approved | |
P4: Helix Command-Line Client 2020.1 | 13634 | Thursday, April 30, 2020 | Approved | |
P4: Helix Command-Line Client 2019.2.20200208 | 2269 | Saturday, February 8, 2020 | Approved | |
P4: Helix Command-Line Client 2019.2 | 1596 | Thursday, November 21, 2019 | Approved | |
P4: Helix Command-Line Client 2019.1.20191118 | 218 | Tuesday, November 19, 2019 | Approved | |
P4: Helix Command-Line Client 2019.1 | 40775 | Friday, May 3, 2019 | Approved | |
P4: Helix Command-Line Client 2018.2 | 2278 | Wednesday, November 7, 2018 | Approved | |
P4: Helix Command-Line Client 2018.1 | 5492 | Tuesday, April 10, 2018 | Approved | |
P4: Helix Command-Line Client 2017.2 | 6953 | Wednesday, October 25, 2017 | Approved | |
P4: Helix Command-Line Client 2017.1 | 13567 | Saturday, June 17, 2017 | Approved | |
P4: Helix Command-Line Client 2016.2 | 7395 | Thursday, January 5, 2017 | Approved | |
P4: Helix Command-Line Client 2016.1.0.20161108 | 922 | Tuesday, November 8, 2016 | Approved | |
P4: Helix Command-Line Client 2016.1.0.20161004 | 1379 | Wednesday, October 5, 2016 | Approved | |
P4: Helix Command-Line Client 2016.1 | 1732 | Wednesday, August 31, 2016 | Approved | |
P4: Perforce Command-Line Client 2015.2 | 1286 | Wednesday, January 20, 2016 | Approved | |
P4: Perforce Server 2015.1 | 704 | Wednesday, April 1, 2015 | Approved | |
P4: Perforce Client and Server 2014.2 | 751 | Saturday, October 18, 2014 | Approved | |
P4: Perforce Client and Server 2014.1 | 578 | Wednesday, May 21, 2014 | Approved | |
P4: Perforce Client and Server 2013.3 | 547 | Saturday, January 25, 2014 | Approved | |
P4: Perforce Client and Server 2013.1 | 481 | Wednesday, May 29, 2013 | Approved | |
P4: Perforce Client and Server 2012.2 | 508 | Sunday, February 17, 2013 | Approved |
Copyright © 2019 Perforce Software, Inc.
This package has no dependencies.
Ground Rules:
- This discussion is only about P4: Helix Command-Line Client and the P4: Helix Command-Line Client 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 P4: Helix Command-Line Client, 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.