Skip to content

Commit

Permalink
add batch file
Browse files Browse the repository at this point in the history
  • Loading branch information
DennisTurco authored Oct 27, 2022
1 parent c4feb40 commit fbeb59f
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 0 deletions.
Binary file added CheckerBackup.exe.lnk
Binary file not shown.
14 changes: 14 additions & 0 deletions Startup_file.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
:: Author: Dennis Turco 2022

:: batch file for Windows.
:: this is to move "CheckerBackup.exe.lnk" into the "Startup" folder
:: during the installation of AutoBackup program.


if exist ./CheckerBackup.exe.lnk (
move ./CheckerBackup.exe.lnk "%USERPROFILE%\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup"
)

if not exist ./CheckerBackup.exe.lnk (
echo "Error moving file to "Startup" folder, please retry installation..."
)
26 changes: 26 additions & 0 deletions config_files/AutoBackupIconConfig.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<?xml version="1.0" encoding="UTF-8"?>
<launch4jConfig>
<dontWrapJar>false</dontWrapJar>
<headerType>gui</headerType>
<jar>C:\Users\Dennis\eclipse-workspace\AutoBackup\AutoBackup.jar</jar>
<outfile>C:\Users\Dennis\Desktop\AutoBackup.exe</outfile>
<errTitle></errTitle>
<cmdLine></cmdLine>
<chdir>.</chdir>
<priority>normal</priority>
<downloadUrl>http://java.com/download</downloadUrl>
<supportUrl></supportUrl>
<stayAlive>true</stayAlive>
<restartOnCrash>false</restartOnCrash>
<manifest></manifest>
<icon>C:\Users\Dennis\eclipse-workspace\AutoBackup\res\logo.ico</icon>
<jre>
<path></path>
<bundledJre64Bit>false</bundledJre64Bit>
<bundledJreAsFallback>false</bundledJreAsFallback>
<minVersion>1.4.0</minVersion>
<maxVersion></maxVersion>
<jdkPreference>preferJre</jdkPreference>
<runtimeBits>64/32</runtimeBits>
</jre>
</launch4jConfig>
Binary file added config_files/AutoBackupInstallerConfig.ifp
Binary file not shown.

0 comments on commit fbeb59f

Please sign in to comment.