Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
Delete My Music, My videos folders
Name: srinivasu Date: June 24, 2009 at 04:44:20 Pacific OS: Windows XP Subcategory: Batch
Comment:
Suggestion from Ramoju Srinivasu
Create batch file to Delete My Music , My Videos from My documents with the DOS BATCH FILE First check the Deltree.exe file is exist in c:\windows\system32 folder or not , if not copy from internet DELTREE.exe file and start Batch file
For Deleting My Music Folder......
@echo off deltree c:\docume~1\USER NAME\mydocu~1\mygame~1 pause echo "Folder deleted successfully"
USER NAME means Profile name your get it by double click on "mycomputer" and "Documents and setting" you will get the profile names.,
Summary: Hello, I’m trying to make a bat file that will delete all files in the My Pictures and the My Music folders for a particular user. This should work for both WinXP and Win2000Pro machines. See, we h...
Summary: OK so lets say that you moved all of your music files from one folder to a dif. folder where the rest of your music files are. ya know, just doing some spring cleaning.. but then you have a winamp pla...
Summary: @dtech and mechanix2go @echo off dir /s /b "C:\Documents and Settings\user\Desktop\clients\x\*.jpeg" > Files.txt for /f %%a in (Files.txt) do del %%a this is a simple solution BUT THE x folder changes...