Jump to content

Willing to pay


Recommended Posts

remember me? :hello:

after my last attempt i had to give up :(

I would like to pay for somone to do the following for me:-

I can made an unattended XP cd fine by myself and slipstream SP2 and sata drivers

however i simply can't get the hang of batch files :wacko:

I would like to pay (yes pay) someone to make the batch files to install the programs i would like to use (about 15 programs i think)

INFACT to be more to the point i would like someone to create a zip file containing all the folders, sif and batch files i would require. i would then add the sp2xp cd to the correct directory.

I would also like to change the default wallpapers and boot screen if possible?

What would be the going rate to do this for me?

Would pay via paypal and supply my own serial numbers to the person willing to do this for me

:thumbup

Link to comment
Share on other sites


before you realy give up, look at this program: RunOnceEx.cmd creator. This program does all the hard work for you, and will write one batchfile. then look at this page wich will explain where to place the files and what to do with them. if you then don't understand something, come back and feel free to ask. that's what we are here for, but keep your money in your pocket

Link to comment
Share on other sites

Also this is against the rules I believe. So just give the links a shot and then use the forums as a tool. People are going to be more than willing to help you out.

//EDIT//

Ok so it is not stated in the rules, but still it is a waste of money. So just read up and give it a shot. Feel free to ask.

Link to comment
Share on other sites

This is what my little cmd can do it

I will be adding more user input points for a total of 10 apllication to install.

The color area are

Title

Application Directory

The App Name and switches

REG ADD %KEY%\A111 /VE /D "111"/f

REG ADD %KEY%\A111 /V 1 /D "%CDROM%Apps\112\113"/f

echo off 

IF EXIST C:\SETUP.exe set CDROM=C:
IF EXIST D:\SETUP.exe set CDROM=D:
IF EXIST C:\SETUP.exe set CDROM=E:
IF EXIST F:\SETUP.exe set CDROM=F:
IF EXIST G:\SETUP.exe set CDROM=G:
IF EXIST H:\SETUP.exe set CDROM=H:
IF EXIST I:\SETUP.exe set CDROM=I:
IF EXIST J:\SETUP.exe set CDROM=J:
IF EXIST K:\SETUP.exe set CDROM=K:
IF EXIST L:\SETUP.exe set CDROM=L:
IF EXIST M:\SETUP.exe set CDROM=M:
IF EXIST N:\SETUP.exe set CDROM=N:
IF EXIST O:\SETUP.exe set CDROM=O:
IF EXIST P:\SETUP.exe set CDROM=P:
IF EXIST Q:\SETUP.exe set CDROM=Q:
IF EXIST R:\SETUP.exe set CDROM=R:
IF EXIST S:\SETUP.exe set CDROM=S:
IF EXIST T:\SETUP.exe set CDROM=T:
IF EXIST U:\SETUP.exe set CDROM=U:
IF EXIST V:\SETUP.exe set CDROM=V:
IF EXIST W:\SETUP.exe set CDROM=W:
IF EXIST X:\SETUP.exe set CDROM=X:
IF EXIST Y:\SETUP.exe set CDROM=Y:
IF EXIST Z:\SETUP.exe set CDROM=Z:

SET KEY=HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnceEx

REG ADD %KEY% /V TITLE /D "The Install Section"/f

REG ADD %KEY%\000 /VE /D "Preparing Installation..."/f

REG ADD %KEY%\A111 /VE /D "111"/f
REG ADD %KEY%\A111 /V 1 /D "%CDROM%Apps\112\113"/f

REG ADD %KEY%\A221 /VE /D "211"/f
REG ADD %KEY%\A221 /V 1 /D "%CDROM%Apps\222\223"/f

REG ADD %KEY%\A331 /VE /D "311"/f
REG ADD %KEY%\A331 /V 1 /D "%CDROM%Apps\322\333"/f

REG ADD %KEY%\A331 /VE /D "411"/f
REG ADD %KEY%\A331 /V 1 /D "%CDROM%Apps\412\413"/f


REG ADD %KEY%\470 /VE /D "Preparing Final Check ..."/f
REG ADD %KEY%\470 /V 1 /D "%systemdrive%\WINDOWS\AppLog\cleanup.cmd"/f  

IF EXIST C:\SETUP.exe set CDROM=E: Fixed so is the download

Hope this helps

Edited by gunsmokingman
Link to comment
Share on other sites

old man

what are the programs that you want installed?

as for the wallpaper it is very simple.

just grab your own wallpaper, rename it to bliss.jpg

then go to command window.

enter this command -> makecab bliss.jpg you will end up with bliss.jp_

move this file to your I386 installer folder.

Link to comment
Share on other sites

@Old-man

I do indeed recall reading the earlier thread, sounds like you have given it an honest effort and then some. Go ahead and PM me with a list of the programs you would like installed. No need to pay ME, but if you would like to make a meager donation to defer costs of my classroom supply list (yes, it comes out of my pocket) as the new school year kicks in, that would be cool but not necessary. Or maybe someone has beaten me to it? :lol: Hope the rest of you do not mind, but this sounds like a win-win situation.

Link to comment
Share on other sites

no missed that

thanks I could not see it until you pointed it out

:thumbup

ECHO echo off >> %systemdrive%\RunOnceEx.cmd

echo. >> %systemdrive%\RunOnceEx.cmd

ECHO IF EXIST C:\SETUP.exe set CDROM=C: >> %systemdrive%\RunOnceEx.cmd

ECHO IF EXIST D:\SETUP.exe set CDROM=D: >> %systemdrive%\RunOnceEx.cmd

ECHO IF EXIST E:\SETUP.exe set CDROM=E: >> %systemdrive%\RunOnceEx.cmd

ECHO IF EXIST F:\SETUP.exe set CDROM=F: >> %systemdrive%\RunOnceEx.cmd

ECHO IF EXIST G:\SETUP.exe set CDROM=G: >> %systemdrive%\RunOnceEx.cmd

ECHO IF EXIST H:\SETUP.exe set CDROM=H: >> %systemdrive%\RunOnceEx.cmd

ECHO IF EXIST I:\SETUP.exe set CDROM=I: >> %systemdrive%\RunOnceEx.cmd

ECHO IF EXIST J:\SETUP.exe set CDROM=J: >> %systemdrive%\RunOnceEx.cmd

ECHO IF EXIST K:\SETUP.exe set CDROM=K: >> %systemdrive%\RunOnceEx.cmd

ECHO IF EXIST L:\SETUP.exe set CDROM=L: >> %systemdrive%\RunOnceEx.cmd

ECHO IF EXIST M:\SETUP.exe set CDROM=M: >> %systemdrive%\RunOnceEx.cmd

ECHO IF EXIST N:\SETUP.exe set CDROM=N: >> %systemdrive%\RunOnceEx.cmd

ECHO IF EXIST O:\SETUP.exe set CDROM=O: >> %systemdrive%\RunOnceEx.cmd

ECHO IF EXIST P:\SETUP.exe set CDROM=P: >> %systemdrive%\RunOnceEx.cmd

ECHO IF EXIST Q:\SETUP.exe set CDROM=Q: >> %systemdrive%\RunOnceEx.cmd

ECHO IF EXIST R:\SETUP.exe set CDROM=R: >> %systemdrive%\RunOnceEx.cmd

ECHO IF EXIST S:\SETUP.exe set CDROM=S: >> %systemdrive%\RunOnceEx.cmd

ECHO IF EXIST T:\SETUP.exe set CDROM=T: >> %systemdrive%\RunOnceEx.cmd

ECHO IF EXIST U:\SETUP.exe set CDROM=U: >> %systemdrive%\RunOnceEx.cmd

ECHO IF EXIST V:\SETUP.exe set CDROM=V: >> %systemdrive%\RunOnceEx.cmd

ECHO IF EXIST W:\SETUP.exe set CDROM=W: >> %systemdrive%\RunOnceEx.cmd

ECHO IF EXIST X:\SETUP.exe set CDROM=X: >> %systemdrive%\RunOnceEx.cmd

ECHO IF EXIST Y:\SETUP.exe set CDROM=Y: >> %systemdrive%\RunOnceEx.cmd

ECHO IF EXIST Z:\SETUP.exe set CDROM=Z: >> %systemdrive%\RunOnceEx.cmd

echo. >> %systemdrive%\RunOnceEx.cmd

echo SET KEY=HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnceEx >> %systemdrive%\RunOnceEx.cmd

echo. >> %systemdrive%\RunOnceEx.cmd

ECHO REG ADD %%KEY%% /V TITLE /D "The Install Section"/f >> %systemdrive%\RunOnceEx.cmd >> %systemdrive%\RunOnceEx.cmd

echo. >> %systemdrive%\RunOnceEx.cmd

ECHO REG ADD %%KEY%%\000 /VE /D "Preparing Installation..."/f >> %systemdrive%\RunOnceEx.cmd

echo. >> %systemdrive%\RunOnceEx.cmd

ECHO REG ADD %%KEY%%\A111 /VE /D "%A111%"/f >> %systemdrive%\RunOnceEx.cmd

ECHO REG ADD %%KEY%%\A111 /V 1 /D "%%CDROM%%Apps\%A112%\%A113%"/f >> %systemdrive%\RunOnceEx.cmd

echo. >> %systemdrive%\RunOnceEx.cmd

ECHO REG ADD %%KEY%%\A221 /VE /D "%A221%"/f >> %systemdrive%\RunOnceEx.cmd

ECHO REG ADD %%KEY%%\A221 /V 1 /D "%%CDROM%%Apps\%A222%\%A223%"/f >> %systemdrive%\RunOnceEx.cmd

echo. >> %systemdrive%\RunOnceEx.cmd

ECHO REG ADD %%KEY%%\A331 /VE /D "%A331%"/f >> %systemdrive%\RunOnceEx.cmd

ECHO REG ADD %%KEY%%\A331 /V 1 /D "%%CDROM%%Apps\%A332%\%A333%"/f >> %systemdrive%\RunOnceEx.cmd

echo. >> %systemdrive%\RunOnceEx.cmd

ECHO REG ADD %%KEY%%\A331 /VE /D "%A411%"/f >> %systemdrive%\RunOnceEx.cmd

ECHO REG ADD %%KEY%%\A331 /V 1 /D "%%CDROM%%Apps\%A412%\%A413%"/f >> %systemdrive%\RunOnceEx.cmd

echo. >> %systemdrive%\RunOnceEx.cmd

SET KEY=HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnceEx >> %systemdrive%\RunOnceEx.cmd

echo. >> %systemdrive%\RunOnceEx.cmd

ECHO REG ADD %%KEY%%\470 /VE /D "Preparing Final Check ..."/f >> %systemdrive%\RunOnceEx.cmd

ECHO REG ADD %%KEY%%\470 /V 1 /D "%%systemdrive%%\WINDOWS\AppLog\cleanup.cmd"/f >> %systemdrive%\RunOnceEx.cmd

echo. >> %systemdrive%\RunOnceEx.cmd

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...