Content Type
Profiles
Forums
Events
Everything posted by MCT
-
i wasnt being hard on u, i was telling u that ripping someone elses work isnt a nice thing 2 do.. anyone can use switches, but as u said, u TOOK them from autopatcher's database & made them 2 your own, thus ripping
-
Spanish Keyboard with English Language
MCT replied to salawinder's topic in Unattended Windows 2000/XP/2003
u can do it by the setup manager utility in the deploy.cab file, where ref.chm is ( http://unattended.msfn.org ) if its what im thinkin u can hope it helps -
hi try this download spyware blaster (make sure your pc is free of all spyware & adware before install) enable all protections then, goto start > run > services.msc go down 2 Messenger service, double click it, change the startup type 2 disable Note: This doesnt stop MSN Messenger or any other messenger program from working, it ONLY stops ads also, make sure u dont have anything running on startup thats not recognised by u hope it helps
-
yourwelcome glad it helped
-
u didnt type it like i said expand "%userprofile%\Desktop\NTOSKRNL.EX_" "%userprofile%\Desktop\NTOSKRNL.exe" nothing more nothing less EDIT: by what u posted, it looks like u missed quotes EDIT2: the size is correct, because the other file contains larger images, u can also open the file with an extracting program, like powerarchiver, 2 extract the file, but this is easier regards
-
this just recently started 2 happen, ive noticed my username is now administrator.MCT_Home_PC anyone know why? is it because of cmdlines.txt ? thats 1 of the recent things i added 2 my unattended install also.. where are control panel icons kept i wanna change the mouse & keyboard icons [FIXED] found them in main.cpl if anyone is interested thanks
-
hi, goto search @ the top, make sure u choose "Any Date" for the time period 2 search in, as your search try using "Recovery" or maybe "Recovery Console" i think someone said its something 2 do with winnt.sif file regards
-
i forgot 2 add, just overwrite all existances of it with the original 1 (the 1 just extracted) should only be in WINDOWS\System32 EDIT: instead of always replacing your ntoskrnl.exe with a "patched" 1, do this copy the custom kernel to the system32 folder inside windows directory rename the custom ntoskrnl.exe to mykernel.exe or whatever name u want edit boot.ini the line with your OS on it, put this /kernel=mykernel.exe it will read [operating systems] multi(0)disk(0)rdisk(0)partition(1)\WINDOWS="Microsoft Windows XP Professional" /fastdetect /kernel=mykernel.exe regards
-
hi look on your original XP CD , its there NTOSKRNL.EX_ copy it 2 your desktop, goto start > run > cmd type: expand "%userprofile%\Desktop\NTOSKRNL.EX_" "%userprofile%\Desktop\NTOSKRNL.exe"
-
that only shuts them off, so they arent being applied 2 your cd, but sounds like hes trying 2 remove them
-
Re: Silent Install of Adobe Arobat 6 Pro Full
MCT replied to mrpitman27's topic in Application Installs
look in the application switches thread regards -
but, when u think about it, its still stealing
-
use nlite it removes the games , make sure u use it only on a clean version of xp/2k/2k3 so its not missing files or giving u errors regards
-
did u get flish & raptor's (creator's of autopatcher) permission 2 rip there database?
-
New MSMSGS5.exe are you all using it?
MCT replied to DisabledTrucker's topic in Unattended Windows 2000/XP/2003
personally i dont like windows messenger, i use MSN Messenger regards -
how 2 replace reg values via command line?
MCT replied to MCT's topic in Unattended Windows 2000/XP/2003
that was easy enough i think i got it, thanks 2 all that replied -
how 2 replace reg values via command line?
MCT replied to MCT's topic in Unattended Windows 2000/XP/2003
i never thought of that that could be a good possibility, do u know of a guide or something i can refrence off of 2 learn vbs ? ive never done it b4 EDIT: found one, http://msdn.microsoft.com/library/default....mthsendkeys.asp if anyone wants it thanks -
how 2 replace reg values via command line?
MCT replied to MCT's topic in Unattended Windows 2000/XP/2003
i think we're on 2 sepeate paths now :S lol im lost instead of having :Foobare Regedit /S %CDROM%\Install\Reg\foobar2000e.reg it would mod the original .reg file & replace C: with E: anything that will do that? -
how 2 replace reg values via command line?
MCT replied to MCT's topic in Unattended Windows 2000/XP/2003
ill look into reg.exe thanks -
im wanting 2 do this, so i dont have 20 copies of the same .reg file with only the drive letter different.. anyone know a program or something i can use 2 replace example C: with D: ? thanks @ECHO OFF IF EXIST C:\WIN51 set CDROM=C: IF EXIST D:\WIN51 set CDROM=D: IF EXIST E:\WIN51 set CDROM=E: IF EXIST F:\WIN51 set CDROM=F: IF EXIST G:\WIN51 set CDROM=G: IF EXIST H:\WIN51 set CDROM=H: IF EXIST I:\WIN51 set CDROM=I: IF EXIST J:\WIN51 set CDROM=J: IF EXIST K:\WIN51 set CDROM=K: IF EXIST L:\WIN51 set CDROM=L: IF EXIST M:\WIN51 set CDROM=M: IF EXIST N:\WIN51 set CDROM=N: IF EXIST O:\WIN51 set CDROM=O: IF EXIST P:\WIN51 set CDROM=P: IF EXIST Q:\WIN51 set CDROM=Q: IF EXIST R:\WIN51 set CDROM=R: IF EXIST S:\WIN51 set CDROM=S: IF EXIST T:\WIN51 set CDROM=T: IF EXIST U:\WIN51 set CDROM=U: IF EXIST V:\WIN51 set CDROM=V: IF EXIST W:\WIN51 set CDROM=W: IF EXIST X:\WIN51 set CDROM=X: IF EXIST Y:\WIN51 set CDROM=Y: IF EXIST Z:\WIN51 set CDROM=Z: mkdir "%programfiles%\Foobar2000" mkdir "%programfiles%\Foobar2000\Components" mkdir "%programfiles%\Foobar2000\Icons" mkdir "%AllUsersProfile%\Start Menu\Programs\Foobar2000" xcopy "%CDROM%\Install\Apps\FooBar2000\*.*" "%programfiles%\foobar2000" /Y xcopy "%CDROM%\Install\Apps\FooBar2000\Components\*.*" "%programfiles%\foobar2000\Components" /Y xcopy "%CDROM%\Install\Apps\FooBar2000\Icons\*.*" "%programfiles%\foobar2000\Icons" /Y shortcut.exe /f:"%ALLUSERSPROFILE%\Start Menu\Programs\foobar2000\Foobar2000.lnk" /a:c /t:"\Program Files\foobar2000\foobar2000.exe" shortcut.exe /f:"%ALLUSERSPROFILE%\Start Menu\Programs\foobar2000\uninstall.lnk" /a:c /t:"\Program Files\foobar2000\uninstall.exe" shortcut.exe /f:"%ALLUSERSPROFILE%\Start Menu\Programs\foobar2000\FooAssoc.lnk" /a:c /t:"\Program Files\foobar2000\fooassoc.exe" IF EXIST "a:\program files\Foobar2000\Foobar2000.exe" GOTO Foobara IF EXIST "b:\program files\Foobar2000\Foobar2000.exe" GOTO Foobarb IF EXIST "c:\program files\Foobar2000\Foobar2000.exe" GOTO Foobarc IF EXIST "d:\program files\Foobar2000\Foobar2000.exe" GOTO Foobard IF EXIST "e:\program files\Foobar2000\Foobar2000.exe" GOTO Foobare IF EXIST "f:\program files\Foobar2000\Foobar2000.exe" GOTO Foobarf IF EXIST "g:\program files\Foobar2000\Foobar2000.exe" GOTO Foobarg IF EXIST "h:\program files\Foobar2000\Foobar2000.exe" GOTO Foobarh IF EXIST "i:\program files\Foobar2000\Foobar2000.exe" GOTO Foobari IF EXIST "j:\program files\Foobar2000\Foobar2000.exe" GOTO Foobarj IF EXIST "k:\program files\Foobar2000\Foobar2000.exe" GOTO Foobark IF EXIST "l:\program files\Foobar2000\Foobar2000.exe" GOTO Foobarl IF EXIST "m:\program files\Foobar2000\Foobar2000.exe" GOTO Foobarm IF EXIST "n:\program files\Foobar2000\Foobar2000.exe" GOTO Foobarn IF EXIST "o:\program files\Foobar2000\Foobar2000.exe" GOTO Foobaro IF EXIST "p:\program files\Foobar2000\Foobar2000.exe" GOTO Foobarp IF EXIST "q:\program files\Foobar2000\Foobar2000.exe" GOTO Foobarq IF EXIST "r:\program files\Foobar2000\Foobar2000.exe" GOTO Foobarr IF EXIST "s:\program files\Foobar2000\Foobar2000.exe" GOTO Foobars IF EXIST "t:\program files\Foobar2000\Foobar2000.exe" GOTO Foobart IF EXIST "u:\program files\Foobar2000\Foobar2000.exe" GOTO Foobaru IF EXIST "v:\program files\Foobar2000\Foobar2000.exe" GOTO Foobarv IF EXIST "w:\program files\Foobar2000\Foobar2000.exe" GOTO Foobarw IF EXIST "x:\program files\Foobar2000\Foobar2000.exe" GOTO Foobarx IF EXIST "y:\program files\Foobar2000\Foobar2000.exe" GOTO Foobary IF EXIST "z:\program files\Foobar2000\Foobar2000.exe" GOTO Foobarz GOTO END :Foobara Regedit /S %CDROM%\Install\Reg\foobar2000a.reg GOTO END :Foobarb Regedit /S %CDROM%\Install\Reg\foobar2000b.reg GOTO END :Foobarc Regedit /S %CDROM%\Install\Reg\foobar2000d.reg GOTO END :Foobare Regedit /S %CDROM%\Install\Reg\foobar2000e.reg GOTO END :Foobarf Regedit /S %CDROM%\Install\Reg\foobar2000f.reg GOTO END :Foobarg Regedit /S %CDROM%\Install\Reg\foobar2000g.reg GOTO END :Foobarh Regedit /S %CDROM%\Install\Reg\foobar2000h.reg GOTO END :Foobari Regedit /S %CDROM%\Install\Reg\foobar2000i.reg GOTO END :Foobarj Regedit /S %CDROM%\Install\Reg\foobar2000j.reg GOTO END :Foobark Regedit /S %CDROM%\Install\Reg\foobar2000k.reg GOTO END :Foobarl Regedit /S %CDROM%\Install\Reg\foobar2000l.reg GOTO END :Foobarm Regedit /S %CDROM%\Install\Reg\foobar2000m.reg GOTO END :Foobarn Regedit /S %CDROM%\Install\Reg\foobar2000n.reg GOTO END :Foobaro Regedit /S %CDROM%\Install\Reg\foobar2000o.reg GOTO END :Foobarp Regedit /S %CDROM%\Install\Reg\foobar2000p.reg GOTO END :Foobarq Regedit /S %CDROM%\Install\Reg\foobar2000q.reg GOTO END :Foobarr Regedit /S %CDROM%\Install\Reg\foobar2000r.reg GOTO END :Foobars Regedit /S %CDROM%\Install\Reg\foobar2000s.reg GOTO END :Foobart Regedit /S %CDROM%\Install\Reg\foobar2000t.reg GOTO END :Foobaru Regedit /S %CDROM%\Install\Reg\foobar2000u.reg GOTO END :Foobarv Regedit /S %CDROM%\Install\Reg\foobar2000v.reg GOTO END :Foobarw Regedit /S %CDROM%\Install\Reg\foobar2000w.reg GOTO END :Foobarx Regedit /S %CDROM%\Install\Reg\foobar2000x.reg GOTO END :Foobary Regedit /S %CDROM%\Install\Reg\foobar2000y.reg GOTO END :Foobarz Regedit /S %CDROM%\Install\Reg\foobar2000z.reg GOTO END :END
-
i think theres something in the registry that sets the sound (i maybe wrong) but just modify that file, regards
-
hi. in both cases i think u will have 2 register the files, just type Regsvr32 "%windir%\filename.dll" 2 register them regards
-
control panel > system > hardware tab > device manager > IDE ATA controllers regards
-
i use guiredraw that works 4 me correctly not the same as transparent, but it works
-
do u have the oempreinstall=yes in your winnt.sif file?