Struggling with collection Query

Hi guys,
I'm struggling to wrap my head around the queries for collection memberships.
I've got quite a few computer collections attached to AD group memberships that I then use to deploy applications to. That way the helpdesk guys just put a PC in the group and the deployment takes care of itself.
So I just us SYSTEM RESOURCE + SYSTEM GROUP is equal to GROUP NAME in the query designer. Simple.
What I'm trying to do now is create an uninstall collection for applications that have specific licenses. No matter how I put it through the designer I can't figure it out.
In plain language I want to say:
If a computer has X application but is NOT in the AD group
I can then push an uninstall deployment to that collection. Can anybody point me in the right direction?

Assuming you've got the computer objects in your first collection, you can easily use that as an exclude collection to your second collection. So on your second collection create a query for the application and add and exclude for the first collection.
My Blog: http://www.petervanderwoude.nl/
Follow me on twitter: pvanderwoude

Similar Messages

  • Collection query for computers with windows management framework 3.0

    Hi,
    collection query for computers with windows management framework 3.0, but I cant found a way. I cant see that it is in the inventory data for SMS_G_System_ADD_REMOVE_PROGRAMS_64.DisplayName.
    So any way to get computers with windows management framework 3.0?
    /SaiTech

    select SMS_R_SYSTEM.ResourceID,SMS_R_SYSTEM.ResourceType,SMS_R_SYSTEM.Name,SMS_R_SYSTEM.SMSUniqueIdentifier,SMS_R_SYSTEM.ResourceDomainORWorkgroup,SMS_R_SYSTEM.Client from SMS_R_System inner join SMS_G_System_SoftwareProduct on SMS_G_System_SoftwareProduct.ResourceId
    = SMS_R_System.ResourceId where SMS_G_System_SoftwareProduct.ProductName like "Windows Management Framework 3.0%"
    That won't work because as mentioned, it doesn't appear in ARP.
    Torsten's suggestion will work or you can resort to software/hardware inventory using the info at
    http://serverfault.com/questions/555100/methods-to-detect-version-of-windows-management-framework
    Jason | http://blog.configmgrftw.com

  • A simplish sqlplus query I'm struggling with!

    Can anyone help me with this query
    I have two tables
    I want to select all the fields from table1 plus one extra variable field (a Boolean) tacked on the end.
    The value of the extra field is set dependent on the following condition.
    If The value of Field 3 of table1 exists in column 4(field 4) of table2. Then "Y" Else "N"
    I think my query needs to look something like this
    Select t1.*, Case when con1 then ‘Y’;
         When con2 then ‘N’;
    End CASE;
    From table1 t1,table2 t2
    Where exists(select * from table2 t2 where t2.field4=t1.field3) con1
    Thanks

    Here is one of the ways.
    Select t1.*, 'Y'
    From table1 t1,table2 t2
    Where exists(select 'X'
                   from table2 t2
                  where t2.field4=t1.field3)
    union all
    Select t1.*, 'N'
    From table1 t1,table2 t2
    Where not exists(select 'X'
                      from table2 t2
                     where t2.field4=t1.field3);

  • How to Merge Report of ManagedBy Attribute with Collection Membership

    I would like to merge the query below:
    SELECT
      v_R_System.Name0
      ,v_R_System.managedBy0
      ,v_R_User.Full_User_Name0
      ,v_R_User.Distinguished_Name0
    FROM
      v_R_System
      INNER JOIN v_R_User
        ON v_R_System.managedBy0 = v_R_User.Distinguished_Name0
    With a query similar to that in the built-in "All Resources in a Specific Collection" report:
    SELECT
        fcm.Name,
        CASE WHEN coll.CollectionType = 1 THEN fcm.SMSID ELSE fcm.Name END as Id,
     CASE WHEN ResourceType = 3 THEN '*' ELSE '' END as C066,
     CASE WHEN ResourceType = 4 THEN '*' ELSE '' END as C067,
     CASE WHEN ResourceType = 5 THEN '*' ELSE '' END as C068,
     SiteCode,
     CASE IsDirect
      WHEN 1 THEN '*'
      WHEN 0 THEN ''
     END AS C069,
            coll.CollectionType
    FROM fn_rbac_FullCollectionMembership(@UserSIDs)  fcm
    INNER JOIN fn_rbac_Collection(@UserSIDs)  coll on fcm.CollectionID = coll.CollectionID
    WHERE fcm.CollectionID = @ID
    The merged query would be used to build a table that has System_Name, Managed_By, Is_Member as its fields.  The Is_Member field would contain a * if the system is a member of the designated collection, and be null if it is not.

    Untested, because again, I don't have managedby attribute being pulled in via system disc in my lab.  And yeah, you either never said it, or I never read your request that way, that you wanted to 2 collectionIDs.
    ;with CollMembers as
     Select coll.Collectionid, fcm.resourceid, coll.name,
     case when coll.collectiontype=1 then fcm.smsid else fcm.name end as ID,
     case when fcm.resourcetype=3 then '*' else '' END as 'UserGroup',
     case when fcm.resourcetype=4 then '*' else '' END as 'User',
     case when fcm.resourcetype=5 then '*' else '' END as 'System',
     fcm.SiteCode,
     case fcm.isDirect
      when 1 then '*'
      when 0 then '*'
      end as 'Is Direct Membership',
     case coll.CollectionType
      when 0 then 'Other'
      when 1 then 'User'
      when 2 then 'Device'
      end as 'CollectionType'
     from v_fullcollectionmembership fcm
     join v_collection coll on fcm.collectionid=coll.collectionid
     where coll.CollectionID=@CollectionIDWhereIWantaStar 
     Select s1.Name0 as 'ComputerName',
     usr.Full_User_Name0 as 'Assignee',
     case when CollMembers.Resourceid=s1.Resourceid then '*'
     else '' end as 'Member of Collection'
     from v_r_system s1
     join v_r_user usr on s1.managedby0=usr.Distinguished_name0
     left join Collmembers on CollMembers.resourceid=s1.resourceid
     join v_fullcollectionship fcm on fcm.resourceid=s1.resourceid
     where fcm.collectionid=@CollectionIDOfTheLargerCollection 
     order by 'Member of Collection' desc, s1.name0
    Standardize. Simplify. Automate.
    One final tweak and we've got it!  Thanks Sherry!

  • Issues with Content Query Web Part List Override

    I have modified a Content Query web part to show all checked out documents across my site collection. I used this property to get the checked out documents:
    <property name="QueryOverride" type="string"><![CDATA[<Where><Geq><FieldRef Name="CheckoutUser" LookupId="TRUE"/><Value Type="int">0</Value></Geq></Where><OrderBy><FieldRef
    Name="CheckoutUser"/></OrderBy>]]></property>
    It fails when trying to view across the site collection and gives this error:
    "There is a problem with the query that this webpart is issuing. Check the configuration of this webpart and try again."
    However, it works for sub-sites.
    Thus, I followed this blog to modify the ListsOverride property: http://geekswithblogs.net/simonh/archive/2013/05/08/increasing-the-number-of-lists-a-content-query-webpart-can.aspx I modified the property to:
    <property name="ListsOverride" type="string"><![CDATA[<Lists Servertemplate="101" MaxListLimit="2000"></Lists>]]></property>
    But now I am getting this response:
    This query has returned no items. To configure the query for this Web Part, open the tool pane.
    Can anyone tell me what the problem is? I cannot find anything in the ULS logs that would indicate a timeout from the SQL server or any other type of error.

    Hi Susan,
    According to your description, my understanding is that there is something wrong when you override content query web part property.
    As you said, the query override works for sub-site, I suggest you check the data in the parent site whether the data is valid.
    Here are some detailed articles for your reference:
    http://rmanimaran.wordpress.com/2010/10/19/getfind-all-checked-out-documents-from-a-document-library-using-caml/
    http://msdn.microsoft.com/en-us/library/office/aa981241(v=office.14).aspx
    Best Regards
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Zhengyu Guo
    TechNet Community Support

  • SCCM collection Query - Wrong output

    Hi 
    We are working on Creating Dynamic SCCM collection which get populated based on following two condition
    1) Belongs to a Test OU in AD
    2) Doesn't have scom agent installed
    We have been trying to work out why following query doesn't populate collection with correct object instead populate by every object that exist in this OU. Seems like condition after AND is totally ignored. is there anything I am doing wrong here
    select SMS_R_SYSTEM.ResourceID,SMS_R_SYSTEM.ResourceType,SMS_R_SYSTEM.Name,SMS_R_SYSTEM.SMSUniqueIdentifier,SMS_R_SYSTEM.ResourceDomainORWorkgroup,SMS_R_SYSTEM.Client from SMS_R_System inner join SMS_G_System_SERVICE on SMS_G_System_SERVICE.ResourceID =
    SMS_R_System.ResourceId where SMS_R_System.SystemOUName = "AD.local/Servers/DEV/Test" and SMS_G_System_SERVICE.DisplayName != "Microsoft Monitoring Agent"
    Where as below query is working and condition after AND is calculated and collection get populated with right objects.
    select SMS_R_SYSTEM.ResourceID,SMS_R_SYSTEM.ResourceType,SMS_R_SYSTEM.Name,SMS_R_SYSTEM.SMSUniqueIdentifier,SMS_R_SYSTEM.ResourceDomainORWorkgroup,SMS_R_SYSTEM.Client from SMS_R_System inner join SMS_G_System_SERVICE on SMS_G_System_SERVICE.ResourceID =
    SMS_R_System.ResourceId where SMS_R_System.SystemOUName = "AD.MONASH.EDU/Managed/Servers/DEV/OCIO/SplunkTest" and SMS_G_System_SERVICE.DisplayName = "Microsoft Monitoring Agent"
    We tried with different combination such as "not like", "is null" etc etc. seems to us that as soon as we try have negative criteria after AND that criteria has been ignored.
    To my little knowledge of SQL query, condition after AND is not optional and has to meet, if it doesn't query should return no value.
    is this same with SCCM collection query? will appreciate if some one can shade some light here.
    Thank you in advance. 

    Thank you All for the reply
    Our End Goal is to be able to automate software/configuration deployment based on criteria we set. SCOM is first of the rank if you like and we want this to be hands off approach so when a server move into certain OU based on criteria server get populated
    into SCCM collection and SCCM pushes out software/configuration packages out to the server.
    but having said that if we have to create two collection to satisfy our two criteria than most likely we will need number of collections depending on numbers and types of criteria. This will make managing collection and their relationship more challenging
    and not sure if that is the path we want to take. This will need to be discussed through unless we find better solution.
    Thank you again

  • How to get SQL statement from (Collection) query.execute();

    We have a JDO Persistence class ClassName that execute query using following code. After this statement get executed, record does not get updated in the DB. Is there a way to check what SQL statement got submitted in the (Collection) query.execute(); ??? <br><br>
    Extent extent = pm.getExtent(ClassName.class, false); <br>
    Query query = null; <br>
    try { <br>
    query = pm.newQuery(extent, filter); <br>
    Collection results = (Collection) query.execute();<br>
    Iterator i = results.iterator();<br>
    if (i.hasNext()) {<br>
    ...<br>
    }<br>

    You can always find out the names of tables that are views, using java.sql.DatabaseMetaData and its getTables() method.
    This tends to be a nice source of examples:
    javaalmanac.com
    However, if you're asking for the underlying SQL used to CREATE VIEW, I don't see anything in the API that will give you that. After all, JDBC shouldn't have to know if it's dealing with an ordinary table or a view. I think you'd have to ask your DBA for the underlying SQL.
    Once you have it, what do you plan to do with it?
    %

  • SCCM Windows 7 Collection Query 32 bit

    I'm trying to get 32-bit Windows 7 collection on SCCM 2007.
    Here is my query:
    select SMS_R_SYSTEM.ResourceID,SMS_R_SYSTEM.ResourceType,SMS_R_SYSTEM.Name,SMS_R_SYSTEM.SMSUniqueIdentifier,SMS_R_SYSTEM.ResourceDomainORWorkgroup,SMS_R_SYSTEM.Client from SMS_R_System inner join SMS_G_System_COMPUTER_SYSTEM on SMS_G_System_COMPUTER_SYSTEM.ResourceID
    = SMS_R_System.ResourceId where (SMS_R_System.OperatingSystemNameandVersion like "%Workstation 6.1%" or SMS_R_System.OperatingSystemNameandVersion like "%Windows 7%") and SMS_G_System_COMPUTER_SYSTEM.SystemType = "x86-based PC"
    However, this query does not pull in all the systems.  Is there anything wrong with this query?
    Thank you,

    try this
    select SMS_R_SYSTEM.ResourceID,SMS_R_SYSTEM.ResourceType,SMS_R_SYSTEM.Name,SMS_R_SYSTEM.SMSUniqueIdentifier,SMS_R_SYSTEM.ResourceDomainORWorkgroup,SMS_R_SYSTEM.Client from SMS_R_System inner join SMS_G_System_OPERATING_SYSTEM on SMS_G_System_OPERATING_SYSTEM.ResourceID
    = SMS_R_System.ResourceId inner join SMS_G_System_SYSTEM on SMS_G_System_SYSTEM.ResourceId = SMS_R_System.ResourceId where SMS_G_System_OPERATING_SYSTEM.Caption like "%Microsoft Windows 7%" and SMS_G_System_SYSTEM.SystemType = "X86-based PC"
    Blog: http://theinfraguys.com
    Follow me at Facebook
    The Infra Guys Facebook Page
    Join the Singapore System Center Admin Group
    SG System Center Admin Group
    Please remember to click Mark as Answer on the answer if it helps you in anyway

  • Device Collections - query for HyperV servers

    Is it possible to devise a Device Collection query that would only list servers running with the HyperV role ?

    select *  from  SMS_R_System inner join SMS_G_System_SERVICE on SMS_G_System_SERVICE.ResourceId = SMS_R_System.ResourceId
    where SMS_G_System_SERVICE.DisplayName = "Hyper-V Virtual Machine Management"
    Cheers
    Paul | sccmentor.wordpress.com

  • SCCM 2012 Collection Query

    Hi All,
    I am using SCCM 2012 SP1 with SQL 2008 R2 SP1. I have scenario as below.
    App A is targeted to user based collection as Available (Optional).
    App B needs to be targeted to users who has successfully installed App A as Required(Mandatory).
    Note : As per application behaviour we cannot target App B to machine(Device) based collection, otherwise I would have created a query to pull out all the machines in a collection where App A is successfully installed on base of Add/Remove
    program display name.
    Question : I want to create a user collection query which will pullout last logged on user for all the machines where
    App A is installed successfully, so that I can target App B to this user based collection as Required(Mandatory). In this way if in future any other user is installing App A then that user will also get pulled out automatically to this user
    based collection.
    Its bit urgent for me. Request you please help me to get this query or let me know if there is any other way to achieve this.
    Thanks & Regards Uttam

    Hi Torsten,
    I really have not thought about supersedence but App B is not the upgrade or replacement for App A. If it would then we would have defined the relationship in supersedence. But App A and App B are entirely different applications. Functionality of App B depends
    upon App A, so both has to be there on the machine.
    Only the thing is App B should go to the users who has already installed App A on their machines. For this I would like to create user based collection but confused regarding query. How can we achieve this? I am thinking of to modify the below query
    to pull out last logged on user from the below collection query. I am using SCCM 2012 SP1 with SQL 2008 R2 SP1. How can I modify the below query?
    select SMS_R_SYSTEM.ResourceID,SMS_R_SYSTEM.ResourceType,SMS_R_SYSTEM.Name,SMS_R_SYSTEM.SMSUniqueIdentifier,SMS_R_SYSTEM.ResourceDomainORWorkgroup,SMS_R_SYSTEM.Client from SMS_R_System where ResourceId in  (select ResourceId from SMS_G_System_ADD_REMOVE_PROGRAMS
    where DisplayName="App A ARP name" and Version = "1.0.0")
    Thanks & Regards Uttam

  • Prob update cfindex with large query

    Hi all,
    I know i am using an old version standard MX 6.1 but ...
    I work on windows 2000 server.
    I have created 2 collections.
    Then i have updated one of them with a query : 3600 records
    That works fine.
    Then i have updated the second with a query also but 15600
    records.
    <cfindex> return no err but nothing in the collection.
    All collections less than 125000 docs.
    Yesterday, this update may be with 15500 records have worked
    fine.
    There is no problem disk space.
    Any one have an idea?
    Thanks.
    Didier

    This has been solved.
    In fact update works fine.
    But i did not know the limit of cfsearch at 64K.
    And as it returns no err but empty result ...
    Thanks

  • Struggling with one iTunes 10 Library and two kids

    I'm struggling with iTunes 10 and the music Library.  My two kids both have ipod touches, and each wants a different subset of whats in the library.  Whats the best way to manage this when each kid wants to add/delete music? 
    Should each kid be running iTunes from their own profile?  But then could I keep the one libary or will I need seperate copies?   Could we instead make seperate playlists for each kid with their selection and somehow sync to those songs only?
    My iTunes library consisting of a large collection of mp3 files, which I'd rather not have multiple copies of on the same computer.  In the preferences > Advanced settings I've specified the media folder location path and selected the checkboxes to keep the folder organized and to copy media when added to the library.  In Preferences > Devices, I've selected to prevent automatic syncs and somewhere else I've selected to manually manage music selections.

    Jon,
    You should be able to do what you want. However, keep in mind these caveats, by design, the iphone will sync itunes content with ONE computer at a time. Thus, if you start syncing such content to your wife's phone from your account if you decide to switch to her account, all itunes content on her phone will first be erased & then replaced with the content from her account. You can sync as many devices as you want to the same itunes account, there is no limit. So yes, you can sync itunes content from your account to your wife's phone.
    First, disable auto sync, under preferences, in both your accounts.
    What you would do is make sure that there are no checks in any boxes regarding itunes content under your wife's login...the only thing you'll be syncing under her login is contacts & calendars. When she connects her phone under your login, make sure there are no checks in any boxes regarding contacts or calendars, the only thing you'll be syncing is itunes content.
    Since you can sync as many devices as you want to the same itunes account, itunes will keep everything straight by device. Thus, once you set things up, from that point on itunes will recognize what device is what & sync accordingly.

  • Content Tab: None of the fact tables are compatible with the query request

    Hi All,
    **One thing I am not clear yet of all my years with OBIEE is working with the content tab in BMM.**
    I have made a rpd the joins in physical layer as shown below:
    https://picasaweb.google.com/114804305606242416264/OBIEEError#5663056545119428530
    And the BMM layer as:
    https://picasaweb.google.com/114804305606242416264/OBIEEError#5663056519553812930
    Error I am getting when i run a request from the 3 columns from the selected 3 tables is:
    Dim - Comment Code Details
    Fact - Complaint
    Dim - Service Details
    Error Codes: OPR4ONWY:U9IM8TAC:OI2DL65P
    State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. [nQSError: 14020] None of the fact tables are compatible with the query request Sr Num:[DAggr(Fact - Complaint.Sr Num by [ Dim - Service Details.Sr Cat Type Cd, Dim - Comment Code Details.Cmtcode name] )]. (HY000).
    I get no error for consistency.. I read everywhere and I know i need to set the appropriate aggregation levels in the various dims and facts LTS properties to help OBIEE understanding our model, but how to do that.. how do i decide... how should I approach, what should be the aggregation level, what details.
    When i click More button i see different options: Copy, Copy From, Get Levels, Check Level, what do these mean.
    Aggregation Content, group by - Logical Level or Column which one should i choose and how should I decide.
    Can anyone explain the Content Tab in details and from scratch with some example and why we get these errors.... I know many people who are well versed with many other things related to RPD but this. A little efforts of explaining from you guys will really be appreciated.
    Thanks in advance,
    Dev

    Hi Deepak,
    Option 1:
    My tables in physical layer are joined as below:
    D1--> F1 <--D2--> F2 <--D3
    Same way i model it in BMM
    D1--> F1 <-- D2--> F2 <--D3
    Here D1 is non Conformed Dimension for F2 and D3 is non Conformed dim for F1. Later create Dimensional hierarchies, I tried setting up the content levels
    I go Sources>content tab of Fact F1 I set
    Dimensions----------- Logical level
    D1---------------------- D1 Detail
    D2---------------------- D2 Detail
    D3---------------------- D3 Total
    then, I go Sources>content tab of Fact F2 I set
    Dimensions----------- Logical level
    D1---------------------- D1 Total
    D2---------------------- D2 Detail
    D3---------------------- D3 Detail
    Then, I also go in all the dimensions and set their content levels to Details, but it still gives me errors not sure where I am going wrong in setting the content levels.
    I need to know whether the way I have modeled it in BMM is right,
    Option 2:
    I can combine the two facts in a single Logical Fact or the above design should also work.
    (F1&F2)<--D1, D2 , D3 joined separately using complex logical joins.
    what will be the content tab details?
    Thanks,
    Dev

  • Benefits of SAP Business Warehouse Reporting compared with the Query-tools?

    Hello experts,
    I've been creating reports with SAP Query tools, but been faced with few problems. First of all, there are restricted possibilities in terms of joining tables, and thus I cannot include all the data required for the report.
    One solution for this would have been to create separate queries and join the data together in Excel. The problem with this is that there exists no common field that would make sense as for a selection criterion. If the selection criterion is different in different queries, there is the danger of combining false data together, which would eventually result with distorted data. 
    So I was wondering, could anyone briefly tell me if SAP Business Warehouse reporting would solve these problems? And what other benefits would it provide compared with the SAP Query? I'd urgently need to know if it would be a beneficial investment for the company, since I haven't found solutions for the problems occurred in the creation of reports.
    Thank you in advance for you help!
    Maria

    The answers are yes - and thousands of companies have gone down this route
    Puttingin BW is a strategic aim of the comapny and not to be thought about and discussed in a BI forum such as this
    The costs of implementation and hardware will no doubt make your eyes water.
    To be quite honest SAP BI is a "no brainer" as most of the new e-SOA and new R3 modules reply on BW for their reporting needs

  • Is anybody else struggling with an intermittent connection when using the Magic Mouse/Trackpad ONLY on Boot Camp?

    Hi,
    I've seen thousands of posts about Bluetooth connection issues and interference and stutter/lag for both the Magic Mouse and Trackpad (affecting both Mac OS X and Windows under Boot Camp) but my problem is different.
    To summarise my setup, I use:
    - Retina MacBook Pro (lid closed or open, doesn't make a difference to this problem)
    - Thunderbolt Display
    - Wireless Keyboard
    - Magic Trackpad (have also tried a Magic Mouse and experience similar issues to the Trackpad)
    And in Mac OS X, everything works perfectly. The keyboard and trackpad work smoothly when I'm 6-7 metres from the machine, whether or not the laptop lid is open or closed, and whether or not the Thunderbold Display is connected.
    But on to my problem: the bluetooth connection is incredibly unreliable/intermittent when in Windows (I run Windows 7 64-bit and Boot Camp 4.0, and got both devices connected without any trouble via Bluetooth).
    But during usage, the cursor stutters/lags frequently, and tap to click (when enabled) seems to get triggered by mistake all the time (even when I'm not touching the Trackpad or even at the computer, clicks get registered).
    The Wireless Keyboard is perfect, and works well 5 metres from the machine. The Mouse and Trackpad, though, don't even work reliably when they are 6 inches from the machine. The built-in trackpad on the laptop works perfectly too, in Windows and Mac.
    I spent a week assuming I was suffering from Bluetooth interference, so I tried:
    - using the laptop with the lid open
    - removing the Thunderbolt display completely and trying the Magic Trackpad
    - repositioning items on my desk
    - disabling wifi
    All of these adjustments made minor differences to how good/bad the Trackpad was, but none came close to fixing the problem or making it work as smoothly as under Mac OS X. It was only after doing all of this that I realised perhaps it was just a Apple driver for Windows issue, so I booted into Mac OS X and tested everything out, and sure enough, it's all perfect. But back into Windows, the Trackpad doesn't work reliably at all.
    Obviously, the hardware is not at fault, and I assume the signal strength doesn't vary between operating system (why would it?) so I'm left believing this must be a driver issue. The TrackPad and Magic Mouse drivers have been out for a couple of years, so I'm surprised they can still be this bad. I tried both the latest driver from Boot Camp 4.0 (3.2.0.0) for the Trackpad, and also the older one from Boot Camp 3.2 (3.1.0.7) and both are equally bad for me.
    So my question is: has anybody else struggled with using the Trackpad (or Magic Mouse) with Boot Camp 4.0 and Windows 7 64-bit, whilst finding it to be perfect under Mac OS? I haven't found many posts complaining about the Windows driver, which is why I assumed it was an interference issue. But I'm almost sure it isn't, having spent 2 weeks investigating.
    Any thoughts/suggestions/answers much appreciated!
    Kyle

    SOLVED!
    After much testing, I have found the cause of lagging/jumpiness on the Bluetooth Magic Mouse and Magic TrackPad in Boot Camp. Hopefully this will help others:
    The drivers for the Broadcom 802.11n Wireless Adapter have a setting called "Bluetooth Collaboration" that is Disabled by default. Enabling this option removes the problem instantly. My Magic Trackpad now works flawlessly, even if I stand 6 metres from the machine. It now works just as well as under Mac OS. The setting can be found under:
    Control Panel > Device Manager > Network Adapters > Broadcom 802.11n Network Adapter (right click and choose "Properties". Under the "Advanced" tab, highlight the setting named "Bluetooth Collaboration", then change it to Enable. Then click OK.
    I narrowed the problem down to the wireless card by disabling ALL startup services and processes for Windows, then re-enabling one by one. As soon as I enabled the Windows Wireless Service, the problem came back. Similarly, disabling the Wireless Card inside the Network and Sharing Center (or Device Manager) removes the problem. This led me to believe it must be a driver issue with the wireless card, since the problem didn't occur with the Magic TrackPad under Mac OS, or on my mother's Windows 7 64-bit computer. So when I went into the Driver Properties to check for an update, I found this setting about Bluetooth Collaboration.
    I really hope this helps others trying to use Bluetooth devices under Boot Camp. All Apple notebooks use the Broadcom card (and have done for years), so this driver is installed for almost anybody using Boot Camp on an Apple notebook. I'd assume this problem would affect anybody using Boot Camp + wifi + a Bluetooth device.
    Cheers

Maybe you are looking for

  • My phone keeps saying I am running low on storage space. Over half of the contents in it is in the "other" category. what does that include? I wish to have more music

    I have a 16GB iphone but am an avid music lover. I own tons of music. I have iMatch and iCloud. As of right now my phone says I only use about half of the storage space on it in audio. Very litle is used for apps or pictures. I have another half of t

  • WiFi setup

    I have the same problem. I am at my home with an unsecured wireless network, my BB recognizes the wi-fi but will not allow me to connect and surf the web. We have an iphone and samsung handsets and both are simple to hook into wi-fi, but the BB, not

  • Unicode in ecc6.0

    hello, I thought if unicode in attributes is checkd ( ecc6.0) we are not allowed to declare a table with header line but strangely its working fine with occurs 0.plz advise..am I missing something here? Thanks

  • Clips on Time Line Moving forward

    I have video on V1 and photos on V2. When I delete V2 photos from the beginning of the time line all of the photos from the right of the time line move to the left. I cannot find a way to stop the other photos from moving. Also If I delete a clip fro

  • Naming of top level in a dimension

    Hi, I was wondering if the naming of the top level in a dimension. Earlier I have just named the top levels whatever suited me the best, and haven't had any problems with that. A couple of days ago I came a across an article on Mark Rittmans weblog w