Permet d'ajouter au pare-feu tous les exécutables d'un dossier d'un seul coup, indispensable.
https://www.sordum.org/8125/firewall-app-blocker-fab-v1-9/
Simply drag and drop the application you wish to block into the FAB window, or browse the hard disk to find it.That’s it!
Simple tool to configure Windows Filtering Platform (WFP) which can configure network activity on your computer.
https://github.com/henrypp/simplewall
Features:
Windows 11 a une facheuse tendance à controller / reset l'affichage des fichiers/dossiers dans le file explorer.
Ce petit soft permet de définir une fois pour toute l'affichage de ces élements pour chaque type de documents :
https://lesferch.github.io/WinSetView/
WinSetView provides an easy way to set Windows File Explorer default folder views. For example, if you want Details view, with a particular selection of column headings enabled across all folders, then WinSetView will do that for you.
Copier de fichiers en multithread avec fonction resume/restart
Robocopy is a command-line file replication utility primarily designed for copying and synchronizing files and directories within a file system.
robocopy <source> <destination> [<file>[ ...]] [<options>]
For example, to copy a file named yearly-report.mov from c:\reports to a file share \marketing\videos while enabling multi-threading for higher performance (with the /mt parameter) and the ability to restart the transfer in case it's interrupted (with the /z parameter), type:
robocopy c:\reports "\\marketing\videos" yearly-report.mov /mt /z
Use /MIR Robocopy command with caution. The /MIR command, while powerful, should be used with caution. It deletes files in the destination directory that do not exist in the source. Therefore, double-check the source and destination paths before executing this command to prevent unintended data loss.
Save outputs with /LOG in Robocopy. Always use the /LOG command to save the output of your Robocopy operations. The log file provides a detailed record of the copying process, which can be invaluable for troubleshooting and verifying the success of the operation.
Run Robocopy in backup mode with /ZB switch. The /ZB switch allows Robocopy to copy files in backup mode. This means that it can copy files even if it does not have permission to access them, making it particularly useful for copying data from protected or restricted areas.
Complete guide with examples : https://petri.com/robocopy-complete-guide/
Microsoft robocopy : https://learn.microsoft.com/.../windows-commands/robocopy