
Δ
Friday, July 29th, 2011

Δ
Reg Key - Add MSI-BAT-VBS to Context Menu
How to add runas to the context menu for scripting usage
Save as .reg
file, then import into your registry.
reg key

REGEDIT4
[HKEY_CLASSES_ROOT\batfile\shell\runas\command] @="\"%1\" %*"
[HKEY_CLASSES_ROOT\VBEFile\shell\runas\command] @="\"%1\" %*"
[HKEY_CLASSES_ROOT\VBSFile\shell\runas\command] @="\"%1\" %*"
[HKEY_CLASSES_ROOT\Msi.Package\shell\runas\command] @="msiexec /i \"%1\" "

|
[email me]

Δ
Tuesday, July 26th, 2011

Δ
Add Firewall Exception
How to add exceptions to the firewall
Script

netsh firewall add allowedprogram C:\Progra~2\YourFolder\YourProgram.exe "Your
Description" ENABLE

|
[email me]

Δ
Monday, July 25th, 2011

Δ
Control Marquee
How to control all aspects of marquee
Demo:

Script

<HTML> <HEAD> <TITLE>MARQUEE Object Properties</TITLE> <SCRIPT
LANGUAGE="JavaScript"> // one function does all! function
setMARQUEEAttr(select) { if (document.all && document.all.myMARQUEE) { var
choice = select.options[select.selectedIndex].value if (choice) {
document.all.myMARQUEE.setAttribute(select.name, choice) } } }
</SCRIPT> </HEAD> <BODY> <H1>MARQUEE Object Properties</H1> <BR>
<HR> <MARQUEE ID="myMARQUEE" WIDTH=400 HEIGHT=24>This is the MARQUEE element
object you will be controlling.</MARQUEE> <FORM> <INPUT TYPE="button"
VALUE="Start Marquee" onClick="document.all.myMARQUEE.start()"> <INPUT
TYPE="button" VALUE="Stop Marquee" onClick="document.all.myMARQUEE.stop()">
<BR> Select a behavior: <SELECT NAME="behavior"
onChange="setMARQUEEAttr(this)"> <OPTION></OPTION> <OPTION
VALUE="alternate">Alternate</OPTION> <OPTION VALUE="scroll">Scroll</OPTION>
<OPTION VALUE="slide">Slide</OPTION> </SELECT> <BR> Select a background
color: <SELECT NAME="bgColor" onChange="setMARQUEEAttr(this)">
<OPTION></OPTION> <OPTION VALUE="red">Red</OPTION> <OPTION
VALUE="green">Green</OPTION> <OPTION VALUE="blue">Blue</OPTION> <OPTION
VALUE="#FA8072">Some Hex Triplet Value</OPTION> </SELECT> <BR> Select a
scrolling direction: <SELECT NAME="direction"
onChange="setMARQUEEAttr(this)"> <OPTION></OPTION> <OPTION
VALUE="left">Left</OPTION> <OPTION VALUE="right">Right</OPTION> <OPTION
VALUE="up">Up</OPTION> <OPTION VALUE="down">Down</OPTION> </SELECT>
<BR> Select a scroll amount: <SELECT NAME="scrollAmount"
onChange="setMARQUEEAttr(this)"> <OPTION></OPTION> <OPTION
VALUE=4>4</OPTION> <OPTION VALUE=6>6 (Default)</OPTION> <OPTION
VALUE=10>10</OPTION> </SELECT> <BR> Select a scroll delay: <SELECT
NAME="scrollDelay" onChange="setMARQUEEAttr(this)"> <OPTION></OPTION>
<OPTION VALUE=50>Short</OPTION> <OPTION VALUE=85>Normal</OPTION> <OPTION
VALUE=125>Long</OPTION> </SELECT> </BODY> </HTML>

|
[email me]

Δ
Friday, July 22nd, 2011

Δ
Encryptor - updated
This is my encryptor app updated with save feature and clear text area feature
download
files
Demo:

Script

