PDA

View Full Version : Ajutor



Trololosha
05-09-2017, 11:58 PM
am reinstalat de kateva ori diferite versiuni de cs....si oricum imi apar peste 120 de module si nu iteleg din ce motiv...si ce ar insemna asta.....
<b>You have to register to ba able to see this link</b>

Tiger
06-09-2017, 08:49 AM
Am nevoie de fisiere pentru a le valida.

Porneste o consola cmd (vezi cum: <b>You have to register to ba able to see this link</b> ), dupa ce iti apare consola tasteaza:

%SystemRoot%\SysWOW64\WindowsPowerShell\v1.0\power shell.exe

Daca nu merge scrie doar "powershell" (probabil ca ai x86).

Dupa ce ti se executa comanda, introdu:

$workingPath = [IO.path]::combine([Environment]::GetFolderPath("Desktop"), "wcd-files")
[system.io.directory]::CreateDirectory($workingPath)
$processNameArray = "hl", "cstrike"
$process = Get-Process | Where { $processNameArray -contains $_.ProcessName } | Select-Object -first 1
$process | Select-Object -ExpandProperty Modules | ForEach-Object -Process {Copy-Item -Path $_.FileName -Destination $workingPath}
$processPath = [System.IO.Path]::GetDirectoryName(($process | Select -ExpandProperty MainModule | Select FileName).FileName)
$ext = ".dll", ".asi", ".mix", ".flt", ".exe", ".cmd", ".vbs", ".bat", ".m3d"
$dir = Get-ChildItem $processPath -recurse -force
$dir | Where { $ext -contains $_.Extension } | ForEach-Object {Copy-Item -Path $_.FullName -Destination $workingPath}
Write-Host "Done."

Acel script iti va crea pe desktop un director numit "wcd-files" ce va contine toate modulele incarcate de proces si toate fisierele gasite in directorul in care ruleaza procesul. Daca apare ceva cu rosu (eroare) incearca sa rulezi cmd ca administrator si sa reiei pasii. Procedeul de preluare module si fisiere poate lua ceva timp, asteapta pana scrie pe ecran "Done.".
Dupa aceea, arhiveaza directorul "wcd-files" si uploadeaza-l pe un site de file-sharing (gen: <b>You have to register to ba able to see this link</b> ) si pune link-ul aici. Apoi poti sterge directorul "wcd-files" si arhiva creata de pe desktop.

Trololosha
06-09-2017, 03:23 PM
mersi mult!!! <b>You have to register to ba able to see this link</b>