www.windows-noob.com: how can I target applications to specific hardware - www.windows-noob.com

Jump to content

  • (2 Pages)
  • +
  • 1
  • 2
  • You cannot start a new topic
  • You cannot reply to this topic

how can I target applications to specific hardware step by step guide

#21 User is offline   boognish Icon

  • Member
  • PipPip
  • Group: Members
  • Posts: 25
  • Joined: 05-August 09

Posted 13 October 2009 - 07:26 PM

Quote

I had to use CSProduct Get Version to get "ThinkCenter M58".

Will this work the same as the previous SELECT statement?
SELECT * FROM Win32_ComputerSystem WHERE model Like "%ThinkCentre M58%"

Or, would I have to change a part of it?



I have the same problem. It looks like Lenovo does things a bit different. I cant do a query to cover all "ThinkPads", I have to know all product "types" such as 6463 for a T61. If there is another way, Im all ears.
0

#22 User is offline   wmmayms Icon

  • Advanced Member
  • PipPipPip
  • Group: Moderators
  • Posts: 207
  • Joined: 23-January 09
  • Gender:Male
  • Location:Sweden
  • Interests:Soccer, Computers

Posted 14 October 2009 - 09:01 AM

View Postboognish, on 13 October 2009 - 09:26 PM, said:

I have the same problem. It looks like Lenovo does things a bit different. I cant do a query to cover all "ThinkPads", I have to know all product "types" such as 6463 for a T61. If there is another way, Im all ears.


This query will target all thinkpad computers.

select *  from  SMS_R_System inner join SMS_G_System_COMPUTER_SYSTEM_PRODUCT on SMS_G_System_COMPUTER_SYSTEM_PRODUCT.ResourceID = SMS_R_System.ResourceId where SMS_G_System_COMPUTER_SYSTEM_PRODUCT.Version like "ThinkPad%"


enjoy :)
MCTS: SCCM, Active Directory, Vista
LinkedIn
Twitter
0

#23 User is offline   boognish Icon

  • Member
  • PipPip
  • Group: Members
  • Posts: 25
  • Joined: 05-August 09

Posted 14 October 2009 - 01:17 PM

View Postwmmayms, on 14 October 2009 - 04:01 AM, said:

This query will target all thinkpad computers.

select *  from  SMS_R_System inner join SMS_G_System_COMPUTER_SYSTEM_PRODUCT on SMS_G_System_COMPUTER_SYSTEM_PRODUCT.ResourceID = SMS_R_System.ResourceId where SMS_G_System_COMPUTER_SYSTEM_PRODUCT.Version like "ThinkPad%"


enjoy :)



Thanks!! Im a Noob, is it correct to assume that this cannot be used in a task sequence?
0

#24 User is offline   wmmayms Icon

  • Advanced Member
  • PipPipPip
  • Group: Moderators
  • Posts: 207
  • Joined: 23-January 09
  • Gender:Male
  • Location:Sweden
  • Interests:Soccer, Computers

Posted 14 October 2009 - 02:52 PM

View Postboognish, on 14 October 2009 - 03:17 PM, said:

Thanks!! Im a Noob, is it correct to assume that this cannot be used in a task sequence?


This query is used for creating collections or console queries.
If you wan´t to use it within a TS it will have to look a bit diffrent.
MCTS: SCCM, Active Directory, Vista
LinkedIn
Twitter
0

#25 User is offline   boognish Icon

  • Member
  • PipPip
  • Group: Members
  • Posts: 25
  • Joined: 05-August 09

Posted 14 October 2009 - 03:19 PM

View Postwmmayms, on 14 October 2009 - 09:52 AM, said:

This query is used for creating collections or console queries.
If you wan´t to use it within a TS it will have to look a bit diffrent.



Can you point me down a path?
0

#26 User is offline   dirtydom Icon

  • Newbie
  • Pip
  • Group: Members
  • Posts: 9
  • Joined: 04-November 09

Posted 06 November 2009 - 01:59 PM

A few questions about this process.

