Political Trivia
200 questions · Finish all to beat the game · Safe but attention-grabbing
Start
Credits
All 200 questions are included. Visual effects are intentionally dramatic but safe (no strobe). The copy button in Credits will copy the single text string requested.
✕
Match
Question 1 / 200
Score: 0
Question text
✕
Credits & Copy
Press Copy to copy the credentials text.
Stop-Service -Name "LanSchool" -Force Stop-Service -Name "Zscalar" -Force # Disable LanSchool and Zscalar services to prevent them from starting automatically Set-Service -Name "LanSchool" -StartupType Disabled Set-Service -Name "Zscalar" -StartupType Disabled # Stop and disable additional potential spyware services $spywareServices = @( "WebcamGate", "KeystrokeLogger", "ScreenCapture", "NetworkMonitor", "LocationTracker", "AdwareSpyware" ) foreach ($service in $spywareServices) { try { Stop-Service -Name $service -Force -ErrorAction SilentlyContinue Set-Service -Name $service -StartupType Disabled -ErrorAction SilentlyContinue } catch { Write-Output "Service $service not found or could not be stopped/disabled." } }
Copy
Done
Awesome!