Some other resources:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
:: *** Disable Some Service *** | |
sc stop DiagTrack | |
sc stop diagnosticshub.standardcollector.service | |
sc stop dmwappushservice | |
sc stop WMPNetworkSvc | |
sc stop WSearch | |
sc config DiagTrack start= disabled | |
sc config diagnosticshub.standardcollector.service start= disabled | |
sc config dmwappushservice start= disabled |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import io.javalin.Javalin | |
import java.util.zip.CRC32 | |
import java.util.zip.Deflater | |
/* | |
main requires: | |
io.javalin:javalin:2.7.0 | |
org.slf4j:slf4j-simple:1.7.25 | |
test at: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript: (function () { | |
document.querySelectorAll('.BRpageimage').forEach(i => { | |
const url = new URL(i.src); | |
const filename = url.searchParams.get('file').split('/').pop().replace('.jp2','.jpg'); | |
url.searchParams.set('scale', 1); | |
dl(url.href, filename); | |
}); | |
function dl(url, filename) { | |
function blob2B64(blob, callback) { |
Some options based on what permissions your admins allow
Paste the following directly in PowerShell or put into PowerShell ISE then highlight the line and click "Run Selection (F8)" to run even if running scripts is disabled via Execution Policy.
$wsh = New-Object -COMObject WScript.Shell; while (1) {$RND = Get-Random -Minimum 30 -Maximum 120; $wsh.SendKeys('+{F15}'); Write-Host "$(Get-Date)"; Start-Sleep -Seconds $RND}