Joined
·
1 Posts
I am trying to create something that will allow me less time to insert OEM data onto the computers I build. I have sort of done it via cmd prompt but there are some things that I don't know how to do. Here is my code so far
I am not sure if this way is good or bad. All I do is web stuff so this is new to me. Basically for XP I am inserting the .ini file this way, but I also need to move an image to the same folder and if possible prompt the user that the process is finished. Now all this has to be done via a jump drive(preferably). I can manage with a cd but it is easier in my opinion to edit data from that jump drive then to burn another cd.
Any help with this would be great.
Code:
cd C:\WINDOWS\system32
echo [General]>>test.ini
echo Manufacturer=GCNCS>>test.ini
echo [Support Information]>>test.ini
echo Line1=Phone +1 (228) 588-3588>>test.ini
echo Line2=Email [email protected]>>test.ini
echo Line3=Urlhttp://www.gcncs.net>>test.ini
exit
Any help with this would be great.