
marcusj0015
MemberContent Type
Profiles
Forums
Events
Everything posted by marcusj0015
-
Windows 7 or Windows Vista Drivers will work fine in WinPE 3.0 becaue WinPE IS WINDOWS 7 the only difference it that some files have been removed and the page file has been removed and a few other tweaks
-
Using WMI Code Creator i found a way to get what i need BUT i dont know what else to do strComputer = "." Set objWMIService = GetObject("winmgmts:\\" & strComputer & "\root\CIMV2") Set colItems = objWMIService.ExecQuery( _ "SELECT * FROM Win32_BIOS",,48) For Each objItem in colItems Wscript.Echo "-----------------------------------" Wscript.Echo "Win32_BIOS instance" Wscript.Echo "-----------------------------------" Wscript.Echo "Manufacturer: " & objItem.Manufacturer Next how do i make it scan the manufacturer then if its HP it go to hp and execute the hp commands and if not hp scan sagin and check for gateway and so on and so forth?
-
im trying to write a script to detect which computer manufacturer made the computer Windows 7 is being installed upon (i need to have 1 DVD per archeticture because i have 4 pcs that are always getting f***ed up somehow) can anyone test this script? and if something is wrong can you help me correct the problem? BTW This script is for installing the correct OEM info for the control panel like the HP badge gets installed ONLY on hp machines wmic csproduct get name IF HP==GOTO :HP ELSE, Goto :GATEWAYCHECK :GATEWAYCHECK wmic csproduct get name IF Gateway==GOTO :Gateway ELSE, Goto :EMACHINESCHECK :EMACHINESCHECK wmic csproduct get name IF eMachine==GOTO :Emachines ELSE, Goto :TOSHIBACHECK :TOSHIBACHECK wmic csproduct get name IF Toshiba==GOTO :Toshiba ELSE, Goto :APPLECHECK :APPLECHECK wmic csproduct get name IF Apple==GOTO :Apple ELSE, Goto :ACERCHECK :ACERCHECK wmic csproduct get name IF Acer==GOTO :Acer ELSE, Goto :ASUSCHECK :ASUSCHECK wmic csproduct get name IF Asus==GOTO :ASUS ELSE, Goto :ASUSCHECK :HP %Systemroot%\OOBE\OEM\HP\HP.Reg :Gateway %Systemroot%\OOBE\OEM\Gateway\Gateway.Reg :Emachines %Systemroot%\OOBE\OEM\Emachine\Emachines.Reg :Toshiba %Systemroot%\OOBE\OEM\Toshiba\Toshiba.Reg :Apple %Systemroot%\OOBE\OEM\Apple\Apple.Reg
-
does anyone kknow a script to basically scan everywhere except the windows and program files folders for mp3's and movies and all of that and basically sort it by extension and add the locations to the librarys?
-
How to set the Boot Timeout Value
marcusj0015 replied to salberta's topic in Unattended Windows 7/Server 2008R2
i havent tried that setting but almost everything can be set with a .Reg script and try the HKLM section first so it is system wide instead of user specific report back if it works! -
script to automatically add locations to librbary (music, documents, movies)
-
WinSxS Folder In Boot.wim?
marcusj0015 replied to marcusj0015's topic in Unattended Windows 7/Server 2008R2
i wasnt trying to insult you i want to remove the WinSxS folder because it takes up about 500mb and yes i know that WinPE is based on Windows 7 i want to remove all unnessicary files from winpe becaue i want to use it as a recovery tool it has DaRT 6.5 Kaspersky firefox auslogics defrag and glary undelete i want to save as much space as i can in the winPE so that there is more RAM available for these programs to use i want it to be a perfect recovery tool thats the reason you need 1 gb of ram to install windows 7 becasue WinPE is loaded entirely to RAM and WinPE (When extracted) uses 1GB of RAM (give or take a few mb's) -
WinSxS Folder In Boot.wim?
marcusj0015 replied to marcusj0015's topic in Unattended Windows 7/Server 2008R2
im NOT talking about the Windows 7 Install.wim im talking about WinPE Boot.Wim ill test it in VirtualBox and check and ill update this thread when i have results -
is this needed? im trying to keep the image size down as small as possible
-
buthow do i add the kaspersky distro to the boot list???
-
ok thanks
-
well that makes sense but idk i have like 2 gbs of drivers so i would throw them in the wim i have my own uses for the $OEM$ Folders
-
whats the difference with the injection and the folder method? the injection method will compress them is all i can think of
-
KAV Rescue 10 isnt an app its a linux OS that scans windows drives for viruses with kaspersky installed in it basically its for hardcore viruses i want to add that as a boot option in the boot menu how do i do that?
-
how can i add kaspersky Rescue 10 to my Windows 7 WinPE Image and also how can i add WinRE to WinPE?
-
marcusj0015, here is what I used on XP with WMP11 and it works on W7 (have not looked at the WMP version): Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\MediaPlayer\Preferences] "AcceptedEULA"=dword:00000001 "FirstTime"=dword:00000001 [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\WindowsMediaPlayer] "GroupPrivacyAcceptance"=dword:00000001Enjoy, John. Thanks Bro added it to my huge reg file i already exported my media player settings but i didnt have the second part so maybne thats why it didnt work added will report back if it works for people that happen to find my thread ~EDIT~ IT DOES WORK!
-
i want a reg file or something that will skip the wmp 12 setup thing from poping up after starting it for the first time is there anything i can do?
-
what is the most stable (and feature rich) program for customizing windows 7? StefanRTR's Win Integrater RT 7 Lite 7 Customizer any other program you guys can think of?
-
Help With Windows 7 And Drivers
marcusj0015 replied to marcusj0015's topic in Unattended Windows 7/Server 2008R2
i get what your saying and im ujsed to using Hardware ID's also becasue of my dabbling in hackintosh and editing the plist and so forth but the computers are all completely different the old one has ac 97 the new one uses hd audio and basically its a big mess driver wise but you say use dism not vlite or anyother in 7 tool just dism? -
bascally i have 3 computers at home that i want to have drivers automatically installed for and i dont want a bunch of drivers being installed on the wrong computer where it will just clogg it up. i was thinking that i could some how make a script that would scan the CPU and based on which cpu was found it would install only the required drivers for that computer obviously i dont want to have to juggle 3 different install dvds one for each computer heres my script that i have so far its not really working very well so if someone can help or if someone else has other ideas... first script: REG EXPORT HKLM\Hardware\Description\System\CentralProcessor\0 C:/CPU.txt /y (this backs up the registry key that identifies the cpu) second script here is where it starts going to hell : FOR %windir%CPU.txt IN (ProcessorNameString) IF "AMD Sempron Processor 3400+" DO GOTO SEMPRON ELSE GOTO LOOP :SEMPRON :TURION :INTEL :LOOP FOR %windir%CPU.txt IN (ProcessorNameString) IF "Intel® Core i3 CPU 530 @ 2.93GHz" DO GOTO INTEL ELSE GOTO LOOP2 :LOOP2 FOR %windir%CPU.txt IN (ProcessorNameString) IF "AMD Turion Dual-Core RM-75" DO GOTO TURION ELSE GOTO EXIT :EXIT exit
-
I am using C#. To mount and and commit and service the image, I use imagex and dism from the windows 7 WAIK. That means this program should not work on XP since WAIK for 7 does not support XP (Sorry this problem is from Microsoft). Regarding the packages I think we could look into that later. Because I want to finish these functions: 1. Integrate Language (Done) 2. Integrate Updates (Done) 3. Basic Unattended The tool should know what updates and languages are already installed (You could call this a function two) After that I will give the program to the people to test it and then implement other functions @Chester^,@1to1,@filmbot,@TheWalrus Thanks for your interest Regards hi im new here i have been trying to learn C# but i pretty much stopped after 6 weeks because MS dropped support for my Zune 120 i kno im one of a dozen people with a zune but any who i have an old piece of s*** computer and when i try to have my realtek drivers automatically installed with vlite it pops up about 25 times and takes about half an hour to get past that so if you could somehow make it not do that that would be awesome if thats even possible if you cant its not a big deal but yeah im testing right now -EDIT- i just tested it it vlited it down to 1.3gb for the install.wim and only the ulimate version is in there and it says please select a version from the list and there is no list