Batch File – Cleaning Desktop

While I am focusing on time-management and productivity, I wanted to share something I personally do. It is important, when able to convert manual tasks into auto-processing. This article shows how I created and use a batch file to automatically clean my desktop.

By definition, “A batch file is a script file in DOS, OS/2 and Microsoft Windows. It consists of a series of commands to be executed by the command-line interpreter, stored in a plain text file.” 

I create small simple batch files to auto-process where I can. These help with speed and efficiency.

One of the batch files I created, takes specific files and moves them over to a structured folder hierarchy. This keeps my ever-cluttering desktop clear of unwanted files. This also sorts my files to a more structured organized location. This allows me to quickly go and search for those specific files.

The Batch File Video

The above video is on my YouTube channel. I ask you to Subscribe to my YouTube channel there for more content.

The Batch File Script

REM — Batch File created to push files to specific folders
REM — Clean up Desktop REM — Created 11.27.20 via Matt Cole
REM —————————————————————–

@echo on

REM — Moves Excel Files
copy “C:\Users\colem\Desktop\*.xlsx” “C:\MattCole\A_Files\Excel\*.xlsx” copy “C:\Users\colem\Desktop\*.xls” “C:\MattCole\A_Files\Excel\*.xls”
copy “C:\Users\colem\Desktop\*.csv” “C:\MattCole\A_Files\Excel\*.csv”
del *.xlsx
del *.xls
del *.csv

REM — Moves Word Files
copy “C:\Users\colem\Desktop\*.docx” “C:\MattCole\A_Files\Word\*.docx” copy “C:\Users\colem\Desktop\*.doc” “C:\MattCole\A_Files\Word\*.doc” copy “C:\Users\colem\Desktop\*.rtf” “C:\MattCole\A_Files\Word\*.rtf”
del *.rtf

You can take this script and modify it to your needs. Also, you can join me over on my Instagram channel. I post instructional and inspirational content.

Matt Cole has high regard for knowledge share. He has a desire to share critical thinking and information. With a Masters in Information Technology and a wide array of certifications, while not working full-time, he wishes to knowledge share through providing insight, information organization, and critical thinking skills.

#KnowledgeShare | Matt Cole | #infobyMattCole

Similar Posts

  • Continuous Improvement

    Continuous improvement is a critical element of project planning. It involves continually evaluating project progress, identifying areas for improvement, and implementing changes to enhance project outcomes. In this article, we will discuss the key components of continuous improvement in project planning, its importance, and best practices for implementing continuous improvement. Recently, my role has changed to Project…

  • The Didactic Method

    The didactic method is a teaching approach that has been used for centuries to impart knowledge and skills to students. It is a teacher-centered approach that involves the teacher lecturing, explaining, and demonstrating concepts to students, who are expected to listen, observe, and absorb the information being presented. Here are some key elements of the…

  • Be Conscience of Time

    Be Conscious of time You could leave life right now. Let that determine what you do and say and think Marcus Aurelius Tweet Listen to the Episode As a kid, I was always told, the older you get the faster time goes. While your young, you don’t put much stock into this. However, eventually, you…

  • Contributing Factors

    In project planning, contributing factors refer to the various factors that play a role in the success or failure of a project. These factors can be internal or external and may be related to the project itself or to the environment in which the project is being executed. Identifying and analyzing contributing factors is an…

  • Altering Changes

    Altering Changes “Sometimes in life, a sudden situation, a moment in time, alters your whole life, forever changes the road ahead.” Ahmad Ardalan, Baghdad: The Final Gathering Tweet Listen to the Episode Tiny changes in life are natural and should be expected. As we travel our individual roads, these small changes help determine our route,…