-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c4feb40
commit fbeb59f
Showing
4 changed files
with
40 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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..." | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 not shown.