How to make a multi hardware image
-
[quote=“Varadin, post: 15621, member: 14268”]Hi Tom your solution is good in theory. if you manage a huge computer park it is far most easy to keep in hand one usb nic and one pci nic and upload the driver then manage a 120 go windows image … and this technique permit to add driver on the fly into your repository, upgrade them easily or remove them if they are not need anymore[/quote]
I understand what you’re saying and agree to a point. I work for a school district so every year we bid for the system we need to replace others. Because of this, we actually only maintain 6 different systems. Our images, with all drivers of all systems included with all software for the base is only 20GB. So for us, it’s just easier to build the image with the drivers embedded.
Different strokes for different folks I guess.
-
I agree Tom, I use a similar method as what you have described. But I as well work in a school corporation and we only keep about 5 - 6 models on hand, and normally share drivers. Since we use the same company, it normally just involves dropping in the new driver, sysprepping and pushing out the new image.
I would be interested in looking at your scripts and information to see how I can streamline my processes a little better.
But on the same note, a colleague of mine uses the same process as Lee has described,
-
I wasn’t feeling too well today, so I was not at work, but I’ll try to get something here tomorrow.
-
No rush, my teachers are busy teaching again so I can go back to playing and learning. Windows 7 got thrown on me last minute last year, so this year I want to take some time to prepare and work the bugs out; I learned to sysprep and all that jazz, now I need to streamline and fix some hiccups.
-
We have a network share that we just placed all the drivers, but this could easily be changed to be right on the
@echo off
net use z: \<location of drivers> <ADPASSWORD> /user:<ADUSERNAME>
for /r z:\ %%i in (*.inf) do pnputil -a %%i
net use /del z:Thanks,
-
Ahh yes, another Active Directory environment.
I’ve been talking with our technology director, and I have him almost convinced that an Active Directory environment would be good for us.
Any experience with a Novell Network? I haven’t been able to get anything to path on my Novell network without first logging on, and if there are no NIC drivers, there is no log on. If there is no log on, there is no access. Are there similar ways to connect to content via the command line? Ideas?
-
net use z: \<location of drivers> <ADPASSWORD> /user:<ADUSERNAME>
This is for a Hardware (mostly) independent image. So theorethically, you would just create a VM. It’s network drivers should work with any Windows.
Change the ADPASSWORD and ADUSERNAME info out for your novell stuff.
This script is run before the image is uploaded. So basically, the image comes prepackaged with all the needed drivers.
-
I’ll give it a shot! I normally use a virutal image and install the novell client before I push the image, there is just one specific model that has a hiccup with the NIC drivers. I’ll let you know what I figure out with the scripts.
Not trying to be lazy, I know that Novell and AD are both LDAP network I just didn’t know if the commands transposed
-
Windows commands always do. Good thing for SAMBA.
-
Awesome, I got a form of it working. However if I don’t have the Novell client installed on the computer, it will not map the drive. It tries, it just never succeeds. This should more than work for my student and staff images. Thanks a bunch!
I would just like to figure out how to map the drive without installing the Novell client, but that isn’t your problem