This commit is contained in:
2026-06-12 23:37:51 -06:00
parent aafd05c9f3
commit aa0ab287ca
+9 -8
View File
@@ -19,26 +19,27 @@ if (-not ([Security.Principal.WindowsIdentity]::GetCurrent().Groups -contains 'S
Write-Host "`nFIXING WINDOWS FULL STYLE`n" Write-Host "`nFIXING WINDOWS FULL STYLE`n"
Write-Host "ABORTING ANY SCHEDULED SHUTDOWN" Write-Host "ABORTING ANY SCHEDULED SHUTDOWN"
shutdown /a 2> $null > $null # cmd abort scheduled shutdowns shutdown.exe /a 1> $null # cmd abort scheduled shutdowns
Write-Host "GENERATING AND DISPLAYING COMPREHENSIVE STABILITY REPORT" Write-Host "GENERATING AND DISPLAYING COMPREHENSIVE STABILITY REPORT"
Start-Process "perfmon" -ArgumentList "/report" -Wait Start-Process "perfmon.exe" -ArgumentList "/report" -Wait
Write-Host "GENERATING AND DISPLAYING STABILITY HISTORY" Write-Host "GENERATING AND DISPLAYING STABILITY HISTORY"
Start-Process "perfmon" -ArgumentList "/rel" -Wait Start-Process "perfmon.exe" -ArgumentList "/rel" -Wait
Write-Host "CLEARING DNS" Write-Host "CLEARING DNS"
ipconfig /flushsdns > $null ipconfig.exe /flushsdns 1> $null
Write-Host "CLEARING ARP CACHE" Write-Host "CLEARING ARP CACHE"
Remove-NetNeighbor -Confirm:$false > $null Remove-NetNeighbor -Confirm:$false 1> $null
Write-Host "CLEARING ALL SAMBA CREDENTIALS" Write-Host "CLEARING ALL SAMBA CREDENTIALS"
net use * /delete /y > $null 2> $null net.exe use * /delete /y 1> $null # nuke all samba creds
Write-Host "RENEWING DHCP" Write-Host "RENEWING DHCP"
ipconfig /releasen > $null # release and renew dhcp
ipconfig /renew > $null ipconfig.exe /release 1> $null
ipconfig.exe /renew 1> $null
Write-Host "UPDATING MALWARE SIGNATURES" Write-Host "UPDATING MALWARE SIGNATURES"
Update-MpSignature # update windows defender malware siggs Update-MpSignature # update windows defender malware siggs