PALEOS.IO / Open source scripts
Copy with context.
Scripts are presented as readable artifacts, with risk labels and prerequisites. They are not silent one-click actions.
Windows PowerShell
Clear VRAM
High-impact system action
A Windows 10/11 display-driver restart utility with an explicit visual-disconnect warning.
Prerequisites: Windows 10/11; administrative approval; a local display; a tested recovery plan.
License: Review before publication
# PALEOS.IO — Clear VRAM (excerpt)
# Read the full safety note before running.
$displayAdapters = Get-PnpDevice -Class Display -Status OK
foreach ($gpu in $displayAdapters) {
Disable-PnpDevice -InstanceId $gpu.InstanceId -Confirm:$false
Start-Sleep -Seconds 3
Enable-PnpDevice -InstanceId $gpu.InstanceId -Confirm:$false
}
Android / PowerShell
ADB batch install workflow
Device configuration action
A checked ADB workflow for staging and installing APKs on one authorized device.
Prerequisites: Android Platform Tools; one authorized device; verified APK source; backups.
License: Review before publication
# PALEOS.IO — ADB batch install (excerpt)
# Verify one authorized device before proceeding.
adb devices -l
adb push .\app.apk /data/local/tmp/app.apk
adb shell pm install -r -d -g /data/local/tmp/app.apk
adb shell rm -f /data/local/tmp/app.apk