Content Type
Profiles
Forums
Events
Everything posted by Solid as a rock
-
I am trying to get avatars in the descriptionbox, but it dont work, i am sure i write the path correct and have used a java.gif which is make smaller to 128x128. also tryed a 32x32 azureus.jpg. both dont work? i have read your howto and there stood: so i have placed it in the map graphic, this also dont work? there is no word about limits or which rules i have to follow to be able to place a avatar....
-
some questions and ideas about WPI
Solid as a rock replied to Solid as a rock's topic in Windows Post-Install Wizard (WPI)
removed to a better place to post these "problem".... -
some questions and ideas about WPI
Solid as a rock replied to Solid as a rock's topic in Windows Post-Install Wizard (WPI)
if you means i am to lazy to search: http://www.msfn.org/board/index.php?showtopic=54629 i have found that topic yesterday but that topic is messed up because the topicstarter dont compiled everything in 1 post and isn't clear enough. By the way, this was the only hit from the search. Firstly, how to learn as there is no one who want spent time to explain in dutch how to write VBS? secondly, why to learn write vbs if there are complete tools as WPI what do almost everything for me, i only have fill some information out. Third, i dont ask if it is possible, i ask if there come in the future a feature to add or delete accounts and or change keys in WPI itself? -
Hi kelsenellenelvian, WPI is a great program... But there are some things which could be better do, the HOWTO is hard to read, there must be more difference between the letters and the background... (fat letters maybe? or other colors?) i noticed WPI.hta have so much programs with switches included. but CursorXP.exe dont? How do you install this program? i know you install this program because i come across this post when searching to unattended CursorXP Also i have a question: Do WPI have in the future a ability to add accounts, change keys or else thing...?
-
cant burn iso image with nero
Solid as a rock replied to mlr's topic in Unattended Windows 2000/XP/2003
icantread.... -
offcourse they do!! they have nothing better to do the whole day.... (no i dont think that... they are as if police, they look around and what they dont like to see, they will handle. otherwise what they dont see, there will be no handle)
-
Opera 8.5 Switchless Silent Installer + several plugins
Solid as a rock replied to Shoshoni's topic in Application Installs
i think the topicstarter could better write a howto unattended install opera 8.5 with al his stuff, so everyone could do to what he/she want with unattended opera. -
Opera 8.5 Switchless Silent Installer + several plugins
Solid as a rock replied to Shoshoni's topic in Application Installs
sounds great!! i dont know if this is unattended possible but could there a button added for people to switch to IE (there are some sites which dont work right with opera 8.5) http://nontroppo.org/wiki/CustomButtons#webdev -
Virtual CD-ROM or Virtual Drive
Solid as a rock replied to kenny1123's topic in Application Installs
Deamon tools -
-
.NET Framework 1.1 Service Pack
Solid as a rock replied to OutTrendz's topic in Unattended Windows 2000/XP/2003
dziubek got this small guide from bitmonster and now i get this from him (also thnks ) and upgraded his batchfile too. Here is a small guide how to create your own install .NET Framework 1.1 + .Net Framework 1.1 SP1 + KB886903 hotfix if English is not your language, change the language in your language. (The mine is Dutch, so i change them to dutch) : 1. Get the .NET framework v1.1 re-distributable package and put it in a folder, let us called it FRAMEWORK. 2a. Get the .NET framework v1.1 SP1 update and put it in the same folder as above. 2b. Also get the NDP1.1sp1-KB886903-X86.exe hotfix here 3. Get 7-Zip and install it. Open the folder where 7-zip has installed and grab the 7za.exe. (i choose for the nonBeta to be sure to get a stable installer) You also need the 7zsNOGUI.sfx, get it here(7zS NoGUI-> and rename the 7zSNOGUI.sfx to 7zS.sfx) and copy them both to your folder. You can deinstall 7-Zip now if you want. 4. Get the UPX-package (Win32 console version), unpack it and copy the upx.exe to your folder 5. Get the StartX-package, grab the StartX.exe out of the archive (you find it in the 'Release' folder) and move it to your folder. 6. Make a new batch-file in your folder, name it make.bat and paste the following text into it: The next code is to create a netfxsp1NL packet because my language is dutch, if your language is Polish for example, rewrite all the NL to PL. SET TmpDir=%~dp0tmp SET BuildDir=%~dp0build\ %~d0 CD "%~p0" MD "%TmpDir%" MD "%BuildDir%" MD "%BuildDir%netfxsp1NL" START /wait dotnetfx.exe /C /T:"%TmpDir%" START /wait NDP1.1sp1-KB867460-X86.exe /XP:"%TmpDir%" START /wait NDP1.1sp1-KB886903-X86.exe /XP:"%TmpDir%" CD "%TmpDir%" START /wait msiexec /a netfx.msi TARGETDIR="%BuildDir%netfxsp1NL" /QB START /wait msiexec /p S867460.msp /a "%BuildDir%netfxsp1NL\netfx.msi" START /wait msiexec /p M886903.msp /a "%BuildDir%netfxsp1NL\netfx.msi" CD.. RMDIR /S /Q tmp COPY StartX.exe "%BuildDir%StartX.exe" CD "%BuildDir%" ECHO START /WAIT /Dnetfxsp1NL msiexec.exe /i netfx.msi /qb>install.bat CD.. SET Target=langpack IF EXIST %Target%.exe CALL :make_add CD "%BuildDir%" ..\7za.exe a "%~dp0netfxsp1NL.7z" -r -mx=7 -mfb=255 -md=48m * CD.. RMDIR /S /Q "%BuildDir%" COPY 7zS.sfx 7zSC.sfx upx.exe 7zSC.sfx ECHO;!@Install@!UTF-8!>config.txt ECHO RunProgram="StartX.exe /WAIT /B \"install.bat\"">>config.txt ECHO;!@InstallEnd@!>>config.txt COPY /b 7zSC.sfx + config.txt + netfxsp1NL.7z netfxsp1NL.exe DEL 7zSC.sfx DEL config.txt DEL netfxsp1NL.7z GOTO:EOF :make_add MD "%TmpDir%" MD "%BuildDir%%Target%" START /wait %Target%.exe /C /T:"%TmpDir%" CD "%TmpDir%" SET MsiName= FOR %%I in (*.*) DO IF /I "%%~xI" == ".MSI" SET MsiName=%%I START /wait msiexec /a "%MsiName%" TARGETDIR="%BuildDir%%Target%" /QB CD.. RMDIR /S /Q tmp CD "%BuildDir%" ECHO START /WAIT /D%Target% msiexec.exe /i "%MsiName%" /qb>>install.bat CD.. GOTO:EOF Now you should have the following files in your folder: 7za.exe 7zS.sfx dotnetfx.exe make.bat NDP1.1sp1-KB867460-X86.exe NDP1.1sp1-KB886903-X86.exe upx.exe StartX.exe Start the make.bat and wait 2 minutes. At the end you should have a netfxsp1NL.exe in your folder with a size of about 11,7 MB. You can run this standalone file through svcpack.inf or any other batch without any commandline switches. But if you use a batch instead of svcpack.inf you should use the start-command: netfxsp1NL.exe EDIT: when downloading the hotfix KB886903, you will get the KB886904, i have fixed the url. sorry for the convience... -
.NET Framework 1.1 Service Pack
Solid as a rock replied to OutTrendz's topic in Unattended Windows 2000/XP/2003
Trashed -
it dont work for me. i have 3.51 pro. i cant unrar the exe as if described in your howto. i have installed handmattically and copy it to a folder cursorxp and then change your reg file to dutch and gear and rarring it with your comment. after clicking on it there is no gear theme applied. also i am not be able to run cursorxp because i get a error: unzip.dll is missing. but it is in the root of cursorxp... help??? edit: this time i see cant find cxp.dll, so there is a random DLL-error... edit2: i have read all post again and i notice talking about a cmd. can mickmack be more specificer about that?
-
My Documents folder through variable
Solid as a rock replied to Ben.Hahlen's topic in Unattended Windows 2000/XP/2003
i am interested in the knowhow too *bookmarked* -
MSN Messenger 7 + Patch + MsgPlus
Solid as a rock replied to [deXter]'s topic in Application Installs
could you explain how you create this packet? -
some website have stopped with popups because everybody have popupblocker. they found a new way. popups in form of flash. i cant uninstall flash because my MSN 7.0 need this. but i cant stop the site popups with flash movies... for example: www.cdcover.cc have popups which is in the middle of the screen so you are not be able to click on the button behind of the flashmovie i want to know if there is a way to fill out which sites may not use flash to show on my pc? popupblocker will not help... also some sites popups with install our active X. how to fill out they can never ask to install active X ?
-
i advice you to create handmatically the backup because the backuptool is (censored).... i have the same problem with outlook express and lost my whole adressbook. search for the map where the mails exist and also save your adressbook with ,,,,, (i dont know the english word of ,,,) before asking what i mean with ,,, please check your outlook> save adressbook. best regards
-
Topic Looks Like Screwed Up. How To Fix It?
Solid as a rock replied to Solid as a rock's topic in Site & Forum Issues
i am sorry for the wrong choiced word. thank you for your help. i really appreciated. -
yesterday and today i notice when entering a topic i can only read 1 post at one moment. all other post are shrinked into a list. it is hard for me to click each other post which have 23 pages full of post.... i have searched at MSFN if there are people who have the same problem as i, but it isnt. i dont know what happened en why it occurs now. i also have take a look in board setting but i found nothing which could help me. can someone help me?
-
uninstall powerdvd without saving your old settings ( a popup come to ask you to save your old settings, say no) then install it again. it must me working now.
-
Nero Source Stripper And Custom Install Builder
Solid as a rock replied to `Felix`'s topic in Application Installs
@felix, i want to point out some little mistakes in your register.reg there are two lines which are exactly the same. [HKEY_CURRENT_USER\Software\Ahead\Nero - Burning Rom\Recorder] "ShowSingleRecorderSpeed"=dword:00000001 ;----- Show the real CD-recording speed in Nero (example: 21.6x writing speed) ;----- [HKEY_CURRENT_USER\Software\Ahead\Nero - Burning Rom\Recorder] "ShowSingleRecorderSpeed"=dword:00000001 also ;Remove Nero from Run [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run] "NeroCheck"=- "NeroFilterCheck"=- [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run] "NeroFilterCheck"=- also, i dont know if there are people who likes my other tweaks too...? plase feel free to use them... ;Disable AutoStarting When Blank CD is Loaded. [-HKEY_LOCAL_MACHINE\SOFTWARE\Ahead\InCD] [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\AutoplayHandlers\EventHandlers\HandleCDBurningOnArrival] "NeroAutoPlayEmptyCD" = - [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\AutoplayHandlers\Handlers\NeroAutoPlayEmptyCD] ;Disable Startsmart [HKEY_CURRENT_USER\Software\Ahead\Nero StartSmart\Settings] "AdvancedMode"=dword:00000000 "DisplayLeftPanel"=dword:00000000 [HKEY_CURRENT_USER\Software\Ahead\Nero StartSmart\Defaults] "1"=dword:00000000 thanks for your work and sharing it with us -
switch for soundblaster driver
Solid as a rock replied to Solid as a rock's topic in Application Installs
yes... i am still waiting -
erm stable? IE is stable too.... but before SP2 come out IE accept too much thingies automatically (for example activeX) and FF dont. Most users use IE and thats why scriptkiddies write virusses and adware for IE and FF dont have this problem (at this moment) But FF is growing more and more populair and i am waiting for the first virus or adware for FF...
-
switch for soundblaster driver
Solid as a rock replied to Solid as a rock's topic in Application Installs
i am waiting... -
i have a problem during setup. setup popup with a window i have give a bad parameter. when pressing OK i see it is computername and when pressing OK again setup go further with the setup and there will no error come up. i have changed in winnt.sif to try which line works for me. (one for one, not all at one time ) ComputerName=* also changed in ComputerName=test123 also in Computername="test123" and ComputerName = "test123" every time i get that error and i can't call this cd an unattended cd this is a DELL OEM XP HOME. maybe someone have a solution or a "errorkiller" for me