Jump to content

Mekrel

Member
  • Posts

    379
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    United Kingdom

Everything posted by Mekrel

  1. Nah the script I put down as uncompilable, but your script is pretty much the same, accept mine just runs the cmd file silently using the _RunDos command to make TB the default client. Configure, as in install ure skins, setup your filters etc
  2. Thunderbird is the same, but its best to copy the profile over before install else for some reason copying it over after will not work because TB wants the import wizard to run. but if you copy it over first, the installer checks for it and then knows it doesnt need to run the import wizard. I made my own installer, download latest thunderbird and extract anywhere into a folder. Configure your current install and then go to Start/Run and then type in %appdata% Copy the Thunderbird folder and put it inside the folder where you extracted the installer (the one that has setup.exe in). Paste the following into a command file, and call it assoc.cmd (must be called this for the autoit exe to call it) SET KEY=HKEY_LOCAL_MACHINE\SOFTWARE\Clients\Mail\Mozilla Thunderbird REG ADD HKEY_CURRENT_USER\Software\Clients\mail /ve /t REG_SZ /D "Mozilla Thunderbird" REG ADD HKEY_USERS\.Default\Software\Clients\mail /ve /t REG_SZ /D "Mozilla Thunderbird" REG ADD "%KEY%" /ve /t REG_SZ /D "Mozilla Thunderbird" /f REG ADD "%KEY%" /v "DLLPath" /t REG_SZ /D "%PROGRAMFILES%\Mozilla Thunderbird\mozMapi32.dll" /f REG ADD "%KEY%\DefaultIcon" /ve /t REG_SZ /D "%PROGRAMFILES%\Mozilla Thunderbird\thunderbird.exe,0" /f REG ADD "%KEY%\shell\open\command" /ve /t REG_SZ /D "%PROGRAMFILES%\Mozilla Thunderbird\thunderbird.exe -mail" /f REG ADD "%KEY%\shell\properties" /ve /t REG_SZ /D "Thunderbird &Options" /f REG ADD "%KEY%\shell\properties\command" /ve /t REG_SZ /D "%PROGRAMFILES%\Mozilla Thunderbird\thunderbird.exe -options" /f REG ADD "%KEY%\protocols\mailto" /ve /t REG_SZ /D "URL:MailTo Protocol" /f REG ADD "%KEY%\protocols\mailto" /v "URL Protocol" /t REG_SZ /D "" /f REG ADD "%KEY%\protocols\mailto\DefaultIcon" /ve /t REG_SZ /D "%PROGRAMFILES%\Mozilla Thunderbird\thunderbird.exe,0" /f REG ADD "%KEY%\protocols\mailto\shell\open\command" /ve /t REG_SZ /D "%PROGRAMFILES%\Mozilla Thunderbird\thunderbird.exe -compose" /f Also place it in the same folder. Download attached compiled autoIt script and put it into the same folder Then using this guide make a 7zip installer, using config.txt to call the compiled autoit script install.exe
  3. The reason SOF doesnt remember the layout is because most files do not get copied over to the profile before it packs it. This was by choice of its creator because it contains hard coded paths, but I think you can just put the files you want in manally before you choose to package it. Im not sure which file takes care of the browser layout though.
  4. Hi all I have a problem with Winamp since using this MSI, but it could be other things I guess. Doesnt look like anyone else has had the same problem though. Anyway, to cut a long story short - my problem is to do with my settings not being saved. Such as enabling alpha blending and where the Winamp window was positioned are reverted back to default after a restart of my system. Install config used: [SETUP] Xfull=0 Xagent=0 Xlibrary=0 Xhotkey=1 Xjump=0 Xtray=0 Xmodernskin=1 Xaudio=1 Xvideo=0 Xvisual=0 Xextra=1 Xdircont=1 Xtypecont=1 Xnetscape=0 Xaudiocd=1 XskinSetting=Foton_1_0a XQuicklaunch=1 Xdesktop=0 XStartmenu=1 XINET=0 XREGAUD=1 XREGVID=1 XREGPLS=1 Also where would winamp save the apha blending option too? I copied the Winamp.ini from the program folder before and after and used the FC command and it said both files were the same? Just want to check to see if the option is being saved to the file it should be. Many thanks
  5. Surely someone still has this on thier computers? The license says we can distribute it so...
  6. Hi, From that kind of error, I would have guessed it was due to the cab not being uncompressed back to the .sys file. Unfortunatly its been aloonnnggg time since I did any txtsetup.oem editing back when I had my nforce2 board, but I do remember the numbers here, changed as to how the drivers were being stored. Im not sure where you got your info from, but someone on the first page who has had a successfull install of mass storage drivers was using the following, and he was also cabing up the drivers. [SourceDisksFiles] iaStor.sys = 100,,,,,,3_,4,1,,,1,4 si3114r.sys = 100,,,,,,3_,4,1,,,1,4 Maybe use the same / find out if these are the correct ones?
  7. Hi all, Im currently on a temporary OS install dfue to the fact my nvidia Raid drivers did not even load using my nlited dist. Now, before this (which was my first unattended CD) I was installing Si3114r SATA controller drivers by modifying the install files via a guide in a .doc format posted by Xper. (where has this guide suddenly disappeared to???) The Pnp drivers we done as usual using Winnt.sif. However my computer has completely changed since then and I need to redo my drivers but in one driver there are two .inf files? Do I need to crate two seperate folders and find out which files belong to which inf, and then reference the folders in the Winnt.sif? Or do I keep them inside the one folder all together?
  8. Heh I was going to recomend a NETGEAR router, they are fantastic. Having a standalone PC I only use the DG632 but Ive never had any problems, and my brother also has the DG814 which had teething problems at first but the latest firmware which was quickly released has sorted all the problem out and never had 1 disconnect since. I love the 632 though, so small and great looking and the admin panel is so easy to use. Had problems with Punkbuster and torrents in the past but just forwarded the ports and everything is brilliant.
  9. Thanks anyway mate but your code is abit more neat. Only just started to dab into AutoIT and I need to refine alot of my code sometimes as it can be neater / more efficient. Just like when I learnt CSS and XHTML
  10. Nevermind, sorted it. I tried triming the string from the right by 1 charachter, but it in fact needs to be trimmed by 2
  11. Hi all I have made a simple but nice AutoIT script which searches for my fixed drives and uses the drive letters it returns with Diskeeper via command line to defrag all my hard drives. The script is compiled and I would like a control panel link to run this script. Which I know how to do. Im trying to make the placement of the compiled script into system32, and the adding of the control panel unattended using a reg file to add the link to control panel. Doing this needs a free generated GUID which I can get from MS's guid generator. Being as its unattended, I need a new guid each time in case others change during different reformats. So using Autoit im making guid.exe generate one and paste to the clipboard and then autoit to write the reg file. I have most of this done, however im getting line breaks where I do not want them Here is my script: ; Run the GUID APP Run(@ScriptDir & "\GUIDGEN.EXE") ; Wait for the APP to launch and ready to send Commands to WinWait("Create GUID", 'Choose the desired format below, then select "Copy" to copy the results to the clipboard (the results can then be pasted into your source code).') ; Select Registry GUID generation by check box ControlCommand("Create GUID", 'Choose the desired format below, then select "Copy" to copy the results to the clipboard (the results can then be pasted into your source code).', "Button5", "Check", "") ; Create a new GUID ControlClick("Create GUID", 'Choose the desired format below, then select "Copy" to copy the results to the clipboard (the results can then be pasted into your source code).', "Button8", "left", "1") ; Copy the new GUID to clipboard ControlClick("Create GUID", 'Choose the desired format below, then select "Copy" to copy the results to the clipboard (the results can then be pasted into your source code).', "Button7", "left", "1") ; Exit the program ControlClick("Create GUID", 'Choose the desired format below, then select "Copy" to copy the results to the clipboard (the results can then be pasted into your source code).', "Button9", "left", "1") $file = FileOpen(@ScriptDir & "\CP.reg", 1) ; Check if file opened for writing OK If $file = -1 Then MsgBox(0, "Error", "Unable to open file.") Exit EndIf $bak = ClipGet() FileWrite($file, "Windows Registry Editor Version 5.00" & @CRLF) FileWrite($file, "" & @CRLF) FileWrite($file, "[HKEY_CLASSES_ROOT\CLSID\" & $bak & "]" & @CRLF) FileWrite($file, '@="nFrag"' & @CRLF) FileWrite($file, '"InfoTip"="Runs a System Wide defragmentation"' & @CRLF) FileWrite($file, "[HKEY_CLASSES_ROOT\CLSID\" & $bak & "\DefaultIcon]" & @CRLF) FileWrite($file, '@="%SystemRoot%\\\\System32\\\\nFrag.exe,0"' & @CRLF) FileWrite($file, "[HKEY_CLASSES_ROOT\CLSID\" & $bak & "\Shell\Open]" & @CRLF) FileWrite($file, "[HKEY_CLASSES_ROOT\CLSID\" & $bak & "\Shell\Open\command]" & @CRLF) FileWrite($file, '@="nFrag.exe"' & @CRLF) FileWrite($file, "[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\ControlPanel\NameSpace\" & $bak & "]" & @CRLF) FileWrite($file, '@="nFrag Defragmenter"' & @CRLF) FileClose($file) and it produces: Windows Registry Editor Version 5.00 [HKEY_CLASSES_ROOT\CLSID\{5816954A-C354-4644-82D5-3E673DAAB415} ] @="nFrag" "InfoTip"="Runs a System Wide defragmentation" [HKEY_CLASSES_ROOT\CLSID\{5816954A-C354-4644-82D5-3E673DAAB415} \DefaultIcon] @="%SystemRoot%\\\\System32\\\\nFrag.exe,0" [HKEY_CLASSES_ROOT\CLSID\{5816954A-C354-4644-82D5-3E673DAAB415} \Shell\Open] [HKEY_CLASSES_ROOT\CLSID\{5816954A-C354-4644-82D5-3E673DAAB415} \Shell\Open\command] @="nFrag.exe" [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\ControlPanel\NameSpace\{5816954A-C354-4644-82D5-3E673DAAB415} ] @="nFrag Defragmenter" Notice where the guid is placed {xxxxxxxxx..etc} there is a unwanted line break. I cant seem to see what is causing this? any assistance would be greatly appreciated (nologic, your never on msn when I need you )
  12. Hi, Just used this tool and now prefer it over the old way (Simonsays method) because it uses a temp location and simons always used icons with no drop shadow. but how can I get it so it unpacks silently? I went to reshack the dialog section of 7zSD.sfx but cant see anything there to reshack :/ unlike you could with 7zS.sfx. other than that, Brilliant tool!
  13. Yes Ive seen the specs and I still think it is not worth 100 of my pounds. The only thing that is half worth my interest is the EAX support because Creative wont allow other manufactureres to support anything above EAX 2.0. and why? Its because they know that most sound card manufacturers would surpass them. Oh and im loving the X-FI reviews! To make it seem worth while they have to compare it to AC97 LMFAO.
  14. Right, so the cheapest X-FI is like 99 pounds, when the X-Mystique for a 3rd of the price will give exactly the same results. As for CPU power, when your outputting from a sound card in real time in Dolby Digital you wouldnt noitce any CPU hit anyway. and I bet I can take a guess at this: People spending the insane amount on the X-fi will be outputting to crap quality speakers and those buying 30 quid sound cards (such as myself) outputing via optical after it being encoded in real time in DD will be outputting to much better AMPs/Decoders and experiencing much better audio quality. The X-FI's are not worth the money creative are selling them for. and creatives drivers.... jesus ... Im not going to even start.
  15. Theres only one soundcard to get. and thats the X-Mystique.....
  16. Oops , could have swore I heard people say you could make it switchless like this Im a numpty!
  17. How do I add the /S The program which launches after extraction is apparently: uninstall.exe /Setup I added a /S on the end but launching it didnt make it silent :/ Any ideas?
  18. 3DMark01 (stock run) Cant overclock yet, got a XP120 installed but because of getting my Raid array my storage drive is on the unlocked Sata controller and I aint going anywhere near 250fsb because of that. Need to get a cheapish IDE drive for storage
  19. #include <Process.au3> $rc = _RunDos("command to run") Use this in a autoit script and that will pass the command silently to windows Compile to an exe and use in your 7z archive to be called from config.txt But is this ABC bit torrent client? Just use /S
  20. Maxamoto, fantastic posts mate. Couldnt have put it better myself. Outbound protection is worthless, if something is already on your PC that wanted to comunicate with exterior networks then they would. With or without the likes of kerio. There was a fantastic post on one of the forums I post on by an advanced Windows user who explained why this is with evidence too. Unfortunaly that forum has had many a clean ups and that post no longer exists.
  21. I wouldnt say the DFI owns the asus board, at overclocking it has more features and voltage options at hand which makes it a better board in the eyes of an overclocker. However the extra space between the PCi-e slots on the Asus and the northbridge heatpipe are very good, esp for people who want 3rd party card coolers which wouldnt fit in the DFI board. The Asus is flakey with bios support for the X2 chips aswell from what I have read.
  22. Hardware firewall with NAT within a router. That is the best firewall you can get.
  23. Hhahaha at using a batch compiler to get the app to launch. There is another method for this if you really dont want any command window
  24. Several solutions would be to update the motherboard bios if your comfortable with doing that. Its pretty safe unless you are unlucky and have a power cut, just make sure you know what to do exactly first. Contact WD, I remember one person on another forums saying they had a problem with a certain drive (it was the dfi-street forum) on the DFI LP 250GB (same board as me) and they confirmed that they had several reported issues and a firmware upgrade was needed. I know these are different manufacturers to yours, but you never know - worth a contact. Also test different IDE/SATA cables and try a different controller on the board.
×
×
  • Create New...