Jump to content

Avneet

Member
  • Posts

    179
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Fiji

Everything posted by Avneet

  1. mirror on turboupload please
  2. am using it but the add hardware wizard things comes up wheer u have to browse for the location of the drivers.. is that normal.. doesnt this program autocmatically scan the folder we define
  3. nice looks cool.. keep working on it.. will test it soon cheers
  4. sweet ... nice
  5. the new one also works from cd.. am using it the same way i used the old one
  6. any silent installers for 5.2.3 (full installation) ??
  7. i didnt get time to pla around with it much.. but i was aonly able to modify the General and Advanced Tabs.. Modifying others using Reshack doesnt bring about any chnages
  8. thx.. well dont get time to play around more.. with codes .. got exams and stuffs.. and thx for that infor ..i think i saw that in the begining of the thread thx again
  9. heer u go.. http://d.turboupload.com/d/658359/sysdm.cpl.html PS : dows anyone knws how to edit the support information box.. i ahve seen sum ppl are able to put bitmaps in theer.. THX
  10. heer is mine.. the XP DVD i compiled ..labled Gold Edition
  11. oh thx mate.. i knw that was being discussed.. i just asked again .. as i thot someone might have found a fix for it.. anyway will wait for the update/fix thx cheers
  12. can anyone confirm that does regedit /s command work .. ??
  13. links
  14. oh no wonder my reg entries didnt work .. i used regedit /s reg.reg in one of the command boxes and they wer not added.. wud be really great if this could be fixed tthx
  15. umm i guess no fixes for this yet.. so cant use the driver packs.. .. thats a big bummer.. anywya thx for the help
  16. thx kel.. so far thats the only problem i found..
  17. forced install is working.. u have to enable that option .. in the options menu.. its sum wheer there..
  18. great .. i copied my old config.js file ..nad it picked it up in the new version.. i was just testing it .. but was having one problem.. i want it to install by the install order number i gave.... but when i install it doesnt follow the install order number ?? what am i doiing wrong thx
  19. cant wait ..when is it relaseing..any dates.. and thx for the hardwork u guys put in this
  20. http://www.msfn.org/board/index.php?showtopic=70360 read that thread
  21. [quote name='MHz' post='396635' date='Sep 28 2005, 10:53 PM'][quote name='totoymola' date='Sep 29 2005, 03:17 AM']MHz is the AutoIt master here. Maybe he has a dirrerent method of doing this. [right][post="396341"][/post][/right][/quote] Ok, that sucked me in. I do not even have an interest in this program but I did a script showing your process block method totoymola. Let me show the code that does the blocking. This variable contains the processes to block: [code]; Block list for annoying processes. Delimiter is |. $processblock = 'Picasa2.exe|PicasaMediaDetector.exe|notepad.exe|iexplore.exe|firefox.exe'[/code] Just before install Picasa, this line executes: [code]If $processblock <> '' Then _Block()[/code] If the above line has processes listed, then it will call this function and add each process into the Image File Execution Options registry key. [code]Func _Block() Dim $processblock If $processblock <> '' Then Local $key = 'HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options' If @Compiled Then Local $command = '"' & @ScriptFullPath & '" /dummy' Else Local $command = '"' & @AutoItExe & '" "' & @ScriptFullPath & '" /dummy' EndIf If StringInStr($processblock, '|') Then $processarray = StringSplit($processblock, '|') For $i = 1 To $processarray[0] RegWrite($key & '\' & $processarray[$i], 'debugger','Reg_sz', $command) Next Else RegWrite($key & '\' & $processblock, 'debugger','Reg_sz', $command) EndIf EndIf EndFunc[/code] Blocked Processes will execute the AutoIt script with the /dummy switch and that script execution will immediately exit. This line exits if /dummy switch s used: [code]; Exit if executed a 2nd time by blocked process. If StringInStr($cmdlineraw, '/dummy') Then Exit[/code] Picasa should install silently without annoying processes. Once the script exits, it will call the inbuilt Autoit function OnAutoItExit. OnAutoItExit will remove the registry entries that were added previously. [code]Func OnAutoItExit() Dim $processblock If $processblock <> '' Then Local $key = 'HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options' If StringInStr($processblock, '|') Then $processarray = StringSplit($processblock, '|') For $i = 1 To $processarray[0] If RegDelete($key & '\' & $processarray[$i]) <> 1 Then MsgBox(0 + 16, 'Error', 'Registry key for ' & $processarray[$i] & ' still exists', 2) EndIf Next Else If RegDelete($key & '\' & $processblock) <> 1 Then MsgBox(0 + 16, 'Error', 'Registry key for ' & $processblock & ' still exists', 2) EndIf EndIf EndIf EndFunc[/code] Full script attached. [attachment=8902:attachment] Using Adlib or OnAutoItExit would perhaps be my usual method to close these processes, but I find AutoIt is quite flexible as to problems so methods may vary. [/quote] how do u use this script..i used autoit and compiled it .. i put it with the picasa instalation file.. and nothing happend .. plizz help
  22. am having the same problem. i have asus p4c800 e deluxe motherboard and my promise sata378 driver is not picked up during the blue screen(text mode) setup.. since my C drive is connected to the sata controller..( am using it as IDE) i cannot continue with installation since the drive doesnt show up.. am using the drivers back method2
  23. i have serache dthe forum regarding this..i did come up with many results but they were not clear to me.. so am posting it here I have Asus P4C800E Deluxe MB. I sue the my sata as an IDE (not RAID).. and my Primary drive ( C Drive) is connected to it.. when i use Basharats packs to intergrate the drivers(using method 2) during the blue screen setup ..it doesnt pick up my drivers for the sata ..so my drive doesnt show up and i cant load windows.... i ahve followed all the instructions in the basharat pack and havnt played around wit any files.. How can i resolve this issue. Thank u
×
×
  • Create New...