Ca ml'étonne énormément pour tes barettes, je n'ai jamais vu de DDR3 sous les 900MHz 
Pour avoir toutes les infos de ton PC, fréquences des barettes comprises:
Tu fais un C/C des lignes qui suivent dans un fichier .txt:
strComputer = "." ' Local computer
strMemory = ""
strUser = CreateObject("WScript.Network").UserName
i = 1
Const ForWriting = 2
Const OpenAsASCII = 0
Const CreateIfNotExist = True
strFilePath = "c:\Users\" & strUser & "\Desktop\Config.txt"
Set objFSO = CreateObject("Scripting.FileSystemObject")
Set objFile = objFSO.OpenTextFile(strFilePath, _
ForWriting, CreateIfNotExist, OpenAsASCII)
objFile.WriteLine "Analyse du " & Now()
set objWMIService = GetObject("winmgmts:\\" & strComputer & "\root\cimv2")
set colItems = objWMIService.ExecQuery("Select * from Win32_PhysicalMemory")
For Each objItem In colItems
if strMemory <> "" then strMemory = strMemory & vbcrlf
strMemory = strMemory & "Bank" & i & " : " & (objItem.Capacity / 1048576) & " Mb"
i = i + 1
Next
installedModules = i - 1
Set colItems = objWMIService.ExecQuery("Select * from Win32_PhysicalMemoryArray")
For Each objItem in colItems
totalSlots = objItem.MemoryDevices
Next
objFile.WriteLine "--------------------------RAM SLOTS--------------------------" & vbcrlf &_
"Total Slots : " & totalSlots & vbcrlf & _
"Slots libres: " & (totalSlots - installedModules) & vbcrlf & _
vbcrlf & "Barettes installées:" & vbcrlf & strMemory
On Error Resume Next
Set colItems = objWMIService.ExecQuery("Select * from Win32_Battery")
For Each objItem in colItems
objFile.WriteLine "-----------------------------BATTERY---------------------------" &_
"Availability: " & objItem.Availability & vbcrlf &_
"Etat de la batterie: " & objItem.BatteryStatus & vbcrlf &_
"Description: " & objItem.Description & vbcrlf &_
"Tension: " & objItem.DesignVoltage & vbcrlf &_
"ID: " & objItem.DeviceID & vbcrlf &_
"Nom: " & objItem.Name
Next
On Error Resume Next
Set colItems = objWMIService.ExecQuery("Select * from Win32_VideoController",,48)
objFile.WriteLine "-------------------------------GPU---------------------------" & vbcrlf &_
"Items collected: " & colItems & vbcrlf & _
upper(colItems)
For Each objItem in colItems
objFile.WriteLine "vRAM: " & FormatNumber(objItem.AdapterRAM /1024\1024, 0) & " MB" & vbcrlf &_
"Matériel (GPU): " & objItem.Caption
Next
Set colItem = objWMIService.ExecQuery("SELECT * FROM Win32_ComputerSystem")
For Each objItem In colItem
objFile.WriteLine "Nom de l'ordinateur: " & objItem.Name & vbcrlf &_
"Architecture: " & objItem.SystemType & vbcrlf &_
"Nombre de processeurs: " & objItem.NumberOfProcessors
Next
Set colProcessors = objWMIService.ExecQuery("Select * from Win32_Processor")
For Each objProcessor in colProcessors
objFile.WriteLine "------------------------------------CPU-------------------" & vbcrlf &_
"Constructeur: " & objProcessor.Manufacturer & vbcrlf &_
"Nom: " & objProcessor.Name & vbcrlf &_
"Description: " & objProcessor.Description & vbcrlf &_
"ID: " & objProcessor.ProcessorID & vbcrlf &_
"Cadence maximale: " & objProcessor.MaxClockSpeed
Next
On Error Resume Next
Set colItems = objWMIService.ExecQuery("Select * from Win32_PhysicalMemory")
For Each objItem in colItems
objFile.WriteLine "---------------------------------RAM----------------------------------" & vbcrlf &_
"Port: " & objItem.BankLabel & vbcrlf &_
"Capacité: " & objItem.Capacity & vbcrlf &_
"DW: " & objItem.DataWidth & vbcrlf &_
"Description: " & objItem.Description & vbcrlf &_
"Position du matériel: " & objItem.DeviceLocator & vbcrlf &_
"FF: " & objItem.FormFactor & vbcrlf &_
"Constructeur: " & objItem.Manufacturer & vbcrlf &_
"Type de mémoire: " & objItem.MemoryType & vbcrlf &_
"Nom: " & objItem.Name & vbcrlf &_
"Fréquence: " & objItem.Speed & vbcrlf &_
"Tag: " & objItem.Tag & vbcrlf &_
"Détail: " & objItem.TypeDetail
Next
Wscript.Echo "BONJOUR :D"
objFile.Close
Tu changes l'extension de ton fichier .txt en .vbs, tu doubles-cliques dessus, tu copies les résultats que tu vas obtenir dans le fichier Config.txt que tu obtiendras sur ton bureau puis tu postes ici 
+ As tu pensé à vérifier l'intégrité du cache du jeu sur Steam? 
+ Tes Drivers sont ils tous à jour?