yes, which is especially funny considering you no longer have an option to turn them off, so how could this matter to anyone?
It would be pretty evil if they waited until after Windows 10 EOL to renew the certs, but based on these dates, it looks like that wouldn't be possible, so no worries that I can see.
I think they needed to simplify their product lines, having such a range of devices is confusing at best, and yes, I think it's also worth dropping those old line names. So I think it's good for them in the long run, and I bet they found that in their research too.
Ask a random consumer which of their products would have been the premium one, and unless they knew Dell products intimately, I doubt they would know. Though I think they could have simplified it further.. "Pro Max Plus", what the hell is going on there?!
Wrong again. Electric vehicles are more reliable than gasoline vehicles because they have fewer points of failure. On average, they last 50% longer.
Its your right to be incorrect and my right to correct you.
Question
jmander
Hello,
I am trying to write a batch script that will run automatically daily to do the following.
1. Move files older than 2 days to from the main directory(Jason) to archive directory.
2. Zip files in the archive directory that are older than 1 week and delete files from this directory
that are older than 6 months.
3. I want to run this script from a different directory(not the directory that has the files).
I wrote the following script but its not correctly working. Can you please help.
REM move files older than 2 days to a archive directory
robocopy D:\Agentrics\integration\incoming\Jason D:\Agentrics\integration\incoming\Jason\archive /MOV
/MINAGE:2
Question: How can i change the command below to zip files older than 1 week. Also i want to put this
command in a batch file that will run from a different location? Is it possible that the zipped files
can have the same creation date and time as the original files?
REM zip all files in the backup directory
FOR %%A IN (*.TXT*, *.cpi*) DO "C:\Program Files\WinRAR\WinRAR.exe" a -r "%%~nA.zip" "%%A"
FOR %%A IN (*.TXT,*.cpi) DO DEL "D:\Agentrics\integration\incoming\Jason\archive\.cpi*" "%%A"
REM Delete all files in the backup directory that are older than 6 months
forfiles /p D:\Agentrics\integration\incoming\Jason\archive /s /m *.* /d -500 /c "cmd /c del /q @path"
Kind Regards,
Jason
Link to comment
https://www.neowin.net/forum/topic/1138966-batch-file-to-move-compress-delet3-files/Share on other sites
9 answers to this question
Recommended Posts