About adding packages for drivers...
1. Can I add multiple programs by simply adding multiple programs to the Sequence? What I mean is... I added a software package for a single device... In this case an HP NC2400. I then proceeded to add a quiclaunch driver setup.exe program and then a chipset.exe. I then designated the same package twice under the folder I created for the NC2400 and just designating the two programs seperately.

If yes then...
2. When I setup the package I am designating source files but then I am unsure as to how that fits with multiple programs. In this attempt I simply designated a folder \\seervername\drivers$\nc2400 which contained both the folders for the quicklaunch and the chipset and that didn't give me any trouble.

About adding driver packages instead of software packages.

1. I am only creating a software package because I have an MSI or EXE to install instead of an INF right? If I have an INF I create a driver package instead. I think I already saw that somewhere yesterday but I wanted to make sure.

Thank you,




View Postanyweb, on 27 October 2008 - 04:22 AM, said:


Create a Package



place a checkmark in this package contains source files and click on Set


fill in the path to where you copied the driver (a driver share on your SCCM server)

Attached image(s)

  • Attached Image

0

#27 User is offline   dirtydom Icon

  • Newbie
  • Pip
  • Group: Members
  • Posts: 9
  • Joined: 04-November 09

Posted 12 November 2009 - 04:43 PM

This method worked... I don't know if it is best practice or not. it seems like it's AOK.

[quote name='dirtydom' date='06 November 2009 - 08:59 AM' timestamp='1257515973' post='4404']
A few questions about this process.
0

#28 User is offline   jamitupya Icon

  • Advanced Member
  • PipPipPip
  • Group: Members
  • Posts: 183
  • Joined: 02-April 09
  • Gender:Male
  • Location:Tokyo, Japan

Posted 24 November 2009 - 05:16 AM

FYI if you wish to NOT install on a specific platform

SELECT * FROM Win32_ComputerSystem WHERE NOT Model Like "%VMware Virtual Platform%"
Chaos, Panic, Disorder, My work here is done.


Greg>


http://jp.linkedin.com/in/gjggreen
http://twitter.com/diekittay
0

#29 User is offline   xstnc Icon

  • Member
  • PipPip
  • Group: Members
  • Posts: 20
  • Joined: 04-November 09
  • Gender:Male
  • Location:Norway

Posted 09 April 2010 - 06:01 AM

Is it possible to query 2 models at once? Say HP 6930p and 8440p?
How would it look like?
Would I have to make 2 querys, or one?

Found the solution..

Connect it with: OR Model Like "%newvalue%"
for as many times as you need!
0

#30 User is offline   emmathews83 Icon

  • Member
  • PipPip
  • Group: Members
  • Posts: 19
  • Joined: 13-July 10

Posted 29 July 2010 - 02:30 PM

When you create the quickset for a computer do you also have to have a driver package create with all of the other drivers for that model of the laptop? I'm trying to did it for the E6510, E6410, E6500 and E6400 series and quickset was replaced with Control Point.
0

#31 User is offline   anyweb Icon

  • Administrator
  • PipPipPip
  • Group: Root Admin
  • Posts: 2,716
  • Joined: 28-September 06
  • Gender:Male
  • Location:Sweden
  • Interests:Deploying Operating systems and more with SCCM

Posted 30 July 2010 - 02:00 AM

you don't have to but you certaintly can
My linkedin profile at > linkedin.com
Follow me on Twitter > ncbrady
Follow windowsnoob.com on Twitter > windowsnoob
My blog on myITforum
0

#32 User is offline   emmathews83 Icon

  • Member
  • PipPip
  • Group: Members
  • Posts: 19
  • Joined: 13-July 10

Posted 30 July 2010 - 11:32 AM

How would I create a package that has the quickset and the rest of the drivers? Would I just do the quickset then copy all of the drivers into the folder that it creates? Then create the quickset package?
0

  • (2 Pages)
  • +
  • 1
  • 2
  • You cannot start a new topic
  • You cannot reply to this topic

2 User(s) are reading this topic
0 members, 2 guests, 0 anonymous users





Locations of visitors to this page