This file contains hidden or 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
| var container = document.querySelector('table.inputPanel div > div'); | |
| var words = []; | |
| if (container) { | |
| let fullText = ''; | |
| container.querySelectorAll('span').forEach(span => { | |
| fullText += span.textContent; | |
| }); | |
| words = fullText.trim().split(/\s+/); | |
| } |
This file contains hidden or 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
| $Paths = @( | |
| "$env:LOCALAPPDATA\Temp", | |
| "$env:TEMP", | |
| "C:\Windows\Prefetch", | |
| "C:\Windows\SoftwareDistribution\Download", | |
| "C:\Windows\Temp" | |
| ) | |
| foreach ($path in $Paths) { | |
| Get-ChildItem -Path $path -Recurse -Force -ErrorAction SilentlyContinue | Remove-Item -Force -Recurse -ErrorAction SilentlyContinue |