Reporting accuracy, and OS requirements for updates?

Maybe I am not doing "Software Updates" or "Device Collections" right, but I have a collection of computers I'm deploying Software Updates to. 
The Software Update package currently only consist of Windows 7 updates. 
The collection I'm deploying to, however, has a few Windows 8 computers in it.
Because of this, the Windows 8 computers skew the "Compliance" reports for this software update package, indicating the computers are in a "Compliance unknown state". 
Is there a way I can configure Software Requirements for Software Updates (like Win 7 x64 only);
or what's the solution here for accurate reports?
make a different collection for Windows 8 computers? Add Windows 8 updates to the package? 

If the Windows 8 PC are listed as unknown then there is a GPO or local policy blocking them from scanning for SU. This will have nothing to do with how your collection are setup.
On one of Windows 8 PCs that is affected, review all the GPOs and determine which GPO is overriding CM12.
http://www.enhansoft.com/

Similar Messages

  • HT6030 I downloaded Mail Update for Mac OS X 10.5.6 and was told it could not be installed because it was from an unidentified developer.  Tried installing download from MailUpdate & advised the disk did not meet the requirements for update. Hmmmm.

    I downloaded Mail Update for Mac OS X 10.5.6 and was told it could not be installed because it was from an unidentified developer.  Tried installing download from MailUpdate & advised the disk did not meet the requirements for update.   Expect it's due to being at 10.9.1.  Mail is still teetering between dysfunctional and non-functional.  Advice?

    I'm not sure what "Mail Update for Mac OS X 10.5.6" is. Mac OS X 10.5.6 is Leopard, a system that is quite old at this point. There have not been any Mail updates for Leopard in quite some time. If you are trying to install some old Mail update for Mac OS X 10.5.6 in Mavericks, that won't work.
    If you are trying to install the Mavericks Mail update manually, that's not necessary if you have updated through the App Store. If the App Store shows no updates, you don't need this. (The error message doesn't make sense, and may indicate some other problem with your system, assuming that you were downloading this update from Apple's site.)
    I'd advise you to start a new topic in the Mavericks forum and describe the problems you are having with Mail. Be sure to include specifics, but try to avoid speculating on causes, as responses that may be related to an inaccurate assumption on your part can cloud the issue.

  • HT1414 my daughter has iphone 3gs and it required an update , so i connected the iphone to itunes for update and the iphone locked up, I had to reset back to factory settings and now the iphone will not activate , what can i do

    My daughter has an iphone 3gs and it required an update. So i connected the iphone to itunes for the update and the iphone locked up . I had to reset the iphone back to factory settings and now the iphone will not activate , Please advise what i can do to get this working for her ?

    Generally this is a sign that the iPhone had previously been
    hacked/modified/jailbroken and the update relocked it to the
    original wireless carrier. If this is the case, only that wireless
    carrier can unlock your iPhone. You must contact them to see
    if they offer unlocking and if you qualify.
    Where did you acquire this iPhone?
    What wireless carrier did you use before this problem?
    Does the app Cydia appear on your iPhone?
    What does it say when you look at Settings=>General=>About=>Carrier?
    Unauthorized modification of iOS
    http://support.apple.com/kb/HT3743 

  • Re: Transactions and Locking Rows for Update

    Dale,
    Sounds like you either need an "optimistic locking" scheme, usually
    implemented with timestamps at the database level, or a concurrency manager.
    A concurrency manager registers objects that may be of interest to multiple
    users in a central location. It takes care of notifying interested parties
    (i.e., clients,) of changes made to those objects, using a "notifier" pattern.
    The optimistic locking scheme is relatively easy to implement at the
    database level, but introduces several problems. One problem is that the
    first person to save their changes "wins" - every one else has to discard
    their changes. Also, you now have business policy effectively embedded in
    the database.
    The concurrency manager is much more flexible, and keeps the policy where
    it probably belongs. However, it is more complex, and there are some
    implications to performance when you get to the multiple-thousand-user
    range because of its event-based nature.
    Another pattern of lock management that has been implemented is a
    "key-based" lock manager that does not use events, and may be more
    effective at managing this type of concurrency for large numbers of users.
    There are too many details to go into here, but I may be able to give you
    more ideas in a separate note, if you want.
    Don
    At 04:48 PM 6/5/97 PDT, Dale "V." Georg wrote:
    I have a problem in the application I am currently working on, which it
    seems to me should be easily solvable via appropriate use of transactions
    and database locking, but I'm having trouble figuring out exactly how to
    do it. The database we are using is Oracle 7.2.
    The scenario is as follows: We have a window where the user picks an
    object from a dropdown list. Some of the object's attributes are then
    displayed in that window, and the user then has the option of editing
    those attributes, and at some point hitting the equivalent of a 'save'button
    to write the changes back to the database. So far, so good. Now
    introduce a second user. If user #1 and user #2 both happen to pull up
    the same object and start making changes to it, user #1 could write back
    to the database and then 15 seconds later user #2 could write back to the
    database, completely overlaying user #1's changes without ever knowing
    they had happened. This is not good, particularly for our application
    where editing the object causes it to progress from one state to the next,
    and multiple users trying to edit it at the same time spells disaster.
    The first thing that came to mind was to do a select with intent to update,
    i.e. 'select * from table where key = 'somevalue' with update'. This way
    the next user to try to select from the table using the same key would not
    be able to get it. This would prevent multiple users from being able to
    pull the same object up on their screens at the same time. Unfortunately,
    I can think of a number of problems with this approach.
    For one thing, the lock is only held for the duration of the transaction, so
    I would have to open a Forte transaction, do the select with intent to
    update, let the user modify the object, then when they saved it back again
    end the transaction. Since a window is driven by the event loop I can't
    think of any way to start a transaction, let the user interact with the
    window, then end the transaction, short of closing and re-opening the
    window. This would imply having a separate window specifically for
    updating the object, and then wrapping the whole of that window's event
    loop in a transaction. This would be a different interface than we wanted
    to present to the users, but it might still work if not for the next issue.
    The second problem is that we are using a pooled DBSession approach
    to connecting to the database. There is a single Oracle login account
    which none of the users know the password to, and thus the users
    simply share DBSession resources. If one user starts a transaction
    and does a select with intent to update on one DBSession, then another
    user starts a transaction and tries to do the same thing on the same
    DBSession, then the second user will get an error out of Oracle because
    there's already an open transaction on that DBSession.
    At this point, I am still tossing ideas around in my head, but after
    speaking with our Oracle/Forte admin here, we came to the conclusion
    that somebody must have had to address these issues before, so I
    thought I'd toss it out and see what came back.
    Thanks in advance for any ideas!
    Dale V. Georg
    Indus Consultancy Services [email protected]
    Mack Trucks, Inc. [email protected]
    >
    >
    >
    >
    ====================================
    Don Nelson
    Senior Consultant
    Forte Software, Inc.
    Denver, CO
    Corporate voice mail: 510-986-3810
    aka: [email protected]
    ====================================
    "I think nighttime is dark so you can imagine your fears with less
    distraction." - Calvin

    We have taken an optimistic data locking approach. Retrieved values are
    stored as initial values; changes are stored seperately. During update, key
    value(s) or the entire retieved set is used in a where criteria to validate
    that the data set is still in the initial state. This allows good decoupling
    of the data access layer. However, optimistic locking allows multiple users
    to access the same data set at the same time, but then only one can save
    changes, the rest would get an error message that the data had changed. We
    haven't had any need to use a pessimistic lock.
    Pessimistic locking usually involves some form of open session or DBMS level
    lock, which we haven't implemented for performance reasons. If we do find the
    need for a pessimistic lock, we will probably use cached data sets that are
    checked first, and returned as read-only if already in the cache.
    -DFR
    Dale V. Georg <[email protected]> on 06/05/97 03:25:02 PM
    To: Forte User Group <[email protected]> @ INTERNET
    cc: Richards* Debbie <[email protected]> @ INTERNET, Gardner*
    Steve <[email protected]> @ INTERNET
    Subject: Transactions and Locking Rows for Update
    I have a problem in the application I am currently working on, which it
    seems to me should be easily solvable via appropriate use of transactions
    and database locking, but I'm having trouble figuring out exactly how to
    do it. The database we are using is Oracle 7.2.
    The scenario is as follows: We have a window where the user picks an
    object from a dropdown list. Some of the object's attributes are then
    displayed in that window, and the user then has the option of editing
    those attributes, and at some point hitting the equivalent of a 'save' button
    to write the changes back to the database. So far, so good. Now
    introduce a second user. If user #1 and user #2 both happen to pull up
    the same object and start making changes to it, user #1 could write back
    to the database and then 15 seconds later user #2 could write back to the
    database, completely overlaying user #1's changes without ever knowing
    they had happened. This is not good, particularly for our application
    where editing the object causes it to progress from one state to the next,
    and multiple users trying to edit it at the same time spells disaster.
    The first thing that came to mind was to do a select with intent to update,
    i.e. 'select * from table where key = 'somevalue' with update'. This way
    the next user to try to select from the table using the same key would not
    be able to get it. This would prevent multiple users from being able to
    pull the same object up on their screens at the same time. Unfortunately,
    I can think of a number of problems with this approach.
    For one thing, the lock is only held for the duration of the transaction, so
    I would have to open a Forte transaction, do the select with intent to
    update, let the user modify the object, then when they saved it back again
    end the transaction. Since a window is driven by the event loop I can't
    think of any way to start a transaction, let the user interact with the
    window, then end the transaction, short of closing and re-opening the
    window. This would imply having a separate window specifically for
    updating the object, and then wrapping the whole of that window's event
    loop in a transaction. This would be a different interface than we wanted
    to present to the users, but it might still work if not for the next issue.
    The second problem is that we are using a pooled DBSession approach
    to connecting to the database. There is a single Oracle login account
    which none of the users know the password to, and thus the users
    simply share DBSession resources. If one user starts a transaction
    and does a select with intent to update on one DBSession, then another
    user starts a transaction and tries to do the same thing on the same
    DBSession, then the second user will get an error out of Oracle because
    there's already an open transaction on that DBSession.
    At this point, I am still tossing ideas around in my head, but after
    speaking with our Oracle/Forte admin here, we came to the conclusion
    that somebody must have had to address these issues before, so I
    thought I'd toss it out and see what came back.
    Thanks in advance for
    any
    ideas!
    Dale V. Georg
    Indus Consultancy Services [email protected]
    Mack Trucks, Inc. [email protected]
    ------ Message Header Follows ------
    Received: from pebble.Sagesoln.com by notes.bsginc.com
    (PostalUnion/SMTP(tm) v2.1.9c for Windows NT(tm))
    id AA-1997Jun05.162418.1771.334203; Thu, 05 Jun 1997 16:24:19 -0500
    Received: (from sync@localhost) by pebble.Sagesoln.com (8.6.10/8.6.9) id
    NAA11825 for forte-users-outgoing; Thu, 5 Jun 1997 13:47:58 -0700
    Received: (from uucp@localhost) by pebble.Sagesoln.com (8.6.10/8.6.9) id
    NAA11819 for <[email protected]>; Thu, 5 Jun 1997 13:47:56 -0700
    Received: from unknown(207.159.84.4) by pebble.sagesoln.com via smap (V1.3)
    id sma011817; Thu Jun 5 13:47:43 1997
    Received: from tes0001.macktrucks.com by relay.macktrucks.com
    via smtpd (for pebble.sagesoln.com [206.80.24.108]) with SMTP; 5 Jun
    1997 19:35:31 UT
    Received: from dale by tes0001.macktrucks.com (SMI-8.6/SMI-SVR4)
    id QAA04637; Thu, 5 Jun 1997 16:45:51 -0400
    Message-ID: <[email protected]>
    Priority: Normal
    To: Forte User Group <[email protected]>
    Cc: "Richards," Debbie <[email protected]>,
    "Gardner," Steve <[email protected]>
    MIME-Version: 1.0
    From: Dale "V." Georg <[email protected]>
    Subject: Transactions and Locking Rows for Update
    Date: Thu, 05 Jun 97 16:48:37 PDT
    Content-Type: text/plain; charset=US-ASCII; X-MAPIextension=".TXT"
    Content-Transfer-Encoding: quoted-printable
    Sender: [email protected]
    Precedence: bulk
    Reply-To: Dale "V." Georg <[email protected]>

  • TS1492 When I go to iTunes and then check for updates. I can not do this action due to the fact iTunes will not connect to the internet although the internet is working just fine, what do I do to fix this issue? Apparently I am currently using iTunes 7.0.

    When I go to iTunes and then check for updates. I can not do this action due to the fact iTunes will not connect to the internet although the internet is working just fine, what do I do to fix this issue? Apparently I am currently using iTunes 7.0.

    If you're really using iTunes 7.0 you are very far behind the current version - maybe it is trying to connect to a decomissioned server.  In fact I am kind of surprised it will run on a Macbook Air.  Are you sure you are running iTunes 7?

  • What are the supported Platforms and system requirements for JSE?

    What are the supported Platforms and system requirements for JSE?

    Hi There,
    The following are the system requirements & the support platforms for JSE :-
    * Solaris 9 and 8 Operating Systems (SPARC Platform Edition)
    o UltraSPARC II 450-MHz system with 512 MB of memory and 850 MB of disk space
    o Recommended: UltraSPARC III 750-MHz system with 1 GB of memory and 1 GB of disk space, or higher.
    * Solaris 9 Operating System (x86 Platform Edition)
    o Pentium III 500-MHz system with 512 MB of memory and 850 MB of disk space
    o Recommended: Pentium III 1-GHz system with 1 GB of memory and 1 GB of disk space, or higher
    * Windows 2000 and Windows XP
    o Pentium III 500-MHz system with 512 MB of memory and 850 MB of disk space
    o Recommended: Pentium III 1-GHz system with 1 GB of memory and 1 GB of disk space, or higher

  • About report groups and read programs for the object EC_PCA_SUM

    Hi Friends,
    Hope every one is doing well..!
    I've an issue with the report groups and read programs for the object EC_PCA_SUM. As we know that the report groups and read programs available for this object in the application customizing are used to analys the archived data.
    That is these programs comes into picture after the archiving operation.
    For more information, you can visit the below web site:
    [http://help.sap.com/erp2005_ehp_03/helpdata/EN/e4/69f353b75a11d1b5850000e82debc6/frameset.htm]
    Now, my question is how would I check the code for these analysing programs available for this object. I can't see this in SE38.
    Thanks to reply for this..
    Full marks will be awarded.
    Regards,
    Shamim

    Hi Lakshman,
    Thanks for the reply.
    Hi Deiter,
    You're right.
    Your provided transaction "GR55" helped me to find out the program name for a particular group. However, these are just Write and Painter reports.
    But can you please let me know the functionality of these report groups ?? what are these used for ???
    Do we have these programs for other archiving objects like CO_ITEM,CO_ML_BEL,MM_MATBEL,CO_ORDER,
    PP_PLAN,PP_BKFLUSH ??
    More points will be awarded.
    Thanks a lot.
    Regards,
    Shamim
    Edited by: S H A M I M on Sep 19, 2008 3:19 PM

  • Software and Hardware Requirement for Management Agent

    Can any one help me to find out the software and Hardware requirements for Oracle 10g Management AGent for various platforms.

    Hi I have looked the Metalink Note which is mentioned in the reply but that is not having the exact software and Hardware Requirements (i.e os packages required for unix platforms) for OEM Agent. Please help me to know the requirements pls.

  • I cant update my iphone and i tried going on my pc on itunes and clicking check for update button but it says that "itunes could not contact the iphone software update server because you are not connected to the internet".plz help

    i cant update my iphone and i tried going on my pc on itunes and clicking check for update button but it says that "itunes could not contact the iphone software update server because you are not connected to the internet". But i checked my internet on both my pc and iphone and tried again but it still says the same thing. plzz plzz help

    Were you definitely connected to the internet at the time? If you don't have iOS 5 on your iPhone then the only way to update it would be via iTunes, once updated to the latest version of iOS you'll be able to update your iPhone without connecting to iTunes "over-the-air".
    Before updating however it goes without saying to Backup your iPhone, this should happen by default upon connecting your iPhone to iTunes.
    Regards,
    Steve

  • Want to learn functional and technical requirements for UCM

    Hi,
    I'm very new to UCM. Can someone please send meplease tell me where to find functional and technical requirements for UCM from user and implementation perspective.
    Thanks Very Much,
    Andy

    can you be a little more specific?
    Technical info can be found in the documentation. Requirements and so on.
    What exactly do you expact from functional requirements ?
    Edited by: Yannick Ongena on Nov 30, 2011 5:50 AM

  • Report server running in integrated mode , but cannot deploy reports again and again prompts for login

    Report server running in integrated mode , but cannot deploy reports again and again prompts for login
    Nur Mondal

    Hello,
    How are you deploying the reports? Via Visual Studio, Report builder or manually uploading RDL files?
    Paul
    Paul Mather | Twitter |
    http://pwmather.wordpress.com | CPS

  • Gathering Technical and Business Requirements for SAP PI

    I need to some documents and tools, or interview guide & questionnaire to gather the stakeholders' technical and business requirements for SAP PI

    Thanks for the links,
    I am quite new at SAP and currently trying to elaborate should i use SAP PI or not based on my project stakeholder's requirements.
    And my biggest problem right now is how to capture technology and business requirements and match them with SAP PI
    I plan to use this format while requirements gathering about integration platform:
    1- Draft Requirements
    Q- What is the names and status of sending and receiving application and how they will be used
    2- Detailed Requirements
    Q- Connectivity, Administrative and Business related questins
    3- Administrative and project management information
    Q- Which applications are involved, who is the original supplier? Who is technical contact at the supplier
    4- Business requirements
    Q- Questions about the information flow which will support some business processes
    5- Connectivity to applications
    Q- Questions about connectivity mechanism, file formats (flat file or XML or something else), data access methods and so on
    What do you think about the general concept?
    Edited by: Alper Celik on Feb 2, 2009 10:37 AM

  • Are SUID and SGID required for oracle functionlities?

    Could anyone please confirm that the below oracle files and their permissions SUID and SGID are valid (and actually required) for oracle functionality? Thanks.
    SUID binary /opt/oracle/11.2.0/bin/extjob
    SUID binary /opt/oracle/11.2.0/bin/oradism
    SUID binary /opt/oracle/11.2.0/bin/oracle
    SUID binary /opt/oracle/11.2.0/bin/nmb
    SUID binary /opt/oracle/11.2.0/bin/nmo
    SUID binary /opt/oracle/11.2.0/bin/emtgtctl2
    SUID binary /opt/oracle/11.2.0/bin/nmhs
    SUID binary /opt/oracle/11.2.0/bin/jssu
    SUID binary /opt/ORCLfmap/prot1_64/bin/fmputlhp
    SGID binary /opt/oracle/11.2.0/bin/oracle
    SGID binary /opt/oracle/11.2.0/bin/emtgtctl2

    Fresh installation of 11.2
    ll extjob oradism oracle nmb nmo emtgtctl2 nmhs jssu fmputlhp
    -rwsr-s--x 1 oracle oinstall     66239 Jun  2  2013 emtgtctl2
    -rwsr-x--- 1 root   oinstall   1223782 Jun  2  2013 extjob
    -rwsr-x--- 1 root   oinstall     43514 Jun  2  2013 jssu
    -rws--x--- 1 root   oinstall     34198 Jun  2  2013 nmb
    -rws--x--- 1 root   oinstall     71524 Jun  2  2013 nmhs
    -rws--x--- 1 root   oinstall     45157 Jun  2  2013 nmo
    -rwsr-s--x 1 oracle oinstall 201099176 Jun  2  2013 oracle
    -rwsr-x--- 1 root   oinstall     68278 Aug 14  2009 oradism
    -rwxr-x--- 1 oracle oinstall     35300 Aug 14  2009 fmputlhp
    ll /opt/ORCLfmap/prot1_64/bin/fmputlhp
    -r-sr-xr-x 1 root root 35300 Jun  2  2013 /opt/ORCLfmap/prot1_64/bin/fmputlhp

  • BADI-User exit required for updating Purchase order header field -IHREZ

    Hello All,
    We have requirement in our business to update the purchase order header field "our reference" EKKO-IHREZ with some text field. We need a BADI/user exit that can be used for updating this field . We have checked the BADI ME_PROCESS_PO_CUST and unfortunately we are not able to use this BADI as it getting triggered in enjoy SAP transactions ME21N , ME22N etc. We are not creating the purchase order manually and we are using ME59N for creating Purchase order . Hence we are looking for some user exit/BADI that can be used in ME59N for updating the purchase order header field IHREZ.
    Thanks in advance for your immediate response .
    With regards,
    Joseph Anand B

    TRY using the exist u2022     EXIT_SAPLME59_001
    You can also later on add this field by BAPI_PO_CHANGE

  • MM / WM legal and fiscal requirements for Malaysia available?

    Hello all,
    I'm doing an MM-roll-out for Malaysia. My Customer asked whether there are special legal and fiscal
    requirements in the MM / WM area for Malaysia such as inventory valuation reports or something for physical inventory count etc.
    Is there somebody who knows?
    Thanks in advance and best regards,
    Burkhard Kuehlen (IBM-Germany)

    Hi Debbie
    Are you using QM also ? Then you can do this within standard config & master data in 3 steps:
    1) You can define 'ITAR' as QM Infosystem.
    IMG->QM->QM in Logistics->QM in Procurement->Define QM Systems (Txn OQB7)
    Read the IMG documentation here which is good.
    2) Txn:MM01. Maintain QM view for material (QM Proc active and Target QM system)
    3) Txn: XK01/XK02; Maintain vendor's QM system in Purchasing data.
        OR
        QI01/QI02: You can also maintain Quality Info record for vendor/material/plant   
        combination and maintain a QM system there.
    You do not need to use QM additional functionalities or implement QM entirely to use this.
    Best regards
    Ramki

