Pagine

Mobile #CamScanner

In case a scanner is not immediately available you might consider acquire document with your mobile phone camera.
Usually quality is not so good and each document will be associated to a single HD images.
I found CamScanner mobile app that has several features.
From my side it permit to easily create .pdf file (containing all your document photo) and with good quality.

PowerShell #delete specific folders through script

In case you need to search recursively  folders in a specific path and then delete them you can use below powershell script. (these example folders are related to teams cache cleaning topic)

Be aware that -whatif option permits to see output without really deleting folders. 

Get-ChildItem "diskdrive:\path\*\AppData\Roaming\Microsoft\Teams\*" -directory | Where name -in ('application cache','blob storage','databases','GPUcache','IndexedDB','Local Storage','tmp', 'cache') | ForEach{Remove-Item $_.FullName -Recurse -Force -whatif}