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}


SECURITY #FILE SERVER AUDITING PERMISSIONS CHANGES ON FOLDERS

 If you have necessity to audit folder permissions change these articles would be helpful for you.

ID Event 4670.

https://www.manageengine.com/products/active-directory-audit/kb/how-to/how-to-find-out-who-changed-the-folder-permissions.html

https://www.rootusers.com/configure-file-access-auditing-in-windows-server-2016/

https://keys.direct/blogs/blog/how-to-enable-file-auditing-in-windows-server-2016