powercfg -duplicatescheme e9a42b02-d5df-448d-aa00-03f14749eb61; #Disable UAC New-ItemProperty -Path HKLM:Software\Microsoft\Windows\CurrentVersion\policies\system -Name EnableLUA -PropertyType DWord -Value 0 -Force; #Download Programs mkdir /NPCDownloads Invoke-WebRequest -Uri https://feverclan.com/cloud/index.php/s/DYLtM2mC3K3LPj8/download/AcroRdrDC.exe -OutFile /NPCDownloads/AcroRdrDC.exe Invoke-WebRequest -Uri https://feverclan.com/cloud/index.php/s/bPWwkGMMT34QktE/download/ChromeSetup.exe -OutFile /NPCDownloads/ChromeSetup.exe Invoke-WebRequest -Uri https://feverclan.com/cloud/index.php/s/ZdFEpw4LaXT7rDa/download/Dell-Command-Update.EXE -OutFile /NPCDownloads/Dell-Command-Update.EXE Invoke-WebRequest -Uri https://feverclan.com/cloud/index.php/s/cBY2pqYbTZPcFWe/download/Intel-Driver-and-Support-Assistant-Installer.exe -OutFile /NPCDownloads/IntelUpdate.exe Invoke-WebRequest -Uri https://feverclan.com/cloud/index.php/s/dQGYZapRkiFME8M/download/ccsetup.exe -OutFile /NPCDownloads/ccleaner-setup.exe Invoke-WebRequest -Uri https://feverclan.com/cloud/index.php/s/Wa5zEPLF5mpfXYF/download/adwcleaner.exe -OutFile /NPCDownloads/adwcleaner.exe Invoke-WebRequest -Uri https://feverclan.com/cloud/index.php/s/QcaH3jKdDJieZFz/download/JRT.exe -OutFile /NPCDownloads/JRT.exe Invoke-WebRequest -Uri https://feverclan.com/cloud/index.php/s/2LsETB5N7fnQz3j/download/rkill.exe -OutFile /NPCDownloads/rkill.exe Invoke-WebRequest -Uri https://feverclan.com/cloud/index.php/s/txBALokGDAHq5pt/download/MBSetup.exe -OutFile /NPCDownloads/mbsetup.exe Invoke-WebRequest -Uri https://feverclan.com/cloud/index.php/s/gnM4zmQmpwiqB4T/download/gsmartcontrol.exe -OutFile /NPCDownloads/gsmartcontrol.exe #Run Cleanup - First Start-Process -FilePath "C:/NPCDownloads/gsmartcontrol.exe" -ArgumentList "/install" -Verb RunAs Start-Process -FilePath "C:/NPCDownloads/adwcleaner.exe" -ArgumentList "/install" -Verb RunAs Start-Process -FilePath "C:/NPCDownloads/JRT.exe" -ArgumentList "/install" -Verb RunAs Start-Process -FilePath "C:/NPCDownloads/rkill.exe" -ArgumentList "/install" -Verb RunAs Start-Process -FilePath "C:/NPCDownloads/mbsetup.exe" -ArgumentList "/install" -Verb RunAs #Install Programs Start-Process -FilePath "C:/NPCDownloads/AcroRdrDC.exe" -ArgumentList "/sAll /rs /rps /msi /norestart /quiet EULA_ACCEPT=YES" -Verb RunAs Start-Process -FilePath "C:/NPCDownloads/ChromeSetup.exe" -ArgumentList "/silent /install" -Verb RunAs Start-Process -FilePath "C:/NPCDownloads/Dell-Command-Update.exe" -ArgumentList "/silent /install" -Verb RunAs Start-Process -FilePath "C:/NPCDownloads/IntelUpdate.exe" -ArgumentList "/silent /install EULA_ACCEPT=YES" -Verb RunAs #Remove Temp Remove-Item -Path $env:TEMP -Recurse -Force -ErrorAction SilentlyContinue; $objShell = New-Object -ComObject Shell.Application $objFolder = $objShell.Namespace(0xA) $WinTemp = "c:\Windows\Temp\*" write-Host "Emptying Recycle Bin." -ForegroundColor Cyan $objFolder.items() | %{ remove-item $_.path -Recurse -Confirm:$false} write-Host "Removing Temp" -ForegroundColor Green Set-Location “C:\Windows\Temp” Remove-Item * -Recurse -Force -ErrorAction SilentlyContinue Set-Location “C:\Windows\Prefetch” Remove-Item * -Recurse -Force -ErrorAction SilentlyContinue Set-Location “C:\Documents and Settings” Remove-Item “.\*\Local Settings\temp\*” -Recurse -Force -ErrorAction SilentlyContinue Set-Location “C:\Users” Remove-Item “.\*\Appdata\Local\Temp\*” -Recurse -Force -ErrorAction SilentlyContinue write-Host "Finally now , Running Windows disk Clean up Tool" -ForegroundColor Cyan cleanmgr /sagerun:1 | out-Null $([char]7) Sleep 3 write-Host "CleanUp Task Has been Completed Successfully, CowetaComputers -Ryan Rosso" -ForegroundColor Yellow Sleep 3