
evilvoice
MemberContent Type
Profiles
Forums
Events
Everything posted by evilvoice
-
you can not rename msgplus...it must stay msgplus-3.01.exe (or whatever the version is), so do not change the name of the file, or it breaks the installer.
-
Post SP2 gdidettool KB873374, Not Silent
evilvoice replied to TechnoNRG's topic in Unattended Windows 2000/XP/2003
well, this is gonna be a problem, because the gditool is not for your OS if youre running xpsp2...or at least thats what I read...and if you run it without any switches, it will come back and tell you you dont need to install it...so it will always sit in windows update...you need to tell your boss to read the documentation. -
Post SP2 gdidettool KB873374, Not Silent
evilvoice replied to TechnoNRG's topic in Unattended Windows 2000/XP/2003
have you tried /q:a /r:n...or /q /n? -
;----- ;----- Sort Start Menu and Favorites in Alphabetical Order (All Windows) ;----- [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\MenuOrder] should be ;----- ;----- Sort Start Menu and Favorites in Alphabetical Order (All Windows) ;----- [-HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\MenuOrder]
-
Completed XP Setup Screens
evilvoice replied to Aaron's topic in Setup Billboard Screens for Windows
here is one that Ive wanted to do after seeing the end of Steel Angel Kurumi...Ive been trying to get everything perfect for about a week or so...This is not my artwork, it is from the DVD...the text is taken from the beginning of any of the 4 dvd's...I thought it was nice...I suck at figuring out the 5 buttons, but oh well, this is what I have, any suggestions? Had to save as jpg, since I cant upload more than 150K...which would be why the text looks funny. Ive also thought about removing all other text, so that once its done with the first block of text, youll only see the image...any thoughts? Plz use personal webspace or free img host provided by msfn members -
you must have win51, win51ip, and win51ip.sp2 in the root of the cd...ya know, a simple search would have solved this for you, rather than having you rack your brain on what it could be.
-
more is required under version [Version] Signature="$Windows NT$" MajorVersion=5 MinorVersion=1 BuildNumber=2600
-
well, we still dont have a entire reg file, but yea, I would say lock it and start a new one...and in the new one, just reference this one, so it doesnt get lost.
-
Adobe Reader 6.02 silent install
evilvoice replied to DisabledTrucker's topic in Application Installs
the speedup uses the exact same regtweak that has been posted...run reader speedup and try to load journal viewer and see if it works, ill bet it doesnt. -
your email doesnt work...I received a bounceback letter
-
Multiple RunOnceEx Windows for Different Types
evilvoice replied to Ben.Hahlen's topic in Unattended Windows 2000/XP/2003
well, i guess i should come out and say why I called it coolsights method...it was because we were talkin in the post and nologic, I believe, was talking about this other method, so for people who were reading the thread, I referred to it as coolsights method, so they would know which one I was talking about...coolsights vs nologic's...so I guess its my fault it was referred as coolsights method...but in all honesty, I only referred to it that way because I wanted to make sure other knew which version I was talking about. -
HowTo: Unattended Installation using FTP
evilvoice replied to edg21's topic in Unattended Windows 2000/XP/2003
well, this is where i need your help or whoevers...as far as I can see, its now done...I did have to make some changes after posting, but to me, it looks complete...but, I dont know about the cleanup...and also, dont really know if it all flows (ie, if it will work, it should in theory...)...as for the cleanup, there might be some strangling url files somewhere...like in system32 dir...but other than that, I think its done...give it a test, I guess...I would test it, but I dont have a web server up yet....Also, another thing, if using runonceex, most people are gonna have $OEM$...so why not dump devcon and unrar in the system32 folder in there...$$\system32? -
HowTo: Unattended Installation using FTP
evilvoice replied to edg21's topic in Unattended Windows 2000/XP/2003
well, this is what I have so far for the web... @ECHO OFF ECHO. ECHO Setting variables ... :: SET VARIABLES TO REFLECT YOUR SETUP set PAK_DIR=unattend set TOP_DIR=%SYSTEMDRIVE%\install set WEB_SCR=%TOP_DIR%\WEB_SCR.CMD set INSTALL_SCR=%TOP_DIR%\install.cmd set PACK_SCR=commands.txt set TOOL_DIR=%WINDIR%\system32 set APP_DIR=%TOP_DIR%\apps set UPD_DIR=%TOP_DIR%\updates set TWK_DIR=%TOP_DIR%\tweaks set MOD_DIR=%TOP_DIR%\mods set DRV_DIR=%TOP_DIR%\drivers :: CREATING DIRECTORIES FOR PACKAGES ECHO. ECHO Creating directories ... rem md %TOP_DIR% md %APP_DIR% md %UPD_DIR% md %TWK_DIR% md %DRV_DIR% md %MOD_DIR% :WEB_INPUT SET /P WEB_ADDY=[Web Address: (include http://)] ECHO. ECHO You specified: ECHO WEB Address: %WEB_ADDY% :WEB_CONFIRM ECHO. SET /P WEB_CONF=[Is this correct? Y/N:] IF /I "%WEB_CONF%" == "Y" GOTO WEB_EXIST IF /I "%WEB_CONF%" == "N" GOTO WEB_INPUT GOTO WEB_CONFIRM ::END WEB SERVER TESTING ::BEGIN WEB SERVER TESTING :WEB_EXIST ECHO ping web ... PING %WEB_ADDY% ¦ FIND "TTL" >NUL IF ERRORLEVEL 0 GOTO WEB_START IF ERRORLEVEL 1 GOTO WEB_INPUT :WEB_CHOICE ECHO. SET /P WEB_CANC=[Cancel WEB download? Y/N:] IF /I "%WEB_CANC%" == "Y" goto CANCEL IF /I "%WEB_CANC%" == "N" goto WEB_INPUT GOTO WEB_CHOICE ::BEGIN BUILDING WEB SCRIPT :WEB_START ECHO Downloading TOOLS... wget -P%TOOL_DIR%\ %WEB_ADDY%/%PAK_DIR%/tools/url_list.txt wget -P%TOOL_DIR%\ -i%TOOL_DIR%\url_list.txt ECHO Building WEB Script ... >%WEB_SCR% ECHO @ECHO OFF >>%WEB_SCR% ECHO wget -P%APP_DIR%\ %WEB_ADDY%/%PAK_DIR%/apps/url_list.txt >>%WEB_SCR% ECHO wget -P%UPD_DIR%\ %WEB_ADDY%/%PAK_DIR%/updates/url_list.txt >>%WEB_SCR% ECHO wget -P%TWK_DIR%\ %WEB_ADDY%/%PAK_DIR%/tweaks/url_list.txt >>%WEB_SCR% ECHO wget -P%MOD_DIR%\ %WEB_ADDY%/%PAK_DIR%/mods/url_list.txt >>%WEB_SCR% ECHO wget -P%DRV_DIR%\ %WEB_ADDY%/%PAK_DIR%/drivers/url_list.txt >>%WEB_SCR% ECHO wget -P%TOP_DIR%\ -i%APP_DIR%\url_list.txt >>%WEB_SCR% ECHO wget -P%TOP_DIR%\ -i%UPD_DIR%\url_list.txt >>%WEB_SCR% ECHO wget -P%TOP_DIR%\ -i%TWK_DIR%\url_list.txt >>%WEB_SCR% ECHO wget -P%TOP_DIR%\ -i%MOD_DIR%\url_list.txt >>%WEB_SCR% ECHO wget -P%TOP_DIR%\ -i%DRV_DIR%\url_list.txt :WEB_DONE >>%WEB_SCR% ECHO END ::END BUILDING WEB SCRIPT ECHO. ECHO Downloading per WEB_SCR.CMD .... CALL %WEB_SCR% ECHO. ECHO Extracting Packages ... for %%i in (%APP_DIR%\*.rar) do UNRAR x %%i %APP_DIR% for %%i in (%UPD_DIR%\*.rar) do UNRAR x %%i %UPD_DIR% for %%i in (%DRV_DIR%\*.rar) do UNRAR x %%i %DRV_DIR% for %%i in (%MOD_DIR%\*.rar) do UNRAR x %%i %MOD_DIR% for %%i in (%APP_DIR%\*.rar %UPD_DIR%\*.rar %DRV_DIR%\*.rar %MOD_DIR%\*.rar) do DEL %%i ECHO. ECHO Applying various registry tweaks ... for %%i in (%TWK_DIR%\*.reg) do REGEDIT /S %%i rem for %%i in (%TWK_DIR%\*.reg) do DEL %%i ECHO. ECHO Building installation script ... for /d %%i in (%APP_DIR%\*.*) do type "%%i\%PACK_SCR%" >> %INSTALL_SCR% for /d %%i in (%UPD_DIR%\*.*) do type "%%i\%PACK_SCR%" >> %INSTALL_SCR% for /d %%i in (%DRV_DIR%\*.*) do type "%%i\%PACK_SCR%" >> %INSTALL_SCR% for /d %%i in (%MOD_DIR%\*.*) do type "%%i\%PACK_SCR%" >> %INSTALL_SCR% call %INSTALL_SCR% GOTO CLEANUP :CANCEL ECHO. Package installation was canceled. :CLEANUP ECHO. ECHO Cleaning up ... rd /s /q %TOP_DIR% SHUTDOWN -r -t 10 :END I didnt invlude devcon, cuz devcon doesnt even work for my pc...it finds both ati and nvidia, and actually, it doesnt even find my video card...its an all-in-wonder...and in devcon, it doesnt have ati in the name...so I dont know how useful devcon is gonna be in anyones case... -
HowTo: Unattended Installation using FTP
evilvoice replied to edg21's topic in Unattended Windows 2000/XP/2003
I did notice an error with ftp.cmd....you dont download the tools until after the script is done, so how can you run devcon in its location?? -
Default User Swap Revised
evilvoice replied to Coolsights2000's topic in Unattended Windows 2000/XP/2003
i do exactly what you do, and it works for me, well I have yet to create a new user or anything, but the switch is successful...and I dont think you can delete the default user, I think windows needs this...default user is not a normal user...it is being used here in that way, but you really should never delete the default user...you can delete the default user.domain, but should never delete the default user. -
HowTo: Unattended Installation using FTP
evilvoice replied to edg21's topic in Unattended Windows 2000/XP/2003
also, i really like this script...but I also wanna have the option of downloading from web, so, if you give me permission, im changing your ftp script to be used for web...so far Ive got it almost done, just need to set up the script WEB_SCR (im not very imaginative lol) for use with wget...other than that, I think ive got it down. -
HowTo: Unattended Installation using FTP
evilvoice replied to edg21's topic in Unattended Windows 2000/XP/2003
what is EMD? -
Default User Swap Revised
evilvoice replied to Coolsights2000's topic in Unattended Windows 2000/XP/2003
you probably should not delete the default user profile until you logon as the new user... -
Adobe Reader 6.02 silent install
evilvoice replied to DisabledTrucker's topic in Application Installs
actually, the tweak for adobe isnt technically FOR adobe...its for removing wisptis altogether...you can apply the same tweak with or without adobe on your machine and have the same effect...just the adobe people are bitching about it to a great degree, which is why its called a fix for adobe...it could technically be called a wisptis fix...personally, if it were me, I would remove journal viewer and delete wisptis from office, and go on my merry way...which i may do...i actually found a "wisptis.exe" file that doesnt load...but journal viewer cries and wont run unless you replace it...which HEY RYANVM...care to remake journal viewer and see if we can add this edited wisptis to the source and see what happens? I dunno if you add an edited file if it will still complain about not having the real version of wisptis or not... -
Adobe Reader 6.02 silent install
evilvoice replied to DisabledTrucker's topic in Application Installs
ryanvm, its gonna be a chore to do adobe without wisptis...wisptis isnt even loaded with adobe, i think its cuz of a plugin, but no matter what, its gonna break journal viewer from working...now, if you dont install journal viewer, you dont have wisptis...or, what you could do, is find out which plugin adobe is using to run wisptis...it has to be a plugin, cuz i checked the registry for adobe and its not in there.. I do know adobe can be run without wisptis...and with journal viewer installed...but, anytime you load journal viewer, wisptis will be loaded...also msoffice has wisptis also. so, unless you want to find which plugin is loading wisptis, i wouldnt worry about it, its a pain to end task wisptis, but its not worth the time to fix it. -
Compile this please!
evilvoice replied to XPero's topic in Programming (C++, Delphi, VB/VBS, CMD/batch, etc.)
deleted -
deleted
-
wow, you found ones i didnt even find...im gonna email him the changes i mad...but theres like 3 that shouldnt be in there...I personally dont use HKEY_USERS for tweaks...and theres like 3 of them in there. theres also a networking tweak that breaks the rest of the file because instead of a ", there is a :, but im sending him the reg I fixed (not including your fixes) and hopefully it all makes sense...LOL, Im not very good at explaining things.
-
deleted