Maybe you are looking for

  • RH9, oracle 9.2.0.2, ORA-00604 error

    Hi, I got a del 400 sc pc, with 512 Mb Ram and 1024 MB swap. I have installed rh9 and oracle 9.2.0.2, following Yours RH9 and 9i howto, and all goes well. I linked dbca with my jdk 1.4 (following instructions) But I got an ORA-00604 error connecting

  • How on Earth do you Print Contact Sheet in Landscape Orientation in the new iPhoto?

    Just upgraded to Maverick and new iPhoto and boy am I sorry.  In the last version of of iPhoto it was really difficult to print 4 to a page contact sheets from iPhoto in landscape mode.  Why would you want to print in any othe mode when most photos a

  • Text & Shading

    We have the need to set up a form where we have what looks like white text on top of a shaded box.   However, our issue is that we are using a black & white Xerox printer.   Even if we check the "print in color" boxes, when we sent the print to the p

  • Smartform output error &SFSY-FORMPAGES& &SFSY-JOBPAGES&

    Hi, everyone. I have a issue about smartform printing. My smartform contains system variables &SFSY-PAGE&, &SFSY-FORMPAGES&, &SFSY-JOBPAGES& example as below. I have a 64 pages form printing. but I got preview like this PAGE:  6/ 46/46 6: &SFSY-PAGE&

  • Illustrator Layer positions are off in AE5.5

    Hello Kind Forum Geniuses, I'm having trouble with after effects projects in CS5.5. The projects in question were originally created using CS4. Basically we have a number of Illustrator assets (also created with cs4) that were imported as composition