Jump to content

mc134

Member
  • Posts

    84
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    United States

Everything posted by mc134

  1. http://www.ryanvm.net/msfn/
  2. Since you are using the %userprofile% variable, you are only making chages to a single user. To change the start menu for all users use the %AllUsersProfile% variable instead. For example this would move the synctoy shortcut only for a single user to the start menu for all users that log in. (this is all one line BTW) If EXIST "%UserProfile%\Start Menu\Programs\SyncToy.lnk" MOVE /Y "%UserProfile%\Start Menu\Programs\SyncToy.lnk" "%AllUsersProfile%\Start Menu\Programs\Accessories\Utilities" The IF EXIST statement allows the batch to move on if the shortcut is not found instead of erroring out and stopping your batch. Hope this helps.
  3. Try using CALL c:\"Program Files"\Folder\install.exe or CALL c:\Progra~1\Folder\Install.exe I have a few scripts that totally refuse to run if I use %programfiles% even if i use the set command like this: SET Progs="C:\Program Files" or SET Progs=%Programfiles% CALL %Progs%\Folder\Install
  4. Your confusing Restore with Unattended. If you use an unattended install, you no longer get the option to restore. And to answer your question, yes you still use WINNT.SIF to do an unattended install.
  5. I have two examples that check Windows Genuine advantage before installation. Windows Defender and Microsoft PhotoStory 3 for Windows. I have had to make custom MST modification to both even though I am using a legit version of Windows, neither will install unattended because both check WGA and WGA is not registered until a reboot. After 2 weeks of installation failures I finally got both to install successfully.
  6. I'm glad i could be some help.
  7. Place sleep.exe in the system32 folder
  8. I hope its not too late to fix your problem. To fix the keyboard just delete the Scancode Map key under Keyboard Layout. Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Keyboard Layout] It should look like that.
  9. Quick search is all you needed... http://www.msfn.org/board/index.php?showtopic=34932
  10. A neat "feature" of the crappy onboard intel graphics chip is it only supports a maximum of 24-bit color. The problem your experiencing is more than likely caused by that. The ATI can handle 32-bit color just fine. Try setting the graphics level to 16-bit color and see if it fixes it.
  11. I haven't gotten it to work from RunOnce so just call it from a command file someplace like this... REG ADD %KEY%\075 /VE /D "Mapping Network Drives" /f REG ADD %KEY%\075 /V 1 /D "%systemdrive%\install\Network\Network.cmd" /f
  12. Download and install YourCPL. YourCPL I've used it to add Taskmanager (taskmgr.exe) and Microsoft Baseline security Analyzer (mbsa.exe) among other things. Enjoy.
  13. The command in WINNT.SIF that works for me is OEaccess=off under the Components section. To make sure that no shortcuts are created after first reboot for all users and all created users after that add these registry entries: ;Remove Address Book 6 StubPath [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Active Setup\Installed Components\{7790769C-0471-11d2-AF11-00C04FA35D02}] "Version"="6,0,2600,0000" @="Address Book 6" "IsInstalled"=dword:00000001 "Locale"="EN" "ComponentID"="WAB" "StubPath"=- "HideStubPath"=hex(2):22,00,25,00,50,00,72,00,6f,00,67,00,72,00,61,00,6d,00,46,\ 00,69,00,6c,00,65,00,73,00,25,00,5c,00,4f,00,75,00,74,00,6c,00,6f,00,6f,00,\ 6b,00,20,00,45,00,78,00,70,00,72,00,65,00,73,00,73,00,5c,00,73,00,65,00,74,\ 00,75,00,70,00,35,00,30,00,2e,00,65,00,78,00,65,00,22,00,20,00,2f,00,41,00,\ 50,00,50,00,3a,00,57,00,41,00,42,00,20,00,2f,00,43,00,41,00,4c,00,4c,00,45,\ 00,52,00,3a,00,57,00,49,00,4e,00,4e,00,54,00,20,00,2f,00,75,00,73,00,65,00,\ 72,00,20,00,2f,00,69,00,6e,00,73,00,74,00,61,00,6c,00,6c,00,00,00 ;Remove Outlook Express 6StubPath [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Active Setup\Installed Components\>{881dd1c5-3dcf-431b-b061-f3f88e8be88a}] @="Outlook Express" "ComponentID"="OEACCESS" "Dontask"=dword:00000002 "IsInstalled"=dword:00000000 "Locale"="*" "Version"="2,0,0,0" "StubPath"=- "HideStubPath"=hex(2):25,00,73,00,79,00,73,00,74,00,65,00,6d,00,72,00,6f,00,6f,\ 00,74,00,25,00,5c,00,73,00,79,00,73,00,74,00,65,00,6d,00,33,00,32,00,5c,00,\ 73,00,68,00,6d,00,67,00,72,00,61,00,74,00,65,00,2e,00,65,00,78,00,65,00,20,\ 00,4f,00,43,00,49,00,6e,00,73,00,74,00,61,00,6c,00,6c,00,55,00,73,00,65,00,\ 72,00,43,00,6f,00,6e,00,66,00,69,00,67,00,4f,00,45,00,00,00 ;Remove Mail_News Stubpath [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Active Setup\Installed Components\{44BBA840-CC51-11CF-AAFA-00AA00B6015C}] "Version"="6,0,2900,2180" @="Microsoft Outlook Express 6" "IsInstalled"=dword:00000001 "Locale"="EN" "ComponentID"="MailNews" "CloneUser"=dword:00000001 "StubPath"=- "HideStubPath"=hex(2):22,00,25,00,50,00,72,00,6f,00,67,00,72,00,61,00,6d,00,46,\ 00,69,00,6c,00,65,00,73,00,25,00,5c,00,4f,00,75,00,74,00,6c,00,6f,00,6f,00,\ 6b,00,20,00,45,00,78,00,70,00,72,00,65,00,73,00,73,00,5c,00,73,00,65,00,74,\ 00,75,00,70,00,35,00,30,00,2e,00,65,00,78,00,65,00,22,00,20,00,2f,00,41,00,\ 50,00,50,00,3a,00,4f,00,45,00,20,00,2f,00,43,00,41,00,4c,00,4c,00,45,00,52,\ 00,3a,00,57,00,49,00,4e,00,4e,00,54,00,20,00,2f,00,75,00,73,00,65,00,72,00,\ 20,00,2f,00,69,00,6e,00,73,00,74,00,61,00,6c,00,6c,00,00,00 Hope this helps!
  14. Check this out for your wide-screen gaming... WideScreenGamingForum
  15. Bashrat...go here to download without itunes... QuickTime StandAlone Hope it works for you.
  16. The MSI K8N Neo4-F uses the RealTek ALC850 chipset for audio. Here is the website to download it if you need it: MSI Audio Drivers It is the Realtek ALC Series AC'97 Audio Drivers tab.
  17. Just got through building a new computer using a MSI K8N Neo4-F (nforce 4) motherboard. I used Ryan's newest pack and the newest build of Bashrat's DriverPack. I included all of the driver packs BTW. It booted and installed perfectly except for the onboard sound. It just got too late last night to figure out why everything installed except for sound. I just wanted Bashrat and everyone else that I had success with this motherboard and the driverpacks. Bashrat, I have the Device ID codes for the sound card if you need it and I will report back what I find out about it. Thank you bashrat.
  18. When that is not included I get an unknown device in device manager so I include it and it makes device manager happy. Who knows?
  19. These work perfect on the Asus A8V Deluxe Motherboard using the Promise 378 controller and the VIA controller. [HardwareIdsDatabase] PCI\VEN_105A&DEV_3373&SUBSYS_80F51043&REV_02 = "ulsata" PCI\VEN_105A&DEV_3373&SUBSYS_80F51043 = "ulsata" PCI\VEN_105A&DEV_3373&CC_010400 = "ulsata" PCI\VEN_105A&DEV_3373&CC_0104 = "ulsata" PCI\VEN_105A&DEV_3D75 = "ulsata2" PCI\VEN_105A&DEV_3D18 = "ulsata2" SCSI\ProcessorPromise_SATA_Console____ = "ulsata2" PCI\VEN_1106&DEV_4149 = "viapdsk" PCI\VEN_1106&DEV_3149 = "viamraid" PCI\VEN_1106&DEV_3149&SUBSYS_80ED1043&REV_80 = "viamraid" PCI\VEN_1106&DEV_3149&SUBSYS_80ED1043 = "viamraid" PCI\VEN_1106&DEV_3149&CC_010400 = "viamraid" PCI\VEN_1106&DEV_3149&CC_0104 = "viamraid" PCI\VEN_1106&DEV_3164 = "viamraid" PCI\VEN_1106&DEV_3249 = "viamraid" [sCSI.Load] ulsata = ulsata.sys,4 ulsata2 = ulsata2.sys,4 viapdsk = viapdsk.sys,4 viamraid = viamraid.sys,4 [sCSI] ulsata = "WinXP Promise SATA378 IDE Controller" ulsata2 = "Promise SATA Console SCSI Processor" viapdsk = "VIA ATA/ATAPI Host Controller" viamraid = "VIA Serial ATA RAID Controller"
  20. This error happens when you change the default location that norton's installs itself to on the start menu. Move it back or reinstall and it will go away. Learned this the hard way!!
  21. Add the Via drivers to the $OEM$\$1\DP\M\V\eide folder (viapdsk.cat / viapdsk.sys / viapide.inf) and in $OEM$\$1\DP\M\V\raid (viamraid.cat / viamraid.sys / viamraid.inf) Make sure the WINNT.SIF points to these folders Cab the viapdsk.sys and viamraid.sys and copy them into the i386 folder and then add these lines to TXTSETUP.SIF: [sourceDisksFiles] viapdsk.sys = 1,,,,,,4_,4,1,,,1,4 viamraid.sys = 1,,,,,,4_,4,1,,,1,4 [HardwareIdsDatabase] PCI\VEN_1106&DEV_4149 = "viapdsk" PCI\VEN_1106&DEV_3149 = "viamraid" PCI\VEN_1106&DEV_3149&SUBSYS_80ED1043&REV_80 = "viamraid" PCI\VEN_1106&DEV_3149&SUBSYS_80ED1043 = "viamraid" PCI\VEN_1106&DEV_3149&CC_010400 = "viamraid" PCI\VEN_1106&DEV_3149&CC_0104 = "viamraid" PCI\VEN_1106&DEV_3164 = "viamraid" PCI\VEN_1106&DEV_3249 = "viamraid" [sCSI.Load] viapdsk = viapdsk.sys,4 viamraid = viamraid.sys,4 [sCSI] viapdsk = "VIA ATA/ATAPI Host Controller" viamraid = "VIA Serial ATA RAID Controller" I have the same motherboard (Asus A8V Deluxe) and this works perfect for me.
  22. Do a search in the DP folder for cr.exe and move it to the DP\S\CR\ folder and then reburn you unattended CD. Or download the newest Base and sound packs and recompile. Hope this helps.
  23. If you get the portcls.sys error, just reboot and setup will continue. You don't have to remove any drivers, just reboot.
  24. I extracted your .exe and changed the start /wait to just start and i still got the 101 error.
  25. Using your modified .exe after install i get the dreaded error 101. Something is not right with it just to let you know.
×
×
  • Create New...