blob: dcf998f7c85ecb1f192bebc34b882464a23934b6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
function Component()
{
// default constructor
}
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");
}
|