BimCloud Basic Backup Scripts
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎2021-03-26 04:24 PM
‎2021-03-26
04:24 PM
I modified the original BimCloud Basic Backup Task files from here
Biggest difference: The original Script stops the server, does the backup and starts again. In my script, the Server/Workstation does a reboot. This gives me the advantage of not having to care about Windows Updates, RAM errors or starting the BimCloud. I have added some descriptions to make it a hopefully easier to understand and a XML file to import into the windows task scheduler.
Take a look, maybe you have some good suggestions on how to improve the script.
3 REPLIES 3
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎2021-03-26 04:59 PM
‎2021-03-26
04:59 PM
Some improvements that come to my mind:
- Maybe we could put it into one file.
- ping localhost -n 10 >nul looks strange to me. Why not wait for x seconds or even better check if the service is still running?
- Use variables
- Maybe we could put it into one file.
- ping localhost -n 10 >nul looks strange to me. Why not wait for x seconds or even better check if the service is still running?
- Use variables
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎2021-03-26 05:29 PM
‎2021-03-26
05:29 PM
Update:
New versionhttps://nextcloud.salzmann.solutions/index.php/s/7NBXEFdLB32DMit
Zip Download link:https://nextcloud.salzmann.solutions/index.php/s/7NBXEFdLB32DMit/download
I merged it into two files. Two files makes sense, because you need a separate backup file for every instance.
The ping localhost is just a delay without output. Changed it to 30s just to be sure.
Made the script a little bit easier by using variables.
I removed all the output suppression. I like to be able to see the output if I run it manually and there is no output if run by task scheduler. For testing you can put the "pause" into the files. That way the script stops until you put a button.
New version
Zip Download link:
I merged it into two files. Two files makes sense, because you need a separate backup file for every instance.
The ping localhost is just a delay without output. Changed it to 30s just to be sure.
Made the script a little bit easier by using variables.
I removed all the output suppression. I like to be able to see the output if I run it manually and there is no output if run by task scheduler. For testing you can put the "pause" into the files. That way the script stops until you put a button.
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎2022-01-11 09:48 AM
‎2022-01-11
09:48 AM