Added title in batch

This commit is contained in:
Andrew Lee 2020-08-02 11:23:12 -07:00
parent c4d5046b7f
commit 8f80d7c51d
2 changed files with 4 additions and 0 deletions

View file

@ -1,4 +1,5 @@
@echo off
title Alee Audio Player Installer Creator
echo Creating Installer...
binarycreator.exe -v --offline-only -c config\config.xml -p packages AleePlayer-Installer.exe
pause

View file

@ -1,6 +1,7 @@
function Component()
{
// default constructor
}
Component.prototype.createOperations = function()
@ -8,4 +9,6 @@ Component.prototype.createOperations = function()
component.createOperations();
component.addOperation("CreateShortcut", "@TargetDir@/AleePlayer.exe", "@StartMenuDir@/AleePlayer.lnk");
component.addOperation("CreateShortcut", "@TargetDir@/maintenancetool.exe", "@StartMenuDir@/MaintenanceTool.lnk");
//component.addElevatedOperation("Execute", "{0,3010,1638,5100}", "@TargetDir@\\vc_redist.x64.exe", "/norestart", "/q");
}