diff options
Diffstat (limited to 'plugins/UserInfoEx/_clear.cmd')
-rw-r--r-- | plugins/UserInfoEx/_clear.cmd | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/plugins/UserInfoEx/_clear.cmd b/plugins/UserInfoEx/_clear.cmd new file mode 100644 index 0000000000..3b6d4acd53 --- /dev/null +++ b/plugins/UserInfoEx/_clear.cmd @@ -0,0 +1,22 @@ +@echo off
+pushd ".\bin8"
+cls
+echo Leere Zwischenverzeichnis
+if not errorlevel 1 (
+ attrib /s -s -r -h *.* > NUL
+ del /s /f /q *.* > NUL
+ pushd ..
+ rd /s /q bin8 > NUL
+)
+
+attrib /s -s -r -h *.aps > NUL
+del /s /f /q *.aps > NUL
+
+attrib /s -s -r -h *.user > NUL
+del /s /f /q *.user > NUL
+
+attrib /s -s -r -h *.suo > NUL
+del /s /f /q *.suo > NUL
+
+attrib /s -s -r -h *.ncb > NUL
+del /s /f /q *.ncb > NUL
|