1
0

Auto-commit: 2025-10-31 08:58:35

This commit is contained in:
David Wuibaille
2025-10-31 08:58:36 +01:00
parent 7d94414992
commit 7cc3011354
1088 changed files with 193455 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
@echo off
Echo Create Recipes library for current user (run in user context)
shlib create "%userprofile%\AppData\Roaming\Microsoft\Windows\Libraries\Recipes.library-ms"
pause
Echo Add two folders to Recipes library
shlib add "%userprofile%\AppData\Roaming\Microsoft\Windows\Libraries\Recipes.library-ms" "C:\Baking Recipes"
shlib add "%userprofile%\AppData\Roaming\Microsoft\Windows\Libraries\Recipes.library-ms" "C:\Pastry Recipes"
pause
Echo Since the 1st folder added is the default save location, change it to the other folder
shlib setsaveloc "%userprofile%\AppData\Roaming\Microsoft\Windows\Libraries\Recipes.library-ms" "C:\Pastry Recipes"
pause
Echo Remove the 2nd folder and the default save location will go back to the remaining folder
shlib remove "%userprofile%\AppData\Roaming\Microsoft\Windows\Libraries\Recipes.library-ms" "C:\Pastry Recipes"
pause
Echo Just delete the file to remove the library
del "%userprofile%\AppData\Roaming\Microsoft\Windows\Libraries\Recipes.library-ms"
pause