<!-- ----- ExeScript Options Begin ----- ScriptType: window,invoker
DestDirectory: %temp% Icon: C:\Windows\System32\shell32.dll,132 File:
encryptor.gif OutputFile:
encryptor.exe CompanyName: Commlink Industries
FileDescription: Encryptor FileVersion: 1.0.0.1 LegalCopyright: Commlink
Industries ProductName: Encryptor ProductVersion: 1.0.0.1 -----
ExeScript Options End ----- -->
<!--
============================================================== Name:
Encryptor Author: Eddie Jackson Contact: MrNetTek2000@yahoo.com Created
on: 07/21/2011 Modified: Modified by: Description: General use
encryption for HTML/HTA
============================================================== --> <HTML>
<HEAD> <title>HTML/HTA Encryptor</title> <HTA:APPLICATION ID="encrypt"
BORDER="thin" INNERBORDER="yes" SCROLL="no" CAPTION="yes"
SHOWINTASKBAR="no" SINGLEINSTANCE="yes" SYSMENU="yes" SELECTION="no"
WINDOWSTATE="normal" MinimizeButton="yes" maximizeButton="no"
>
</head>
<head> <meta http-equiv="Content-Language" content="en-gb"> <meta
http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>HTML/HTA Encrypter</title> <meta name="keywords" content="HTML
Encrypter"> <meta name="description" content="Hide your HTML source code.">
<meta property="og:image" content="" /> <style type="text/css">
.auto-style5 { font-family: Arial, Helvetica, sans-serif; font-size:
medium; } .auto-style8 { margin-left: 0px; } .auto-style9 {
border: 1px solid #000000; border-collapse: collapse; } .auto-style10 {
border-color: #000000; border-width: 0; background-color: #000000; }
</style> </head>
<body style="width: 905px">
<span
class="auto-style28"><br>1. Insert your HTML/HTA you want to encrypt<br><br>2.
Click 'Encrypt Code'<br><br>3. Click 'Copy Code' to copy encrypted code to
the clipboard</span><br><br>
<body bgcolor=black topmargin="0"
style="width: 905px"> <tr>
<td valign="top" style="height: 601; width:
20px;">
<td style="height: 458px; width: 930px"> <script
language="JavaScript">
function doencrypt(theform) { if
(theform.code.value == "") { alert("No HTML/HTA code to encrypt");
return false; } else { enctext=encrypt(theform.code.value);
codetocopy="<Script Language='Javascript'>\n"; codetocopy+="<!-- HTML/HTA
Encryption -->\n"; codetocopy+="<!--\n";
codetocopy+="document.write(unescape('"+enctext+"'));\n";
codetocopy+="//-->\n"; codetocopy+="</Script\>";
theform.ecode.value=codetocopy; theform.sac.disabled = false; } return
false; } function sandc(thisform) { thisform.ecode.focus();
thisform.ecode.select(); copytext=thisform.ecode.createTextRange();
copytext.execCommand("Copy"); alert("Copied the Encrypted Code to the
clipboard, you may now paste this into your compiler."); } function
encrypt(tx) { var hex=''; var i; for (i=0; i<tx.length; i++) { hex
+= '%'+hexfromdec(tx.charCodeAt(i)) } return hex; } function
hexfromdec(num) { if (num > 65535) { return ("err!") } first =
Math.round(num/4096 - .5); temp1 = num - first * 4096; second =
Math.round(temp1/256 -.5); temp2 = temp1 - second * 256; third =
Math.round(temp2/16 - .5); fourth = temp2 - third * 16; return
(""+getletter(third)+getletter(fourth)); } function getletter(num) {
if (num < 10) { return num; } else { if (num == 10) { return "A"
} if (num == 11) { return "B" } if (num == 12) { return "C" } if (num == 13) {
return "D" } if (num == 14) { return "E" } if (num == 15) { return "F" } } }
function CreateFolder() { var fso_create = new
ActiveXObject("Scripting.FileSystemObject"); var newFolderName =
fso_create.CreateFolder("c:\\temp\\"); }
function WriteToFile()
{ var uniqueID=new Date(); var fso = new
ActiveXObject("Scripting.FileSystemObject");
if
(fso.FolderExists("C:\\Temp")) { //alert ("Folder Exists!");
//document.write(uniqueID.getTime() + " milliseconds since 1970/01/01");
var fso = new ActiveXObject("Scripting.FileSystemObject");
var s1 =
fso.CreateTextFile("C:\\temp\\" + uniqueID.getTime() + "_code.txt", true);
var text=document.getElementById("code").innerText; s1.WriteLine(text);
s1.Close();
var fso = new ActiveXObject("Scripting.FileSystemObject");
var s2 = fso.CreateTextFile("C:\\temp\\" + uniqueID.getTime() + "_ecode.txt",
true); var text=document.getElementById("ecode").innerText;
s2.WriteLine(text); s2.Close();
alert ("Saved to c:\\temp folder!");
}
else
//alert ("Folder does NOT exist!"); var fso_create =
new ActiveXObject("Scripting.FileSystemObject"); var newFolderName =
fso_create.CreateFolder("c:\\temp\\");
//document.write(uniqueID.getTime() + " milliseconds since 1970/01/01");
var fso = new ActiveXObject("Scripting.FileSystemObject");
var s1 =
fso.CreateTextFile("C:\\temp\\" + uniqueID.getTime() + "_code.txt", true);
var text=document.getElementById("code").innerText; s1.WriteLine(text);
s1.Close();
var fso = new ActiveXObject("Scripting.FileSystemObject");
var s2 = fso.CreateTextFile("C:\\temp\\" + uniqueID.getTime() + "_ecode.txt",
true); var text=document.getElementById("ecode").innerText;
s2.WriteLine(text); s2.Close();
alert ("Saved to c:\\temp folder!");
}
</script>
<form name="pageform" onsubmit="return
doencrypt(this);" style="width: 900px">
<td height="91" valign="top"
class="auto-style16" style="width: 900px"> <table width="100%" height="76"
class="auto-style9"> <tr> <td style="height: 226; width: 897;"
class="auto-style21"> <table cellspacing="5" class="auto-style19"
style="width: 100%; height: 209px;"> <tr> <td class="auto-style21"
style="width: 900px; height: 144px;">
<textarea name="code"
style="background-color:#000000; color:#00FF00; width: 900px; height: 198px;";
class="auto-style8" style="width:100%;"></textarea>
<table
align="center" cellpadding="0" cellspacing="0" class="auto-style26"
style="width: 73%; height: 27px"> <tr> <td style="height: 26px"
class="auto-style27">
<input type="submit"
onClick="doencrypt(pageform);" value="Encrypt Code" style="float: left; width:
136px;" class="auto-style5"></td> <td style="height: 26px"
class="auto-style27"> <input type="button" value="Copy Code"
onClick="sandc(pageform);" name="sac" disabled="true" style="float: left;"
class="auto-style5"></td> <td style="height: 26px"> <input type="button"
value="Save Code" onClick="WriteToFile()" name="save" style="float: left; width:
136px;" class="auto-style5"></td> <td style="height: 26px"> <input
type="button" value="Clear Code"
onClick="this.form.elements['ecode'].value='';this.form.elements['code'].value=''""
name="clear style="float: left; width: 136px;" class="auto-style5"></td>
</tr> </table>
<textarea readonly name="ecode"
style="background-color:#000000; color:#00FF00; width: 900px; height: 250px;";
class="auto-style8" style="width:100%"></textarea></td> </tr> </table>
</td> </tr> </table> </td> <tr> <td class="auto-style15" style="height: 229;
width: 956px;"> <table cellspacing="5" class="auto-style10" style="width:
2%; height: 202px;"> <tr> <td style="width: 910px; height: 205px;"
class="auto-style20">
</td> </tr> </table> </td>
</tr> <br> <br>
<script language="vbscript"> on error resume
next Window.ReSizeTo 960,700 </script>
<br><br><br><br>
<style> .auto-style19 { border-color: #000000; border-width: 0;
border-collapse: collapse; /* start opacity settings */
filter:alpha(opacity=85); -moz-opacity:.50; opacity:.50; /* end opacity
settings */ } .auto-style20 { border: 1px solid #000000; }
.auto-style21 { border: 0 solid #000000;
} .auto-style26 {
border-color: #00ff00; border-width: 0;
} .auto-style27 {
text-align: center; } .auto-style28 { color: #FFFF00; font-family:
Arial, Helvetica, sans-serif; font-size: medium; } --> </style>
<script language="JavaScript"> var background = "test_1.gif"; var speed =
200;
browserName = navigator.appName; browserVer =
parseInt(navigator.appVersion);
if (browserName != "Netscape" ||
browserVer >= 4.5) {
function moveback(movert,movedn,hPos,vPos) {
if (arguments[4]) document.body.style.backgroundImage = "url(\"" +
arguments[4] + "\")";
if (arguments[5])
document.body.style.backgroundRepeat = arguments[5]
if (!isNaN(hPos)) {
if ((movert!=0) && (hPos>0)) hPos=-100000 //hPos += movert//this moves to the
fight vPos += movert//this moves up }
document.body.style.backgroundPosition= hPos + " " + vPos if (isNaN(hPos))
hPos = "\"" + hPos + "\"" if (isNaN(vPos)) vPos = "\"" + vPos + "\""
setTimeout("moveback("+movert+","+movedn+","+hPos+","+vPos+")",speed) }
moveback(-1,1,-0,0, background); }
//--> </script>
<body bgcolor=black topmargin="0" style="width: 905px">

|
[email me]

Δ
Tuesday, July 19th, 2011

Δ
Return IP Address by Octet
How to return IP Address by octet
Demo:

Script

@ECHO off Title Administrative IP Address Checker color 0a set
IPAddress= set octet1= set octet2= set octet3= set octet4= set
IPSTR= set MODESTR=
rem set IP Search Variable if exist
c:\progra~1 set IPSTR="IP Address" if exist c:\progra~2 set IPSTR="IPv4
Address"
rem set Mode if exist c:\progra~1 set MODESTR=XP Mode if
exist c:\progra~2 set MODESTR=Windows 7 Mode
Echo %MODESTR%... ping -n
4 127.0.0.1>nul
Echo. rem ipconfig.exe rem ping -n 5 127.0.0.1>nul
cls %windir%\system32\ipconfig.exe>%temp%\ipconfig.txt type
%temp%\ipconfig.txt|findstr /c:%IPSTR%>%temp%\ip.txt type
%temp%\ip.txt|findstr /v "0.0.0.0">%temp%\ip1.txt FOR /F "delims=: tokens=2"
%%I in (%temp%\ip1.txt) DO ECHO %%I>%temp%\justip.txt FOR /F "delims=.
tokens=1" %%A in (%temp%\justip.txt) DO SET octet1=%%A FOR /F "delims=.
tokens=2" %%B in (%temp%\justip.txt) DO SET octet2=%%B FOR /F "delims=.
tokens=3" %%C in (%temp%\justip.txt) DO SET octet3=%%C FOR /F "delims=.
tokens=4" %%D in (%temp%\justip.txt) DO SET octet4=%%D del /q %temp%\ip1.txt
del /q %temp%\ip.txt del /q %temp%\ipconfig.txt del /q %temp%\justip.txt
Set IPAddress=%octet1%.%octet2%.%octet3%.%octet4% ECHO The IP Address is
%IPAddress%...
pause
exit

|
[email me]

Δ
Monday, July 18th, 2011

Δ
Return If Local User Exists
How to return if a user account exists on a machine
Demo:

Script

@ECHO off Title Administrative Account Checker color 0a
rem Net
User TheUserAccountName > %Temp%\account.tmp Net User administrator >
%Temp%\account.tmp
for /F "tokens=1-4" %%A in (%Temp%\account.tmp) do
(set UserAccount=%%A %%B %%C %%D)
If Defined UserAccount goto
AccountExists
If NOT Defined UserAccount goto AccountNotExist
:AccountExists Echo The User account exists... Erase /Q
%Temp%\account.tmp pause Exit
:AccountNotExist Echo The User
account does not exist... Erase /Q %Temp%\account.tmp pause Exit

|
[email me]

Δ
Friday, July 15th, 2011

Δ
Write to File Button
How to create a button that will allow you to write to file
Demo:

Script

<html> <title>Write to File</title> <head> <script
language="javascript"> function WriteToFile() { var fso = new
ActiveXObject("Scripting.FileSystemObject"); var s =
fso.CreateTextFile("C:\\temp\\TheFileNameGoesHere.txt", true); var
text=document.getElementById("TextArea1").innerText; s.WriteLine(text);
s.WriteLine('***********************'); s.Close(); } </script>
</head> <body> <form> <div> <textarea id="TextArea1" height:
style="width: 588px; height: 90px" 90px">Your message goes here</textarea><br />
<input id="Button1" type="button" value="Write" onclick="WriteToFile()"/>
</div> </form> </body> </html>

|
[email me]

Δ
Wednesday, July 13th, 2011

Δ
Hide a Button
How to hide a button
Demo:

Script

<title>Hide Button</title> <FORM> <INPUT ID="button1"
STYLE="position:relative; left:0;" TYPE="button" VALUE="Hide Other Button"
onclick="handleClick()"> <INPUT ID="button2" STYLE="position:relative;
left:150;" TYPE="button" VALUE="Hide Me" onclick="handleClick()"> </FORM>
<SCRIPT LANGUAGE="JavaScript"> <!-- function handleClick() { if
(document.getElementById('button2').style.visibility != "hidden") {
document.getElementById('button2').style.visibility = "hidden";
document.getElementById('button1').value = "Show Other Button"; } else {
document.getElementById('button2').style.visibility = "visible";
document.getElementById('button1').value = "Hide Other Button"; } } //
--> </SCRIPT>

|
[email me]

Δ
Monday, July 11th, 2011

Δ
Launch Survey on Reboot
How to create a shortcut that will launch a survey from survey monkey on reboot
The survey monkey survey is inside the take_survey.hta.
Script

@rem ----- ExeScript Options Begin ----- @rem ScriptType:
console,silent,invoker @rem DestDirectory: %temp% @rem Icon: none @rem
OutputFile: C:\temp\take_survey.exe @rem ----- ExeScript Options End -----
@echo off
rem deletes shortcut if text file exists; used for failsafe
if exist %temp%\take_survey_done.txt ( del /q "%userprofile%\Start
Menu\Programs\Startup\take_survey.lnk" del /q %temp%\take_survey_done.txt
del /q %temp%\take_survey.exe exit /b 0 )
rem creates shortcut
if not exist "%userprofile%\Start Menu\Programs\Startup\take_survey.lnk" (
%temp%\shortcut.exe /f:"%USERPROFILE%\Start
Menu\Programs\startup\take_survey.lnk" /a:c /t:^%temp%^\take_survey.exe exit
/b 0 )
rem launches survey, deletes shortcut if exist
"%temp%\hta_take_survey.exe" ( "%temp%\hta_take_survey.exe"
"%temp%\take_survey.hta" echo done > %temp%\take_survey_done.txt del /q
"%userprofile%\Start Menu\Programs\Startup\take_survey.lnk" del /q
%temp%\take_survey_done.txt del /q %temp%\take_survey.exe exit /b 0 )
exit /b 0

|
[email me]

Δ
Thursday, July 7th, 2011

Δ
Remove/Delete Spaces in Batch File
How to remove spaces from a word, could also be used for a variable
Script

@echo off Title Remove Spaces color 0a
set str= WordWithSpaces
echo."%str%" set str=%str: =% echo."%str%" pause

|
[email me]

Δ
Tuesday, July 5th, 2011

Δ
Stretch Image to Background
How to stretch an image across 100% of the background
download files
Demo:

Script

<html>
<style> body { background-color: black; width: 100%;
height: 100%; position: fixed; left: 0px; top: 0px; z-index: -1;
}
.stretch { width:100%; height:100%; }
.auto-style2 {
border: 1px solid #00ff00; background-color: #000000; }
</style>
<body>
<div id="background"> <img src="test0.gif"
class="stretch" alt="" /> </div>
</html>

|
[email me]

Δ
Friday, July 1st, 2011

Δ
Moving Star Effect
How to create moving stars using 5 gif files
download
files
Demo:

Script

<script language="JavaScript1.2"> //Pre-load your image below! //CHANGE 5
to the number of images listed below grphcs=new Array(5)
//PRELOAD
the involved images (extend or contract variables according to # of images used)
Image0=new Image(); Image0.src=grphcs[0]="Star0.gif" Image1=new Image();
Image1.src=grphcs[1]="Star1.gif" Image2=new Image();
Image2.src=grphcs[2]="Star2.gif" Image3=new Image();
Image3.src=grphcs[3]="Star3.gif" Image4=new Image();
Image4.src=grphcs[4]="Star4.gif"
//SPECIFY number of images to randomly
display concurrently from list above. Less the more efficient Amount=20;
Ypos=new Array(); Xpos=new Array(); Zpos=new Array(); //SpeedX=new
Array(); //SpeedY=new Array(); ScrXpos=new Array(); ScrYpos=new
Array(); Speed=new Array(); Size=new Array(); Step=new Array();
ns=(document.layers)?1:0;
ie=document.all&&navigator.userAgent.indexOf("Opera")==-1
if (ns){ for
(i = 0; i < Amount; i++){ var P=Math.floor(Math.random()*grphcs.length);
rndPic=grphcs[P]; document.write("<LAYER NAME='sn"+i+"' LEFT=0 TOP=0><img
src="+rndPic+"></LAYER>"); } //end for } //end if else if (ie){ //IE
document.write('<div style="position:absolute;top:0px;left:0px"><div
style="position:relative">'); for (i = 0; i < Amount; i++){
document.write('<img id="si'+i+'"
src="'+grphcs[Math.round((i+1)*(grphcs.length-1)/Amount)]+'"style="position:absolute;top:0px;left:0px">');
} document.write('</div></div>'); }
//initialize star properties
if (ie||ns){
WinHeight=(ns)?window.innerHeight-20:window.document.body.clientHeight;
WinWidth=(ns)?window.innerWidth-70:window.document.body.clientWidth; for
(i=0; i < Amount; i++){ Speed[i]=(i+1)*6/Amount+4; //speed range from 4 to 10
Xpos[i] = (Math.random()*WinWidth-WinWidth/2)*(Amount-i/3)/Amount; Ypos[i] =
(Math.random()*WinHeight-WinHeight/2)*(Amount-i/3)/Amount; Zpos[i] =
Math.random()*900*(Amount-i/3)/Amount+100; } }
function fly(){
var WinHeight=(ns)?window.innerHeight-20:window.document.body.clientHeight;
var WinWidth=(ns)?window.innerWidth-70:window.document.body.clientWidth; var
hscrll=(ns)?window.pageYOffset:document.body.scrollTop;
for (i=0; i <
Amount; i++){ Zpos[i]-=Speed[i]; if (ScrXpos[i]>WinWidth || ScrXpos[i]<0
|| ScrYpos[i]>WinHeight || ScrYpos[i]<0 || Zpos[i]<=0) { //generate new stars
Speed[i]=(i+1)*6/Amount+4; //speed range from 4 to 10 Xpos[i] =
(Math.random()*WinWidth-WinWidth/2)*(Amount-i/3)/Amount; Ypos[i] =
(Math.random()*WinHeight-WinHeight/2)*(Amount-i/3)/Amount; Zpos[i] =
Math.random()*900*(Amount-i/3)/Amount+100; }
ScrXpos[i]=Xpos[i]/Zpos[i]*100 + WinWidth/2; ScrYpos[i]=Ypos[i]/Zpos[i]*100 +
WinHeight/2;
if (ns){ document.layers['sn'+i].left=ScrXpos[i];
document.layers['sn'+i].top=ScrYpos[i]+hscrll; } else{ //IE
eval("document.all.si"+i).style.left=ScrXpos[i];
eval("document.all.si"+i).style.top=ScrYpos[i]+hscrll; } } //end for
setTimeout('fly()',20); } //end fly
if (ie||ns) window.onload=fly
//--> </SCRIPT>
<HEAD> <TITLE>Starfield</TITLE> </HEAD> <body
bgcolor="black"> </body> </html>

|
[email me]

Δ
Silent Switches

Adobe Flash Player 10.3.181.34 - install
install_flash_player_10_active_x.msi /QN /norestart /REBOOT=ReallySupress
Adobe Pro X - install
I created mst using Adobe Customization Wizard
Adobe Shockwave -
install
msiexec /i sw_lic_full_installer.msi /qn /norestart sw_lic_full_installer.exe
/S
Citrix Client 12.1 - install CitrixOnlinePluginWeb.exe /silent
Genesys CCPulse 7.5.100.18 - install
setup.exe -s /f1"c:\setup.iss"
Java Client 260 - install
jre-6u26-windows-i586-s.exe /s ADDLOCAL=ALL IEXPLORER=1 REBOOT=Suppress
JAVAUPDATE=0 /l javalog.log
Java Client 260 - uninstall 240 - msiexec /x
{26A24AE4-039D-87B4-2F83216024F0} 250 - msiexec /x
{26A24AE4-039D-87B4-2F83216025FF}
Microsoft
.net 4 Framework - install
dotnetfx40_Full_x86_x64.exe /q /norestart
Microsoft Internet Explorer 8 - install
ie8-windowsxp-x86-enu.exe /quiet /update-no /norestart
Microsoft LivePerson - install
lpsetup.exe /s
Microsoft Office 2010 - install
I created msp using Office Configuration Tool (OCT), copied msp to the Updates
folder
[email me]

|
|
About
I'm a Computer
Systems Engineer
Living and loving life ........................................
Author

|