How to back up scripts for office user process

Asked By 10 points N/A Posted on -
qa-featured

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?

SHARE
Best Answer by Don Muench
Answered By 0 points N/A #154650

How to back up scripts for office user process

qa-featured

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.

Best Answer
Best Answer
Answered By 0 points N/A #154651

How to back up scripts for office user process

qa-featured

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.

Related Questions