• EnglishEspañol日本語한국어Português
  • Inicia sesiónComenzar ahora

Te ofrecemos esta traducción automática para facilitar la lectura.

In the event of any inconsistency between the English version and the translated version, the English versionwill take priority. Please visit this page for more information.

Crea una propuesta

Cómo verificar la suma de comprobación de las descargas del agente .NET

Lea acerca de cómo confirmar la suma de verificación para el instalador del agente .NET de New Relic. Si necesita el hash para nuestras versiones actuales, descargue su hash SHA256 desde nuestro sitio de descargas.

Windows

En Windows, recomendamos utilizar CertUtil o Get-FileHash para calcular un hash de archivo.

CertUtil

Esta utilidad está disponible como parte de los Servicios de Certificate Server y se puede utilizar para calcular el hash de un archivo. Esta utilidad se puede ejecutar desde el símbolo del sistema o Powershell.

Para calcular el hash, ejecute:

CertUtil -hashfile YOUR_FILENAME SHA256

Si tiene éxito, recibirá esta respuesta:

SHA256 hash of YOUR_FILENAME:
5092fd52e40132a41ac06c320296cd9d63196d6de0fa6ce9b74fc4de1b3f9502
CertUtil: -hashfile command completed successfully.

Powershell: Get-FileHash

El cmdlet Get-FileHash se incluye con Powershell versión 5.1+ y se puede utilizar para calcular el hash de un archivo.

Para calcular el hash, ejecute:

Get-FileHash YOUR_FILENAME Algorithm SHA256 | Format-List

Si tiene éxito, recibirá esta respuesta:

Algorithm : SHA256
Hash : 5092FD52E40132A41AC06C320296CD9D63196D6DE0FA6CE9B74FC4DE1B3F9502
Path : C:\Path\To\YOUR_FILENAME

Linux

En Linux, recomendamos usar

sha256sum

para calcular un hash de archivo.

sha256sum

Para calcular el hash, ejecute:

sha256sum YOUR_FILENAME

Si tiene éxito, recibirá esta respuesta:

5092fd52e40132a41ac06c320296cd9d63196d6de0fa6ce9b74fc4de1b3f9502 YOUR_FILENAME
Copyright © 2024 New Relic Inc.

This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.