It's been running better, Thank you! There have still been problems though, such as the SSD still has been reaching 100%. When I was playing Roblox, and tried to use edge at the same time, I checked task manager as edge wasn't loading properly, and saw that the SSD usage was maxed out at 100%. When I was playing Roblox, I also noticed that whenever there was a map change in games, the game would freeze, this happened over multiple Roblox games too. Other than that, I was able to play Roblox quite well without any interruptions, and it was running well, except for little moments such as the ones mentionedHow have things been going with the PC.
This is an improvement for sure. The following is not meant to be mean or snarky but these "symptoms" are typical in PC's with lower hardware specs.I was able to play Roblox quite well without any interruptions, and it was running well, except for little moments such as the ones mentioned
You are right at the recommended settings and probably have to turn down some GPU settings. Always check your Nvidia driver settings in the global section. For instance, if you have settings in the game, the Nvidia driver settings may override the game settings. The Nvidia Driver settings should be set to "let the application decide".Does this mean that I won't be able to run games like watch dogs 2 / I'd have to play on low settings?
Network
You are connected to the internet
Connected through: TP-Link Wireless USB Adapter
Adapter Type: IEEE 802.11 wireless
DISM /Online /Cleanup-Image /RestoreHealth
sfc /scannow
# Set variables for source directories and destination
$sourceDirs = @("C:\Windows", "C:\Windows\MiniDump")
$desktopPath = [Environment]::GetFolderPath("Desktop")
$zipFile = "$desktopPath\DumpFiles_$(Get-Date -Format 'yyyyMMdd_HHmmss').zip"
$tempFolder = "$env:TEMP\DumpFiles_Temp"
# Create temporary folder if it doesn't exist
if (-not (Test-Path $tempFolder)) {
New-Item -Path $tempFolder -ItemType Directory -Force | Out-Null
}
# Array to store found dump files
$dumpFiles = @()
# Search for dump files in both directories
foreach ($dir in $sourceDirs) {
if (Test-Path $dir) {
# Look for .dmp and .mdmp files
$dumpFiles += Get-ChildItem -Path $dir -Recurse -Include "*.dmp","*.mdmp" -ErrorAction SilentlyContinue
}
}
# Check if any dump files were found
if ($dumpFiles.Count -eq 0) {
Write-Host "No dump files found in the specified locations." -ForegroundColor Yellow
Remove-Item $tempFolder -Force
exit
}
# Copy dump files to temporary folder
Write-Host "Found $($dumpFiles.Count) dump files. Copying to temporary folder..." -ForegroundColor Green
foreach ($file in $dumpFiles) {
Copy-Item -Path $file.FullName -Destination $tempFolder -Force
}
# Create zip file
Write-Host "Creating zip file at: $zipFile" -ForegroundColor Green
Compress-Archive -Path "$tempFolder\*" -DestinationPath $zipFile -Force
# Clean up temporary folder
Write-Host "Cleaning up temporary files..." -ForegroundColor Green
Remove-Item $tempFolder -Recurse -Force
# Verify zip file creation
if (Test-Path $zipFile) {
Write-Host "Dump files successfully compressed to: $zipFile" -ForegroundColor Green
Write-Host "Total size: $("{0:N2}" -f ((Get-Item $zipFile).Length/1MB)) MB" -ForegroundColor Green
} else {
Write-Host "Error: Zip file creation failed." -ForegroundColor Red
}
We use essential cookies to make this site work, and optional cookies to enhance your experience.