Advertisement
Guest User

Untitled

a guest
Dec 20th, 2013
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. for %x in ("c:tmp***") do pushd %x & ren "Application Data" a & popd
  2.  
  3. for /d %x in ("c:tmp***") do pushd %x & attrib –h %x & ren "Application Data" a & popd
  4.  
  5. for /d %%d in ("c:tmp*") do (
  6. pushd %%d
  7. attrib -h "%%d"
  8. if "%%d" == "Application Data" ren "%%d" a
  9. popd
  10. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement