IsLaptop with OSD

I

Ian Fraser

Guest
Hi

I'm currently using MDT 2008 with SMS 2003 OSD. Would you be able to advise
on the easiest way to check for laptop / or desktop hardware and install some
apps based on these conditions. I'd also like to manage this on a global
basis.

I was intending to use the rules and customsettings.ini under ZTI, but do I
need to process a task sequence and query using the islaptop condition? How
should I do this from the OSD Program tasks?

Many Thanks

Ian Fraser
 


D

Dietmar

Guest
Hi!

I solved this with the WMI query in the task sequencer. For example: I have
to install the software for
HP QuickLaunch Buttons. So I made the application in the MDT mmc. Then I
added the task sequence to install the
software in the Restore computer and user setting phase of deployment. On
the options pane of the task sequence
I added an WMI option: SELECT * FROM Win32_Computersystem WHERE Manufacturer
= "Hewlett-Packard" AND Model like "%nc6320%". This works for me.
An other solution you can read here:
http://blogs.technet.com/benhunter/...ps-and-tricks-identifying-hardware-types.aspx
or you use the deployment database.

Greetings Didi


"Ian Fraser" <IanFraser@discussions.microsoft.com> schrieb im Newsbeitrag
news:5948B1D0-F27F-427E-AA3C-C215B4F442F4@microsoft.com...
> Hi
>
> I'm currently using MDT 2008 with SMS 2003 OSD. Would you be able to
> advise
> on the easiest way to check for laptop / or desktop hardware and install
> some
> apps based on these conditions. I'd also like to manage this on a global
> basis.
>
> I was intending to use the rules and customsettings.ini under ZTI, but do
> I
> need to process a task sequence and query using the islaptop condition?
> How
> should I do this from the OSD Program tasks?
>
> Many Thanks
>
> Ian Fraser


 
I

Ian Fraser

Guest
Thanks very much for that.

I seem to have a further problem with the installation of the application
associated by a role. It does not work via a rule. I have checked the SQL
connectivity using ztigather run manually from a folder on the reference
machine and it is fine. It looks like it does not recognise that there is an
application associated, even though its there in the GUI and the associate is
correct. Is this a bug?

Thanks in advance!

"Dietmar" wrote:

> Hi!
>
> I solved this with the WMI query in the task sequencer. For example: I have
> to install the software for
> HP QuickLaunch Buttons. So I made the application in the MDT mmc. Then I
> added the task sequence to install the
> software in the Restore computer and user setting phase of deployment. On
> the options pane of the task sequence
> I added an WMI option: SELECT * FROM Win32_Computersystem WHERE Manufacturer
> = "Hewlett-Packard" AND Model like "%nc6320%". This works for me.
> An other solution you can read here:
> http://blogs.technet.com/benhunter/...ps-and-tricks-identifying-hardware-types.aspx
> or you use the deployment database.
>
> Greetings Didi
>
>
> "Ian Fraser" <IanFraser@discussions.microsoft.com> schrieb im Newsbeitrag
> news:5948B1D0-F27F-427E-AA3C-C215B4F442F4@microsoft.com...
> > Hi
> >
> > I'm currently using MDT 2008 with SMS 2003 OSD. Would you be able to
> > advise
> > on the easiest way to check for laptop / or desktop hardware and install
> > some
> > apps based on these conditions. I'd also like to manage this on a global
> > basis.
> >
> > I was intending to use the rules and customsettings.ini under ZTI, but do
> > I
> > need to process a task sequence and query using the islaptop condition?
> > How
> > should I do this from the OSD Program tasks?
> >
> > Many Thanks
> >
> > Ian Fraser

>
>

 
J

Justin

Guest
Hi Ian,

Are you looking to install on all laptops or just specific make/models?

Thanks

Justin

"Ian Fraser" <IanFraser@discussions.microsoft.com> wrote in message
news:5948B1D0-F27F-427E-AA3C-C215B4F442F4@microsoft.com...
> Hi
>
> I'm currently using MDT 2008 with SMS 2003 OSD. Would you be able to
> advise
> on the easiest way to check for laptop / or desktop hardware and install
> some
> apps based on these conditions. I'd also like to manage this on a global
> basis.
>
> I was intending to use the rules and customsettings.ini under ZTI, but do
> I
> need to process a task sequence and query using the islaptop condition?
> How
> should I do this from the OSD Program tasks?
>
> Many Thanks
>
> Ian Fraser


 

Top