30 lines
1.4 KiB
Batchfile
Executable File
30 lines
1.4 KiB
Batchfile
Executable File
move "%userprofile%\Videos\Captures\*" c:\_\
|
|
move "%userprofile%\Pictures\Screenshots\*" c:\_\
|
|
move "%userprofile%\Pictures\Saved Pictures\*" c:\_\
|
|
move "%userprofile%\Pictures\Camera Roll\*" c:\_\
|
|
move "%userprofile%\Desktop\*" c:\_\
|
|
move "%userprofile%\Downloads\*" c:\_\
|
|
move "%userprofile%\Music\*" c:\_\
|
|
move "%userprofile%\Documents\*" c:\_\
|
|
move "%userprofile%\AppData\Local\Packages\Microsoft.Windows.ContentDeliveryManager_cw5n1h2txyewy\LocalState\Assets\*" c:\_\
|
|
|
|
rmdir "%userprofile%\Videos\Captures\"
|
|
rmdir "%userprofile%\Pictures\Screenshots\"
|
|
rmdir "%userprofile%\Pictures\Saved Pictures\"
|
|
rmdir "%userprofile%\Pictures\Camera Roll\"
|
|
rmdir "%userprofile%\Desktop\"
|
|
rmdir "%userprofile%\Downloads\"
|
|
rmdir "%userprofile%\Music\"
|
|
rmdir "%userprofile%\Documents\"
|
|
rmdir "%userprofile%\AppData\Local\Packages\Microsoft.Windows.ContentDeliveryManager_cw5n1h2txyewy\LocalState\Assets"
|
|
|
|
mklink /D "%userprofile%\Videos\Captures\" c:\_\
|
|
mklink /D "%userprofile%\Pictures\Screenshots\" c:\_\
|
|
mklink /D "%userprofile%\Pictures\Saved Pictures\" c:\_\
|
|
mklink /D "%userprofile%\Pictures\Camera Roll\" c:\_\
|
|
mklink /D "%userprofile%\Desktop\" c:\_\
|
|
mklink /D "%userprofile%\Downloads\" c:\_\
|
|
mklink /D "%userprofile%\Music\" c:\_\
|
|
mklink /D "%userprofile%\Documents\" c:\_\
|
|
mklink /D "%userprofile%\AppData\Local\Packages\Microsoft.Windows.ContentDeliveryManager_cw5n1h2txyewy\LocalState\Assets" c:\_\
|