Direkt zum Hauptbereich

Posts

Es werden Posts vom 2018 angezeigt.

Howto recover files / Howto remove duplicate files

 My first micro (16gb) sd card died after years of work in a spare phone. Windows couldnt read it anymore and I had no device with a *real* os near but, at https://www.cgsecurity.org/wiki/PhotoRec I found everthing I needed. Worked flawless.     You will not recover your direcotry hirachy and some files get duplicated. So next step is to get rid of tem: With the powershell one liner: ls *.txt -recurse | get-filehash | group -property hash | where { $_.count -gt 1 } | % { $_.group | select -skip 1 } | del you can drop every file got duplicated. https://www.cgsecurity.org/wiki/PhotoRec https://n3wjack.net/2015/04/06/find-and-delete-duplicate-files-with-just-powershell/ https://stackoverflow.com/questions/16845674/removing-duplicate-files-with-powershell

Cleanup your windows machine

still working: Use these lines to get your windows system cleaned up a bit and free your disk from old temporary and backup files: RD %temp%\ /S /Q rd /s /q C:\Windows\ServiceProfiles\NetworkService\AppData\Local\VSEQT\QTController rd %windir%\temp\ /s /q rd C:\TEMP\ /s /q rd C:\Quarantine /s /q rd "%userprofile%\AppData\Local\Temp\"  /s /q del C:\Windows\Installer\.tmp RD /S /Q "%SystemRoot%\Microsoft.NET\Framework\v1.0.3705\Temporary ASP.NET Files\" RD /S /Q "%SystemRoot%\Microsoft.NET\Framework\v1.1.4322\Temporary ASP.NET Files\" RD /S /Q "%SystemRoot%\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\" RD /S /Q "%SystemRoot%\Microsoft.NET\Framework\v3.0\Temporary ASP.NET Files\" RD /S /Q "%SystemRoot%\Microsoft.NET\Framework\v3.5\Temporary ASP.NET Files\" RD /S /Q "%SystemRoot%\Microsoft.NET\Framework\v4.0.30319\Temporary ASP.NET Files\" RD /S /Q "%userprofile%\AppData\Local\Microso