
mc134
MemberContent Type
Profiles
Forums
Events
Everything posted by mc134
-
Autoris help needed with RVMaddons
mc134 replied to Gaprofitt's topic in Unattended Windows 2000/XP/2003
http://www.ryanvm.net/msfn/ -
Need help in moving startmenu shortcut, thanks
mc134 replied to illusions's topic in Unattended Windows 2000/XP/2003
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. -
Gonna throw this machine out of the window in a minute!
mc134 replied to LeveL's topic in Unattended Windows 2000/XP/2003
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 -
Repair option not available anymore
mc134 replied to RickT's topic in Unattended Windows 2000/XP/2003
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. -
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.
-
Help needed to 'Undo' a registry tweak.
mc134 replied to Sanjay's topic in Unattended Windows 2000/XP/2003
I'm glad i could be some help. -
Place sleep.exe in the system32 folder
-
Help needed to 'Undo' a registry tweak.
mc134 replied to Sanjay's topic in Unattended Windows 2000/XP/2003
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. -
Quick search is all you needed... http://www.msfn.org/board/index.php?showtopic=34932
-
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.
-
How do I use Net use in my RunOnceEx.cmd
mc134 replied to clivebuckwheat's topic in Unattended Windows 2000/XP/2003
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 -
How do I add something to Control Panel?
mc134 replied to ZileXa's topic in Unattended Windows 2000/XP/2003
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. -
How to NOT include Outlook Express.
mc134 replied to BoardBabe's topic in Unattended Windows 2000/XP/2003
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! -
Check this out for your wide-screen gaming... WideScreenGamingForum
-
Installing iTunes without QuickTime impossible?
mc134 replied to Bâshrat the Sneaky's topic in Application Installs
Bashrat...go here to download without itunes... QuickTime StandAlone Hope it works for you. -
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.
-
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.
-
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?
-
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"
-
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!!
-
Installing Winxp Pro Sp2 On Asus A8v / Wd Raptor
mc134 replied to HolgerDK's topic in Device Drivers
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. -
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.
-
Bts Driverpacks - General Discussion
mc134 replied to Bâshrat the Sneaky's topic in The General Stuff
If you get the portcls.sys error, just reboot and setup will continue. You don't have to remove any drivers, just reboot. -
I extracted your .exe and changed the start /wait to just start and i still got the 101 error.
-
Using your modified .exe after install i get the dreaded error 101. Something is not right with it just to let you know.