Skip to main content

Peachtree Auto Backup Using Task Scheduler with images


Before creating an auto backup with Task Scheduler. 

1. In PEACHTREE Application, Create an initial Auto Backup.

  • Click Browse to locate folder "SAVE BACKUP TO:"
  • Enter "USERNAME" and "PASSWORD"
  • Follow everything on the image
  • Click "Save As" to your backup folder
  • Then "Run Backup" and copy the PROGRAM SCRIPT at the bottom to be used later, see image below.


Search and open "TASK SCHEDULER"

1. Click the tab "GENERAL" Followup the setup on the picture.


2. Click the tab "TRIGGERS". Then Click the New button to create a schedule. After setting up the schedule. Click OK.









3. To Create new Actions, click the tab "ACTIONS", click NEW then paste the PROGRAM/SCRIPT below. Then Click OK.



4. Next click the tab "CONDITIONS" and follow everything in the picture.



5. Click the tab "SETTING" and follow everything in the picture.  


6. Lastly right-click the folder "TASK SCHEDULER LIBRARY" and select "ENABLE ALL TASKS HISTORY"























Comments

Popular posts from this blog

Reset 120 day RDS Grace period on 2016 and 2019

  Reset 120 day RDS Grace period on 2016 and 2019  Confirm-deletion-of-the-timebomb-key-in-the-registry If you have a home lab environment or another lab where you continually test various solutions, licensing, and trial expiration is a challenge that you constantly tend to run into. It is just part of the fun of lab environments. While most trials are fairly “hard and fast” and don’t allow you to reset the trial expiration, if you work with Microsoft Windows Server and Remote Desktop Services (RDS), there is a “hack” that allows you to effectively reset the expiration of  Remote Desktop  Services grace period where you can essentially rewind the clock on your RDS licensing if you are making use of this role inside your lab environment. I am using Windows Server 2019 for my Windows workloads in my lab environment. In this post, I will show how to reset 120 day RDS licensing Grace period on 2016 and 2019 Windows Server. Let’s see. Learn how to reset the 120-day Grace Period in Remote De

The Parables of Jesus - Full List with KJV Bible Verses

The Parables of Jesus Jesus was a storyteller. The stories and illustrations He told were called parables and there is something unique about them that made them stand out.  Throughout the more than 40 parables that Jesus taught throughout the Bible, He used parables to influence and challenge the thinking of the original audience and to help people consider a different perspective about Himself and the kingdom of God.  Parables can do the same for us today as they did for the original audience. They can give us a fresh perspective on Jesus’ ministry and understanding that God offers His kingdom to EVERYONE. They show us that by choosing Christ, we are putting Jesus first instead of status, money, or success.  Here is the list of parables spoken by Jesus in the Bible. PARABLES MATTHEW MARK LUKE Salt of the Earth Matthew 5:13 Mark 9:50   Lamp Under a Bowl Matthew 5:14-16 Mark 4:21-22 Luke 8:16, 11:33 Wise and Foolish Builders Matthew 7:24-27   Luke 6:47-49 New Cloth on an Old Coat Matth

GitLab Repository Command Line Instructions

Start project repository Command line instructions You can also upload existing files from your computer using the instructions below. Git global setup git config --global user.name "Jaime Moncada" git config --global user.email "jaimemoncadajr@gmail.com" Create a new repository git clone https://gitlab.com/jaimemoncadajr/library-system.git cd library-system touch README.md git add README.md git commit -m "add README" git push -u origin master Push an existing folder cd existing_folder git init git remote add origin https://gitlab.com/jaimemoncadajr/library-system.git git add . git commit -m "Initial commit" git push -u origin master Push an existing Git repository cd existing_repo git remote rename origin old-origin git remote add origin https://gitlab.com/jaimemoncadajr/library-system.git git push -u origin --all git push -u origin --tags Credit :  https://gitlab.com OR Simple Way to Push an existing