Downloads:
131,970
Downloads of v 2016.1.0.20161004:
1,379
Last Update:
05 Oct 2016
Package Maintainer(s):
Software Author(s):
- "Perforce Software
- Inc."
Tags:
admin p4 helix perforce- Software Specific:
- Software Site
- Software License
- Software Docs
- Software Mailing List
- 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
2016.1.0.20161004 | Updated: 05 Oct 2016
- Software Specific:
- Software Site
- Software License
- Software Docs
- Software Mailing List
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
131,970
Downloads of v 2016.1.0.20161004:
1,379
Maintainer(s):
Software Author(s):
- "Perforce Software
- Inc."
P4: Helix Command-Line Client 2016.1.0.20161004
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=2016.1.0.20161004 --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="'2016.1.0.20161004'" [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="'2016.1.0.20161004'"
$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: '2016.1.0.20161004'
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 '2016.1.0.20161004'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller p4
{
Name = "p4"
Version = "2016.1.0.20161004"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'p4':
ensure => '2016.1.0.20161004',
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 by moderator gep13 on 14 Oct 2016.
The P4 command-line client provides access to all Perforce features and functions as an interface for scripting and automated operations.
$ErrorActionPreference = 'Stop';
$packageName = 'p4'
$registryUninstallerKeyName = '{440821BA-F8D2-4F90-ADD8-A237290061DA}'
$shouldUninstall = $true
$local_key = "HKCU:\Software\Microsoft\Windows\CurrentVersion\Uninstall\$registryUninstallerKeyName"
# local key 6432 probably never exists
$local_key6432 = "HKCU:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\$registryUninstallerKeyName"
$machine_key = "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\$registryUninstallerKeyName"
$machine_key6432 = "HKLM:\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\$registryUninstallerKeyName"
$file = @($local_key, $local_key6432, $machine_key, $machine_key6432) `
| ?{ Test-Path $_ } `
| Get-ItemProperty `
| Select-Object -ExpandProperty UninstallString
if ($file -eq $null -or $file -eq '') {
Write-Host "$packageName has already been uninstalled by other means."
$shouldUninstall = $false
}
$installerType = 'MSI'
# The MSI helper doesn't have a separate argument for specifying the key so silentArgs is used.
# Also note that the helper prepends /X so the key must be listed first
$silentArgs = "$registryUninstallerKeyName /Q"
$validExitCodes = @(0)
if ($shouldUninstall) {
Uninstall-ChocolateyPackage -PackageName $packageName -FileType $installerType -SilentArgs $silentArgs -validExitCodes $validExitCodes
}
Log in or click on link to see number of positives.
- p4.2016.1.0.20161004.nupkg (f1220cf980b4) - ## / 55
- helix-p4-x64.exe (b2765df12d80) - ## / 56
- helix-p4-x86.exe (e67ae5a809ee) - ## / 56
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 |
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.