myselfidem, on 02 February 2013 - 06:44 AM, said:
Just send me the contact info in South Wales and I'll arrange it and stick it in the SatNav.
Posted 07 February 2013 - 11:55 PM
prog[pn]=['Windows Live 2012']; uid[pn]=['WINDOWSLIVE2012']; ordr[pn]=[24]; dflt[pn]=['yes']; forc[pn]=['no']; bit64[pn]=['no']; cat[pn]=['Applications']; pfro[pn]=['no']; cmds[pn]=['"%wpipath%\\Install\\WLive\\wlsetup-all.exe" /q /AppSelect:Messenger%comma%Mail%comma%MovieMaker%comma%Writer%comma%Wlsync%comma%idcrl /log:%temp%\\Wlsetup.log /NOToolbarCEIP /NOhomepage /NOlaunch /NOMU /nosearch']; desc[pn]=['Windows Live 2012']; pn++;
This post has been edited by myselfidem: 08 February 2013 - 01:08 PM
Posted 10 March 2013 - 08:45 AM
Posted 10 March 2013 - 08:48 AM
Posted 10 March 2013 - 09:32 AM
Posted 10 March 2013 - 01:22 PM
This post has been edited by myselfidem: 10 March 2013 - 02:25 PM
Posted 17 March 2013 - 12:32 PM
Posted 17 March 2013 - 01:30 PM
Counter freeze at startup.PNG (379.12K)
Posted 02 April 2013 - 01:15 PM
function ins_iTimer()
{
position="timers.js";
whatfunc="ins_iTimer()";
var timerID=null;
var txt="";
var now=new Date();
var nowSecs=(now.getHours()*60*60) + (now.getMinutes()*60) + now.getSeconds();
var elapsedSecs=nowSecs - ins_startSecs;
var hours=Math.floor(elapsedSecs/3600);
elapsedSecs=elapsedSecs - (hours*3600);
var minutes=Math.floor(elapsedSecs/60);
elapsedSecs=elapsedSecs - (minutes*60);
var seconds=elapsedSecs;
txt=((hours < 10) ? "0" : "") + hours;
txt += ((minutes < 10) ? ":0" : ":") + minutes;
txt += ((seconds < 10) ? ":0" : ":") + seconds;
document.getElementById("TimerDisplay").innerHTML=txt;
timerID=setTimeout("ins_iTimer()",1000); // Update display
}
This post has been edited by myselfidem: 04 April 2013 - 09:11 AM
Posted 03 April 2013 - 12:13 AM
var minutes=Math.floor(elapsedSecs/60); elapsedSecs=elapsedSecs - (minutes*60); var seconds=elapsedSecs;
var minutes=Math.floor(elapsedSecs/60); var seconds=elapsedSecs - (minutes*60);
var txt="";
txt=((hours < 10) ? "0" : "") + hours;
var txt=((hours < 10) ? "0" : "") + hours;
var timerID=null
timerID=setTimeout("ins_iTimer()",1000); // Update display
var timerID=setTimeout("ins_iTimer()",1000); // Update display
var nowSecs=(now.getHours()*60*60) + (now.getMinutes()*60) + now.getSeconds(); var elapsedSecs=nowSecs - ins_startSecs;
var elapsedSecs=((now.getHours()*60*60) + (now.getMinutes()*60) + now.getSeconds()) - ins_startSecs;
txt=((hours < 10) ? "0" : "") + hours;
txt += ((minutes < 10) ? ":0" : ":") + minutes;
txt += ((seconds < 10) ? ":0" : ":") + seconds;
document.getElementById("TimerDisplay").innerHTML=txt;
document.getElementById("TimerDisplay").innerHTML=((hours < 10) ? "0" : "") + hours + ((minutes < 10) ? ":0" : ":") + minutes + ((seconds < 10) ? ":0" : ":") + seconds;
function ins_iTimer()
{
position="timers.js";
whatfunc="ins_iTimer()";
var now=new Date();
var elapsedSecs=((now.getHours()*60*60) + (now.getMinutes()*60) + now.getSeconds()) - ins_startSecs;
var hours=Math.floor(elapsedSecs/3600);
elapsedSecs=elapsedSecs - (hours*3600);
var minutes=Math.floor(elapsedSecs/60);
var seconds=elapsedSecs - (minutes*60);
document.getElementById("TimerDisplay").innerHTML=((hours < 10) ? "0" : "") + hours + ((minutes < 10) ? ":0" : ":") + minutes + ((seconds < 10) ? ":0" : ":") + seconds;
var timerID=setTimeout("ins_iTimer()",1000); // Update display
}
This post has been edited by bphlpt: 03 April 2013 - 12:55 AM
Posted 03 April 2013 - 05:30 AM
WriteRegKey("HKEY_CURRENT_USER\\Software\\Microsoft\\Internet Explorer\\Download\\RunInvalidSignatures","dword:00000001","REG_DWORD");
WriteRegKey("HKEY_CURRENT_USER\\Software\\Microsoft\\Internet Explorer\\Download\\RunInvalidSignatures",1,"REG_DWORD");
WriteRegKey("HKEY_CURRENT_USER\\Software\\Microsoft\\Internet Explorer\\Download\\RunInvalidSignatures",0,"REG_DWORD");
Posted 05 April 2013 - 11:57 AM
myselfidem, on 02 April 2013 - 01:15 PM, said:
Posted 05 April 2013 - 12:05 PM
This post has been edited by myselfidem: 05 April 2013 - 01:10 PM
Posted 05 April 2013 - 01:31 PM
Posted 05 April 2013 - 01:41 PM
Posted 05 April 2013 - 02:14 PM
Posted 05 April 2013 - 04:13 PM
Posted 05 April 2013 - 11:43 PM
This post has been edited by Kelsenellenelvian: 05 April 2013 - 11:47 PM
Posted 06 April 2013 - 02:03 AM
Posted 06 May 2013 - 04:32 AM
cmds[pn]=[' "%wpipath%\\PathToExe\\MainExe.exe" /s /v/qn',
'{CMD} IF EXIST "%wpipath%\\PathToExe\\ExeFile.exe" start "Title" /WAIT "%wpipath%\\PathToExe\\ExeFile.exe" /s /v/qn'];
cond[pn]=['FileExists("%wpipath%\\PathToExe\\MainExe.exe")'];
case 'CMD':
cmd="CMD /C " + cmd;
fsoCmd=true;
break;
CommandsMenuBar.addNewChild("cmd_dos2", 11, "dos_cmd", "Cmd", false, "", "");
case 'dos_cmd':
HandleCommandsSelectionMenu("{CMD} ");
break;