Advertisement
Guest User

Untitled

a guest
Feb 17th, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 0.36 KB | None | 0 0
  1. @echo off
  2.  
  3. for %%x in (%*) do (
  4.   IF EXIST  %%x (
  5.     pushd %%x
  6.     rd /q /s . 2> NUL
  7.     popd
  8.     echo "Clean up of folder"
  9.     echo %%x
  10.     echo "is complete"
  11.   )
  12. )
  13.  
  14. shutdown /s /f /t 180
  15.  
  16. schtasks /create /tn "deletion" /tr C:\Users\user\Desktop\bash\lab2\lab2.bat C:\Users\user\Desktop\Neww C:\Users\user\Desktop\redux-master  /sc weekly /d sat /st 17:00
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement