How to back up scripts for office user process
I am confused about back up scripts for office user. I am an office user. I can create backup, and bat file directory, but I have no idea how to create a bat file? It is a necessary step isn't it?
I am confused about back up scripts for office user. I am an office user. I can create backup, and bat file directory, but I have no idea how to create a bat file? It is a necessary step isn't it?
Hi Louis,
To create a .bat file you have to follow some steps of programming.
You have to write the program in MS-DOS format.
There are few steps for creating and running a .bat file.
The next forums discussed a lot about the making of this type of files.
https://www.computerhope.com/batch.htm
https://community.spiceworks.com/scripts/show/274-outlook-pst-backup
I expect these will be enough for the job.
Thanks.
Dear Louis,
The batch file is a simple text document that runs command sets.
The simple way to create a batch file is by creating a notepad file (at any free space on a desktop, press right click and choose New then Notepad or text document)
After that write the following lines:
@ECHO OFF
ECHO.
ECHO which is batch file
ECHO.
PAUSE
CLS
EXIT
After that save as (filename.bat)
Best regards.