Tools
Everything - Locate files and folders by name instantly.
https://www.voidtools.com/downloads/
PatchCleaner - Clean your windows installer directory
http://www.homedev.com.au/free/patchcleaner
CCleaner
https://www.ccleaner.com/de-de/ccleaner/download/standard
Teamviewer QuickSupport
https://download.teamviewer.com/download/TeamViewerQS.exe
Total Commander
https://www.ghisler.com/ddownload.htm
Firefox
https://www.mozilla.org/de/firefox/download/thanks/
https://www.mozilla.org/de/firefox/new/
CopyQ - Multi Clipboard
https://github.com/hluk/CopyQ/releases
Speedup Firefox
https://www.crystalidea.com/speedyfox
https://winaero.com/delete-files-older-x-days/
<article class="post-content">
<p>Removing files / folders older than X days. This post contains a batch file, and a Powershell script that will do this.</p>
<p><strong>Batch File:</strong></p>
<pre class="brush: plain; title: ; notranslate" title="">@echo off
:: set folder path
set dump_path=c:\shares\dump
:: set min age of files and folders to delete
set max_days=7
:: remove files from %dump_path%
forfiles -p %dump_path% -m *.* -d -%max_days% -c "cmd /c del /q @path"
:: remove sub directories from %dump_path%
forfiles -p %dump_path% -d -%max_days% -c "cmd /c IF @isdir == TRUE rd /S /Q @path"
</pre>
<p><strong>Powershell:</strong></p>
<pre class="brush: powershell; title: ; notranslate" title=""># set folder path
$dump_path = "C:\shares\dump"
# set min age of files
$max_days = "-7"
# get the current date
$curr_date = Get-Date
# determine how far back we go based on current date
$del_date = $curr_date.AddDays($max_days)
# delete the files
Get-ChildItem $dump_path -Recurse | Where-Object { $_.LastWriteTime -lt $del_date } | Remove-Item
</pre>
</article>
Backinfo
Downloadlink
https://cloudrun.co.uk/wp-content/uploads/2013/07/Backinfo.zip
backinfo.ps1
robocopy.exe Backinfo "C:\Program Files\Backinfo" New-ItemProperty -Path "HKLM:\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Run" -Name BackInfo -Type String -Value "C:\Program Files\BackInfo\Backinfo.exe" #Run it now CD "C:\Program Files\BackInfo" .\backinfo.exe powershell.exe -executionpolicy Bypass -file ./backinfo.ps1 pause
