From 055ed246a24a0790135749ce3ce3cfccd1448221 Mon Sep 17 00:00:00 2001 From: PrincessPi3 Date: Sat, 13 Jun 2026 02:18:32 -0600 Subject: [PATCH] rc --- README.md | 2 +- Windows-Scripts/windows-repair.ps1 | 52 ++++++++++++++++-------------- 2 files changed, 29 insertions(+), 25 deletions(-) diff --git a/README.md b/README.md index 8c99c32..18d8755 100644 --- a/README.md +++ b/README.md @@ -98,7 +98,7 @@ script=/tmp/install_script.sh && curl -s https://git.thecoven.info/PrincessPi/ge ### Clean up Windows! ```powershell -iwr -UseBasicParsing -Uri "https://git.thecoven.info/PrincessPi/general-scripts-and-system-ssssssetup/raw/branch/main/Windows-Scripts/windows-repair.ps1?nocache=$(Get-Random)" -OutFile "$env:TEMP\windows-repair-temp.ps1"; powershell -NoProfile -ExecutionPolicy Bypass -File "$env:TEMP\windows-repair-temp.ps1" +iwr https://git.thecoven.info/PrincessPi/general-scripts-and-system-ssssssetup/raw/branch/main/Windows-Scripts/windows-repair.ps1?nocache=$(Get-Random) -OutFile $env:TEMP\windows-repair-temp.ps1; powershell -NoProfile -ep Bypass -File $env:TEMP\windows-repair-temp.ps1 ``` todo: diff --git a/Windows-Scripts/windows-repair.ps1 b/Windows-Scripts/windows-repair.ps1 index 112f4e0..e13bd44 100644 --- a/Windows-Scripts/windows-repair.ps1 +++ b/Windows-Scripts/windows-repair.ps1 @@ -5,7 +5,7 @@ # alt+y # Run: # In admin powershell Terminal: -# iwr -UseBasicParsing -Uri https://git.thecoven.info/PrincessPi/general-scripts-and-system-ssssssetup/raw/branch/main/Windows-Scripts/windows-repair.ps1?nocache=$(Get-Random) > $env:TEMP\windows-repair-temp.ps1"; powershell -NoProfile -ep Bypass -File $env:TEMP\windows-repair-temp.ps1 +# iwr https://git.thecoven.info/PrincessPi/general-scripts-and-system-ssssssetup/raw/branch/main/Windows-Scripts/windows-repair.ps1?nocache=$(Get-Random) -OutFile $env:TEMP\windows-repair-temp.ps1; powershell -NoProfile -ep Bypass -File $env:TEMP\windows-repair-temp.ps1 # check if hasadmin rights, if notm run script in new terminal, clopsing old ## if not, carry on @@ -75,64 +75,68 @@ if (-not ([Security.Principal.WindowsIdentity]::GetCurrent().Groups -contains 'S Write-Host "`nFIXING WINDOWS FULL PRINCESS PI STYLE (THIS WILL TAKE MANY HOURS AND REBOOT MORE THAN ONCE, SLOWLY)`n" -ForegroundColor Magenta - Write-Host "ABORTING ANY SCHEDULED SHUTDOWN 1/19" + Write-Host "ABORTING ANY SCHEDULED SHUTDOWN 1/18" shutdown.exe /a > $null 2> $null # cmd abort scheduled shutdowns - Write-Host "GENERATING AND DISPLAYING COMPREHENSIVE STABILITY REPORT 2/19" + $LogDir = "$env:USERPROFILE\Downloads\Repair-Log-$((Get-Date).ToString("yyyy-MM-dd-HHmm"))" + Write-Host "Creating Log Dir at $LogDir 2/18" + New-Item -Path "$LogDir" -ItemType Directory + + Write-Host "GENERATING AND DISPLAYING COMPREHENSIVE STABILITY REPORT 3/18" Start-Process "perfmon.exe" -ArgumentList "/report" -Wait - Write-Host "GENERATING AND DISPLAYING STABILITY HISTORY REPORT 3/19" + Write-Host "GENERATING AND DISPLAYING STABILITY HISTORY REPORT 4/18" Start-Process "perfmon.exe" -ArgumentList "/rel" -Wait - Write-Host "CLEARING DNS 4/19" + Write-Host "CLEARING DNS 5/18" ipconfig.exe /flushsdns > $null - Write-Host "CLEARING ARP CACHE 5/19" + Write-Host "CLEARING ARP CACHE 6/18" Remove-NetNeighbor -Confirm:$false > $null 2> $null - Write-Host "CLEARING ALL SAMBA CREDENTIALS 6/19" + Write-Host "CLEARING ALL SAMBA CREDENTIALS 7/18" net.exe use * /delete /y > $null 2> $null # nuke all samba creds - Write-Host "RELEASING AND RENEWING DHCP 7/19" + Write-Host "RELEASING AND RENEWING DHCP 8/18" # release and renew dhcp ipconfig.exe /release > $null ipconfig.exe /renew > $null - Write-Host "GETTING CONTROL OF WINDOWS UPDATE 8/19" + Write-Host "GETTING CONTROL OF WINDOWS UPDATE 9/18" Install-Module -Name PSWindowsUpdate -Force > $null 2> $null Import-Module PSWindowsUpdate - Write-Host "UPDATING WINDOWS 9/19" + Write-Host "UPDATING WINDOWS 10/18" Get-WindowsUpdate -AcceptAll -Install -IgnoreReboot > $null - Write-Host "UPDATING MALWARE SIGNATURES 10/19" + # Write-Host "UPDATING MALWARE SIGNATURES 10/18" + # Update-MpSignature # update windows defender malware siggs + + # Write-Host "RUNNING WINDOWS MALICIOUS SOFTWARE REMOVAL TOOL (MRT, MAY TAKE A LONG TIME, WONT SHOW STATUS) 11/18" + # Start-Process -FilePath "MRT.exe" -ArgumentList "/F:Y /Q" -Wait # do full microsoft malicious software removal scan in background automatically removing anything found, wait to proceed + + Write-Host "UPDATING MALWARE SIGNATURES 11/18" Update-MpSignature # update windows defender malware siggs - Write-Host "RUNNING WINDOWS MALICIOUS SOFTWARE REMOVAL TOOL (MRT, MAY TAKE A LONG TIME, WONT SHOW STATUS) 11/19" - Start-Process -FilePath "MRT.exe" -ArgumentList "/F:Y /Q" -Wait # do full microsoft malicious software removal scan in background automatically removing anything found, wait to proceed - - Write-Host "UPDATING MALWARE SIGNATURES (AGAIN) 12/19" - Update-MpSignature # update windows defender malware siggs - - Write-Host "RUNNING FULL WINDOWS DEFENDER SCAN 13/19" + Write-Host "RUNNING FULL WINDOWS DEFENDER SCAN 12/18" Start-MpScan -ScanType FullScan # full windows defender scan - Write-Host "RUNNING DISM ONLINE IMAGE CLEANUP 14/19" + Write-Host "RUNNING DISM ONLINE IMAGE CLEANUP 13/18" DISM.exe /Online /Cleanup-Image /RestoreHealth # online check for bad files - Write-Host "RUNNING SYSTEM FILE CHECKER (SFC) 15/19" + Write-Host "RUNNING SYSTEM FILE CHECKER (SFC) 14/18" SFC.exe /scannow # older check for bad files - Write-Host "SCHEDULING ESSENTIAL FILE CHECK ON NEXT BOOT 16/19" + Write-Host "SCHEDULING ESSENTIAL FILE CHECK ON NEXT BOOT 15/18" SFC.exe /scanonce # check essential files on next boot - Write-Host "SCHEDULING OFFLINE CHECK DISK AND REPAIR OF C: (CHKDSK) 17/19" + Write-Host "SCHEDULING OFFLINE CHECK DISK AND REPAIR OF C: (CHKDSK) 16/18" echo y | chkdsk.exe /f /r C: # cmd checks C drive after reboot to waste time and fix errors (noninteractive via y ffuckery) - Write-Host "SCHEDULINMG OFFLINE MEMTEST 18/19" + Write-Host "SCHEDULINMG OFFLINE MEMTEST 17/18" mdsched.exe /s # schedule offline memtest (noninteractive) - Write-Host "SCHEDULING WINDOWS DEFENDER OFFLINE SCAN MAY REBOOT UNEXPECTEDLY 19/19" + Write-Host "SCHEDULING WINDOWS DEFENDER OFFLINE SCAN MAY REBOOT UNEXPECTEDLY 18/18" Start-MpWDOScan # powershell starts Windows Defender Offline Scan after reboot Write-Host "`nREBOOTING IN 5 MINUTES MAX PROVBABLY SOONER`n"