Bonjour à tous, j'ai ma mémoire ram à 100 % constant et le disque aussi alors que aucun programme n'est ouvert.
Au niveau du processeur je ne vois rien de particulier.
Merci de votre aide et conseil.
#CE SCRIPT A ETE SPECIFIQUEMENT ECRIT POUR CET UTILISATEUR.
#MERCI DE NE PAS L'UTILISER SANS LE CONSEIL D'UN EXPERT.
$ErrorActionPreference="SilentlyContinue"
Stop-Transcript | out-null
$ErrorActionPreference = "Continue"
Start-Transcript -path "$env:USERPROFILE\Desktop\diag.txt" -append
$fieldfreeram = @{label = "Available Physical Memory (MB)"; Expression = {[math]::round(($_.FreePhysicalMemory / 1kb), 2)}};
$fieldtotalram = @{label = "Total Physical Memory (MB)"; Expression = {[math]::round(($_.TotalVisibleMemorySize / 1kb), 2)}};
$fieldfreeVram = @{label = "Available Virtual Memory (MB)"; Expression = {[math]::round(($_.FreeVirtualMemory / 1kb), 2)}};
$fieldtotalVram = @{label = "Total Virtual Memory (MB)"; Expression = {[math]::round(($_.TotalVirtualMemorySize /1kb), 2)}};
$memtotal = Get-WmiObject -Class win32_OperatingSystem -ComputerName localhost;
$memtotal | Format-List $fieldfreeram,$fieldtotalram,$fieldfreeVram,$fieldtotalVram;
echo "=================== Process List ======================"
$fieldproname = @{label = "Process"; Expression = {$_.name}; Align = "Left"};
$fieldramusage = @{label = "RAM Usage (MB)"; Expression = {[math]::round(($_.ws / 1mb), 2)}; Align = "Right"};
$prolist = get-process;
$prolist | Sort-Object -Descending WS | Format-Table $fieldproname,$fieldramusage -AutoSize;
Stop-Transcript
Utilisateurs parcourant ce forum: Aucun utilisateur enregistré et 9 invités
.: Nous contacter :: Flux RSS :: Données personnelles :. |