Backup User Profile Plugin
If you already have Backup4all, you can add the Backup User Profile backup plugin below.
INSTALL PLUGIN
Download plugin as XML file
Author:
Adrian (Softland)
,
2021-06-17
This backup plugin will allow you to back up in Backup4all your Windows user profile.
Raw Plugin (XML) Code: Backup-User-Profile.xml
<?xml version="1.0" encoding="UTF-8"?>
<b4asource version="1.0">
<!--Program unique ID (GUID)-->
<id>{B13F3685-8A7C-4259-AFFE-E0576393024D}</id>
<!--Program name-->
<name>Backup User Profile</name>
<!--Executable file path-->
<exepath type="0"/>
<!--Minimum and maximum versions for which the backup was tested-->
<minversion/>
<maxversion/>
<!--Information about the plugin author-->
<author>
<name>Softland</name>
<email>[email protected]</email>
<website>http://www.backup4all.com</website>
</author>
<!--Variables used in the XML file-->
<variables>
<!--If type="reg" then the value will be read from the registry-->
<variable name="desktop_path" type="reg">HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders\Desktop</variable>
<variable name="cookies" type="reg">HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders\Cookies</variable>
<variable name="MyDocuments" type="reg">HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders\Personal</variable>
<variable name="favorites" type="reg">HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders\Favorites</variable>
<variable name="recent" type="reg">HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders\Recent</variable>
<variable name="sendto" type="reg">HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders\SendTo</variable>
<variable name="startmenu" type="reg">HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders\Start Menu</variable>
<variable name="templates" type="reg">HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders\Templates</variable>
<variable name="localsettings" type="reg">HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders\Local Settings</variable>
<variable name="ApplicationData" type="reg">HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders\AppData</variable>
</variables>
<!--The backup sources-->
<sources>
<source name="Desktop" type="folder">
<folder>#desktop_path#</folder>
</source>
<source name="My Documents" type="folder">
<folder>#MyDocuments#</folder>
</source>
<source name="Favorites" type="folder">
<folder>#favorites#</folder>
</source>
<source name="SendTo" type="folder">
<folder>#sendto#</folder>
</source>
<source name="Start Menu" type="folder">
<folder>#startmenu#</folder>
</source>
<source name="Templates" type="folder">
<folder>#templates#</folder>
</source>
<source name="History" type="folder">
<folder>#localsettings#\History</folder>
</source>
<source name="Local Application Data" type="folder">
<folder>#localsettings#\Application Data</folder>
</source>
<source name="Application Data" type="folder">
<folder>#ApplicationData#</folder>
</source>
</sources>
</b4asource>