This commit is contained in:
2026-06-13 02:18:32 -06:00
parent 30db4c1848
commit 055ed246a2
2 changed files with 29 additions and 25 deletions
+1 -1
View File
@@ -98,7 +98,7 @@ script=/tmp/install_script.sh && curl -s https://git.thecoven.info/PrincessPi/ge
### Clean up Windows! ### Clean up Windows!
```powershell ```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: todo:
+28 -24
View File
@@ -5,7 +5,7 @@
# alt+y # alt+y
# Run: # Run:
# In admin powershell Terminal: # 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 # check if hasadmin rights, if notm run script in new terminal, clopsing old
## if not, carry on ## 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 "`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 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 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 Start-Process "perfmon.exe" -ArgumentList "/rel" -Wait
Write-Host "CLEARING DNS 4/19" Write-Host "CLEARING DNS 5/18"
ipconfig.exe /flushsdns > $null 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 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 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 # release and renew dhcp
ipconfig.exe /release > $null ipconfig.exe /release > $null
ipconfig.exe /renew > $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 Install-Module -Name PSWindowsUpdate -Force > $null 2> $null
Import-Module PSWindowsUpdate Import-Module PSWindowsUpdate
Write-Host "UPDATING WINDOWS 9/19" Write-Host "UPDATING WINDOWS 10/18"
Get-WindowsUpdate -AcceptAll -Install -IgnoreReboot > $null 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 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" Write-Host "RUNNING FULL WINDOWS DEFENDER SCAN 12/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 (AGAIN) 12/19"
Update-MpSignature # update windows defender malware siggs
Write-Host "RUNNING FULL WINDOWS DEFENDER SCAN 13/19"
Start-MpScan -ScanType FullScan # full windows defender scan 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 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 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 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) 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) 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 Start-MpWDOScan # powershell starts Windows Defender Offline Scan after reboot
Write-Host "`nREBOOTING IN 5 MINUTES MAX PROVBABLY SOONER`n" Write-Host "`nREBOOTING IN 5 MINUTES MAX PROVBABLY SOONER`n"