Como verificar o número de série da RAM e data de construção. windows 7

1

Suspeito que a RAM tenha sido atualizada (não tenho certeza se a pessoa adicionou nova ou usada). Ou seja, eu quero verificar o número de série da RAM com data de construção.

Plataforma -Windows 7

Eu tentei isso com ' wmic memorychip get serialnumber' mas mostra em branco .

-SaídadeGet-WmiObject-Classwin32_physicalmemory|fl*

WindowsPowerShellCopyright(C)2009MicrosoftCorporation.Allrightsreserved.WARNING:FileC:\Windows\system32\WindowsPowerShell\v1.0\Modules\PSDiagnostics\PSDiagnostics.psm1cannotbeloadedbecausetheexecutionofscriptsisdisabledonthissystem.Pleasesee"get-help about_signing" for more details.
PS C:\Windows\system32> Get-WmiObject -Class win32_physicalmemory | fl *


__GENUS              : 2
__CLASS              : Win32_PhysicalMemory
__SUPERCLASS         : CIM_PhysicalMemory
__DYNASTY            : CIM_ManagedSystemElement
__RELPATH            : Win32_PhysicalMemory.Tag="Physical Memory 0"
__PROPERTY_COUNT     : 30
__DERIVATION         : {CIM_PhysicalMemory, CIM_Chip, CIM_PhysicalComponent, CIM_PhysicalElement...}
__SERVER             : PRAKASH-VAIO
__NAMESPACE          : root\cimv2
__PATH               : \PRAKASH-VAIO\root\cimv2:Win32_PhysicalMemory.Tag="Physical Memory 0"
BankLabel            : Bank 0
Capacity             : 4294967296
Caption              : Physical Memory
CreationClassName    : Win32_PhysicalMemory
DataWidth            : 64
Description          : Physical Memory
DeviceLocator        : SODIMM1
FormFactor           : 12
HotSwappable         :
InstallDate          :
InterleaveDataDepth  :
InterleavePosition   :
Manufacturer         :
MemoryType           : 0
Model                :
Name                 : Physical Memory
OtherIdentifyingInfo :
PartNumber           :
PositionInRow        :
PoweredOn            :
Removable            :
Replaceable          :
SerialNumber         :
SKU                  :
Speed                :
Status               :
Tag                  : Physical Memory 0
TotalWidth           : 64
TypeDetail           : 4
Version              :
Scope                : System.Management.ManagementScope
Path                 : \PRAKASH-VAIO\root\cimv2:Win32_PhysicalMemory.Tag="Physical Memory 0"
Options              : System.Management.ObjectGetOptions
ClassPath            : \PRAKASH-VAIO\root\cimv2:Win32_PhysicalMemory
Properties           : {BankLabel, Capacity, Caption, CreationClassName...}
SystemProperties     : {__GENUS, __CLASS, __SUPERCLASS, __DYNASTY...}
Qualifiers           : {dynamic, Locale, provider, UUID}
Site                 :
Container            :

__GENUS              : 2
__CLASS              : Win32_PhysicalMemory
__SUPERCLASS         : CIM_PhysicalMemory
__DYNASTY            : CIM_ManagedSystemElement
__RELPATH            : Win32_PhysicalMemory.Tag="Physical Memory 1"
__PROPERTY_COUNT     : 30
__DERIVATION         : {CIM_PhysicalMemory, CIM_Chip, CIM_PhysicalComponent, CIM_PhysicalElement...}
__SERVER             : PRAKASH-VAIO
__NAMESPACE          : root\cimv2
__PATH               : \PRAKASH-VAIO\root\cimv2:Win32_PhysicalMemory.Tag="Physical Memory 1"
BankLabel            : Bank 1
Capacity             : 2147483648
Caption              : Physical Memory
CreationClassName    : Win32_PhysicalMemory
DataWidth            : 64
Description          : Physical Memory
DeviceLocator        : SODIMM2
FormFactor           : 12
HotSwappable         :
InstallDate          :
InterleaveDataDepth  :
InterleavePosition   :
Manufacturer         :
MemoryType           : 0
Model                :
Name                 : Physical Memory
OtherIdentifyingInfo :
PartNumber           :
PositionInRow        :
PoweredOn            :
Removable            :
Replaceable          :
SerialNumber         :
SKU                  :
Speed                :
Status               :
Tag                  : Physical Memory 1
TotalWidth           : 64
TypeDetail           : 4
Version              :
Scope                : System.Management.ManagementScope
Path                 : \PRAKASH-VAIO\root\cimv2:Win32_PhysicalMemory.Tag="Physical Memory 1"
Options              : System.Management.ObjectGetOptions
ClassPath            : \PRAKASH-VAIO\root\cimv2:Win32_PhysicalMemory
Properties           : {BankLabel, Capacity, Caption, CreationClassName...}
SystemProperties     : {__GENUS, __CLASS, __SUPERCLASS, __DYNASTY...}
Qualifiers           : {dynamic, Locale, provider, UUID}
Site                 :
Container            :



PS C:\Windows\system32>
    
por Prakash 24.02.2016 / 13:25

2 respostas

2

A CPUZ da CPUID faz isso, veja a guia SPD: link
link

editar:
Eu estava curioso agora e pesquisei muito no Google para ver o que parece ser o limite de escrever alguns scripts de inventário de hardware, incluindo powershell e .NET / C #.
Obviamente, é "seguro" ler as informações do SMBIOS que incluem quase tudo do DRAM SPD exceto a data de fabricação. CPUZ parece hackear o SMBUS / I2C (?) Estando muito próximo do hardware para obter a data, o que não é suportado pelo MS para o meu entendimento.

Para todos com alguma experiência de desenvolvedor, recomendo verificar esse projeto interessante com a fonte completa. Além de muitos sensores, ele também lê os SMBIOS como a classe win32_physicalmemory. Apesar do script powershell, ele precisa de direitos de usuário elevados. link

    
por 24.02.2016 / 13:31
2

Use o Powershell para consultar os números de série da sua memória RAM, infelizmente a data de criação não está disponível com o PowerShell.

Dê uma olhada nisso:

Get-WmiObject -Class win32_physicalmemory | select manufacturer, serialnumber

manufacturer     serialnumber
------------     ------------
Kingston         97183***
Kingston         97187***
Kingston         9F181***
Kingston         98189***

Use Get-WmiObject -Class win32_physicalmemory | fl * para verificar as várias propriedades que a classe win32_physicalmemory retorna. Talvez você possa encontrar outras coisas úteis.

Para verificar os números de série da sua memória RAM com o CPU-Z, faça o download de aqui . Instale e inicie o aplicativo.

Por fim, clique na guia SPD para visualizar o número de série, a data de criação, o fabricante, etc. Com o menu suspenso de slots, você pode selecionar os módulos presentes em sua máquina.

Veja um exemplo:

    
por 24.02.2016 / 13:53