[WMI] QFE InstalledOn date property differs from GUI "update history", WMI bug?

Hello,
When I use get-hotfix (uses WMI under the hood) on a Windows 2012 box to retrieve the Installdate for windows hotfixes, there is a difference between the date Powershell reports and the date visible in the update history GUI.
http://i.imgur.com/HJVdsY4.png
The GUI shows an install date of July 11th, where the get-hotfix shows an install date of September 21st.
The hotfix is installed in July, not in September. it doesn't seem to be a date formatting issue.
Is this a known issue? if so is there a fix available?
thanks in advance,
Sander

Hello,
When I use get-hotfix (uses WMI under the hood) on a Windows 2012 box to retrieve the Installdate for windows hotfixes, there is a difference between the date Powershell reports and the date visible in the update history GUI.
http://i.imgur.com/HJVdsY4.png
The GUI shows an install date of July 11th, where the get-hotfix shows an install date of September 21st.
The hotfix is installed in July, not in September. it doesn't seem to be a date formatting issue.
Is this a known issue? if so is there a fix available?
thanks in advance,
Sander

Similar Messages

  • How to retrieve the data/property value from portalapp.xml

    Hi I would like to retrive the some common data from the portalapp.xml file
    <application>
      <application-config>
        <property name="PrivateSharingReference" value="com.sap.portal.htmlb"/>
          </application-config>
      <components>
        <component name="DynZMMGR">
          <component-config>
            <property name="ClassName" value="DynZMMGR"/>
            <property name="SecurityZone" value="DynZMMGR/high_safety"/>
            <property name="ComponentType" value="jspnative"/>
            <property name="JSP" value="pagelet/DynJspZMMGR.jsp"/>
          </component-config>
          <component-profile/>
        </component>
        <component name="dynpagedel">
          <component-config>
            <property name="ClassName" value="dynpagedel"/>
          </component-config>
          <component-profile/>
        </component>
        <component name="VARIANTLIST">
          <component-config>
            <property name="ClassName" value="com.sap.ep.r3rpts.VARIANTLIST"/>
            <property name="SecurityZone" value="com.sap.ep.r3rpts.VARIANTLIST/high_safety"/>
          </component-config>
          <component-profile/>
        </component>
        <component name="DynZMM33">
          <component-config>
            <property name="ClassName" value="DynZMM33"/>
            <property name="SecurityZone" value="DynZMM33/high_safety"/>
            <property name="ComponentType" value="jspnative"/>
            <property name="JSP" value="pagelet/DynJspZMM33.jsp"/>
          </component-config>
          <component-profile/>
        </component>
      </components>
      <services/>
    </application>
    The above is my portalapp.xml file .
    I want to retrieve the common data across the component.
    These  datas are common across the components .
    I kmow by putting the data inside the
    component name="DynZMM33">
          <component-config>
            <property name="ClassName" value="DynZMM33"/>
            <property name="SecurityZone" value="DynZMM33/high_safety"/>
            <property name="ComponentType" value="jspnative"/>
            <property name="JSP" value="pagelet/DynJspZMM33.jsp"/>
          </component-config>
    <component-profile>
       <property name="UserID" value="userid"/>
       <property name="password" value="password"/>
    </component-profile>
    </component>
    this becoms component specific ... which I can retriev the by using
    String ClientVal = request.getComponentContext().getProfile().getProperty("Client");
    in doContent()  method ..
    But this way i have to specify these properties in all the component.. which is repetetive in nature.
    I would rather put it in common location and want to retrieve the info from the portalapp.xml...
    How to achieve this
    I am using "AbstractPortalComponent"  .
    thanks
    pkiran

    Hi Prashanth,
    see Reading another iView's profile personalized values and Validate PCD URI
    Anyhow, maybe you should implement a service which returns the values (from the service profile). This would be more clean for accessing global values.
    Hope it helps
    Detlev

  • Invoice date different from GL date

    I have several invoices where the GL Date is different from the Invoice Date. For example, the Invoice Date is 10-JUN-2002 and the GL Date is 01-JUL-2002. In all the invoices from another month, the Invoice Date is equal to GL Date. Anyone knows how can I fix this problem? Thanks

    I think this problem is not a problem.
    The date must be changed by the preparer

  • Data Load Wizard not Inserting/Updating all rows

    Hello,
    I am able to run through the whole Data Load Wizard without any problems. It reports that it successfully inserted/updated all the rows, but when I look in the table, I find a few rows that were not updated correctly. Of the entries I've identified that don't get inserted/updated properly, I've noticed they are the same rows that I was having issues with earlier. The issue was a number format error, which I solved by providing an explicit number format.
    Is it possible that the false inserts/updates might still be tied to the number format, or are there other reasons why the data load is failing on only some rows.
    Thanks,
    Brian
    Edited by: 881159 on Mar 14, 2012 5:05 PM

    Hi Brian,
    I am not aware of the situation where you get false results. However, there were some issues with number/date formats that sometime were not properly parsed, and this has been fixed in 4.1.1 patch. would your case be different from the one described in bug 13656397, I will be happy to get more details so that I can take a look at what is going on.
    Regards,
    Patrick

  • Struts - collecting data in different bean from display.

    I have a problem which I can't seem to solve using struts.
    I have a set of data input forms from which I want to generate a report. I want to list the available forms, let the user select which ones to include and pass this list of ids to the class which produces the report.
    I have a List of forms in request scope ("notes") and am using using <logic:iterate /> to display them in a simple table.
          <html:form action="selectSummaryForms.do">
            <table width="100%" cellspacing="0" class="table">
              <tr class="tableHeader">
                <th class="tableColHeader">Type</th>
                <th class="tableColHeader">Date</th>
                <th class="tableColHeader">Include?</th>
                <th class="tableColHeader"/>
              </tr>
              <logic:iterate id="notes" name="consultationNotes" type="com.ardeo.emdt.ConsultationNote" indexId="index">
                <tr>
                  <td >
                    <bean:write name="notes" property="formName"/>
                  </td>
                  <td >
                    <bean:write name="notes" property="creationDate" format="dd/MM/yyyy"/>
                  </td>
                  <td >
                    <html:checkbox name="notes"  property="selected"  indexed="true"/>
                    <html:hidden name="notes" property="id"  indexed="true" />
                  </td>
                </tr>
              </logic:iterate>
              <tr>
                <td align="right" valign="bottom">
                  <html:submit value="Display"/>
                </td>
                <td align="right" valign="bottom">
                  <html:cancel/>
                </td>
              </tr>
            </table>
          </html:form>I wan the "id" and "selected" html fields to be available to selectSummaryForms.do (SelectSummaryFormsAction.java) but they are not there (and its not complaining about missing accessors as I would expect)

    You're trying to get 2 different pop-up VIs to display at the same time or you can't get the second VI to pop-up at all? If it's the first, you would have to use VI Server to call the VIs. If it's the second problem, make sure that the subVIs property is set to be Show Front Panel When Called and Close Afterwards if Originally Closed.
    I don't understand your comment about the port setting of the second instrument. What type of instruments are you talking about?

  • I have made a burn folder with photos exported from I-photo.  It now shows in information, that the date is created and modified is different from the original digitized date.  How can I get the original date to show in the info from Finder?

    I have made a burn folder with photos exported from I-photo.  It now shows in information, that the date  created and modified is different from the original digitized date.  How can I get the original date to show in the info from Finder?

    The Finder reports File information. The date and time of the photo are in the Photo's Exif metadata. The Finder has no awareness of this. All photos apps on any system do.
    Regards
    TD

  • Production finish date differs from basic finish date in backward schedulin

    Hi, experts.
    When i do scheduling the planned order,
    production finish date differs from basic finish date in backward scheduling as below.
    Scheduling: Backward
    Basic finish date : 2010.01.22
    Basic start date : 2010.01.21
    Production finish date : 2010.01.23  09:00:00
    Production start date ; 2010.01.22 03:57:09
    *GR time : 0.
    *Scheduling Margin key : 0.
    I don't know why production finish date set in 2010.01.23 09:00. ( Basic finish date +1 day)
    Please reply me.
    Thanks.

    Dear Jong,
    1) what is the parameter used in MRP run, Basic scheduling or lead time scheduling
    2) you must find a exception Mssg for that plan order in MD04
    3) basic scheduling take the time from material master & lead time scheduling will take time
    from Routing
    Regards
    Madhu

  • Passing data to different internal tables with different columns from a comma delimited file

    Hi,
    I have a program wherein we upload a comma delimited file and based on the region( we have drop down in the selection screen to pick the region).  Based on the region, the data from the file is passed to internal table. For region A, we have 10 columns and for region B we have 9 columns.
    There is a split statement (split at comma) used to break the data into different columns.
    I need to add hard error messages if the no. of columns in the uploaded file are incorrect. For example, if the uploaded file is of type region A, then the uploaded file should be split into 10 columns. If the file contains lesser or more columns thenan error message should be added. Similar is the case with region B.
    I do not want to remove the existing split statement(existing code). Is there a way I can exactly pass the data into the internal table accurately? I have gone through some posts where in they have made use of the method cl_alv_table_create=>create_dynamic_table by passing the field catalog. But I cannot use this as I have two different internal tables to be populated based on the region. Appreciate help on this.
    Thanks,
    Pavan

    Hi Abhishek,
    I have no issues with the rows. I have a file with format like a1,b1,c1,d1,e1, the file should be uploaded and split at comma. So far its fine. After this, if the file is related to region A say Asia, then it should have 5 fields( as an example). So, all the 5 values a1,b1..e1 will be passed to 5 fields of itab1.
    I also have region B( say Europe)  whose file will have only 4 fields. So, file is of the form a2,b2,c2,d2. Again data is split at comma and passed to itab2.
    If some one loads file related to Asia and the file has only 4 fields  then the data would be incorrect. Similar is the case when someone tries to load Europe file with 5 fields related data. To avoid this, I want to validate the data uploaded. For this, I want to count the no. of fields (seperated by comma). If no. of fields is 5 then the file is related to Asia or if no. of fields is 4 then it is Europe file.
    Well, the no. of commas is nothing but no. of fields - 1. If the file is of the form a1,b1..e1 then I can say like if no. of commas = 4 then it is File Asia.But I am not sure how to write a code for this.Please advise.
    Thanks,
    Pavan

  • [help]why data on table (master ) different  from materialized view(slave)?

    We have had Oracle RAC 2 Groups (master and slave).
    We have created materialized from slave to master. and I have created materialized view log on master .
    When slave group job is broken a long time(12 Hrs). We refreshed job and runned job id.
    But I have found database on materialized view (slave) different from TABLE on master group. (m$log =0row)
    Please tell me how can we resolve Or because that problem is m$log

    Yes I do have a unique identifier on each record in the base table and therefore also in the MV.
    So now the Downstream application has to update some of its own database tables based on what is in the MV that I provide - just so I understand how would that work e.g.:
    1. MV gets refreshed from my base table every minute
    2. Some records are newly inserted and some simply updated
    and this is the part I don't understand (I might be missing something obvious)....
    3. Downstream application interrogates the MV every (say 1-2 minutes) and updates its own tables based on the data there.....but let's say MV contains 10,000 records and in the last minute 100 of those records have been updated and another 100 inserted - how will it know the 200 records it needs to pull?
    Thanks again

  • Display only data different from the previous row

    Hello,
    I will use a simple example to explain what I would like to do with a query.
    I have a table 'test' with 4 columns (col1, col2, col3, col4).
    The table 'test' contains the following data:
    A  B  C  D
    A  E  C  D
    A  F  G  D
    K  F  G  HI would like to create a query ordered on the first column with the following result:
    A  B  C  D
       E
       F  G
    K        HOnly data that are different from the previous row have to be displayed.
    Do you have ideas on how to do this.
    Thanks for your help

    SQL> l
      1  select
      2  decode(a,lag(a) over (order by a),null,a) a,
      3  decode(b,lag(b) over (order by a),null,b) b,
      4  decode(c,lag(c) over (order by a),null,c) c,
      5  decode(d,lag(d) over (order by a),null,d) d
      6  from
      7  (
      8  select 'A' a,'B' b,'C' c , 'D' d from dual
      9  union
    10  select 'A' a,'E' b,'C' c , 'D' d from dual
    11  union
    12  select 'A' a,'F' b,'G' c , 'D' d from dual
    13  union
    14  select 'K' a,'F' b,'G' c , 'H' d from dual
    15* )
    SQL> /
    A B C D
    A B C D
      E
      F G
    K     H

  • Date creation is different from date photo taken in Finder

    Hello,
    I didn't know where to post this question. When I import photos from my Canon T3i and my iPhone4, the creation date of the photo is the date imported, not the date I took the photo. While in Finder, if I look at the photo information, the creation date is the date the photo was imported (for both the Canon and iPhone photos). I'm trying to understand why this is happening.  When I import the photos into iPhoto9, the date I took the photo is there. While that seems like the solution, it isn't since I don't import all photos into iPhoto. If I look at the photos on the memory card, the date is correct. The only time the creation date is not correct is when I import on to my iMac or MacBook.
    I'm using Snow Leopard and have no plans to upgrade to Lion.
    Thanks for your help and I apologize if I posted this question in the wrong discussion group.

    Another go at explaining it:
    There are two kinds of metadata involved when you consider  jpeg or other image file.
    One is the file data. This is what the Finder shows. This tells you nothing about the contents of the file, just the File itself.
    The problem with File metadata is that it can easily change as the file is moved from place to place or exported, e-mailed, uploaded etc.
    Photographs have also got both Exif and IPTC metadata. The date and time that your camera snapped the Photograph is recorded in the Exif metadata. Regardless if what the file date says, this is the actual time recorded by the camera.
    Photo applications like iPhoto, Aperture, Lightroom, Picasa, Photoshop etc get their date and time from the Exif metadata.
    When you export from iPhoto to the Finder new file is created containing your Photo (and its Exif). The File date is - quite accurately - reported as the date of Export. However, the Photo Date doesn't change.
    The problem is that the Finder doesn't work with Exif.
    So, your photo has the correct date, and so does the file, but they are different things. To sort on the Photo date you'll need to use a photo app.

  • Can we send the data into different data target from single datasource how

    Hai
    can we send the data into different data target from single datasource how ?

    Hi,
    Create the transformation for each target and connect through DTP if you are in BI 7.0
    If it is BW 3.5 create transfer rules and load it Info source and then different update rules for different targets then load it using IP.
    If you are speaking about loading data from R3 data source to multiple data sources in BI
    Then follow the below step.
    1)create init IP's and run the IP's with different selection to different DSO(With same selection it is not possible).
    2)Then you will have different delta queues for the same data source in RSA7
    3)Your delta loads will run fine to different data sources from same DS in R3.
    Hope this helps
    Regards,
    Venkatesh

  • Order GI date different from Delivery Planned GI date

    Hi Gurus, I noticed on one order-delivery that the order's GI date (in the schedule line) is different from the delivery's planned GI date. What could be the cause of that?

    hello dear
    System is nowhere stopping to change the planned GI date in billing. If orders schedule date is say 15.10.2007, i can change the planned GI date to 16.10.2007 and so the billing date also.
    regards
    Inder

  • App launch date different from apperance date - help !

    Hello
    I have just searched and trawled through the forum and am unable to find a post regarding the launch date of an app being different from its actual appearance on the store.
    My app launched yesterday 20th August but the date showing is the 14th August(date of submission) - hence it has not appeared in the new apps list - this is a little frustrating as it immediately receives no "free" publicity for a few hours whilst it is on the list of new applications.
    Has anyone else experienced this yet? - as I seem to remember seing a post regarding tjis issue but cannot find it anymore. I have emailed the dev email and will await a reply but thought the collective knowledge of this forum may be able to help!
    Regards
    Steve

    Steve, any update on your date situation? Did you hear from Apple? What was the final outcome?
    I'm having a similar problem outlined in this thread http://discussions.apple.com/thread.jspa?messageID=8140542#8140542

  • Data not displayed from List using h:datatable

    hi
    iam getting the error:
    Error getting property 'cell' from bean type of java.lang.String...
    can u please tell where might i have gone wrong.....and actually what does this error mean...
    iam using jsf 1.1,netbeans 5.5 and tomcat 5.5.17
    thanks in advance

    hi.......thank you very much
    iam getting different error :Error getting property 'Cell' from bean of type org.TData1
    here iam sending necessary part of code as the code is large....can u please check where iam going wrong..
    bean class
    public class Htpg
    List data=new ArrayList();
    UIData projectTable;
    private TData1 td;
    public Htpg() { }
    public List getData()
    try {
    Element element;
    int total = 0;
    while(i.hasNext()) {
    element=(Element)i.next();
    if(element.getName().equalsIgnoreCase("tr")) {
    if(i.hasNext()){
    element = (Element)i.next();
    if(element.getName().equalsIgnoreCase("td")) {
    td=new TData1(); // has getters and setters
    td.setCell(element.getContent().toString().trim());
    element = (Element)i.next();
    td. setMade(element.getContent().toString().trim());
    element = (Element)i.next();
    total++;
    data.add(td);
    }//if
    }//if
    }//if
    }//while
    } catch (Exception e) {
    System.out.println("exception");
    return data;
    public void setData(List data)
    this.data=data;
    public UIData getProjectTable() {
    return projectTable;
    public void setProjectTable(UIData ProjectTable) {
    this.projectTable = projectTable;
    public String selectData()
    td=(TData1)projectTable.getRowData();
    return "found";
    jsp page
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <title>JSP Page</title>
    </head>
    <body>
    <h1>JSP Page</h1>
    <f:view>
    <h:form>
    <h:dataTable value="#{htpg.data}" var="td" binding="#{htpg.projectTable}">
    <h:column>
    <f:facet name="header">
    <h:outputText value="CELL" />
    </f:facet>
    <h:outputText value= "#{td.Cell}" />
    </h:column>
    <h:column>
    <f:facet name="header">
    <h:outputText value="MADE" />
    </f:facet>
    <h:outputText value= "#{td.Made}" />
    </h:column>
    </h:dataTable>
    </h:form>
    </f:view>
    </body>
    </html>
    getters and setters
    public class TData1 {
    private String Cell;
    private String Made;
    public TData1() {}
    public String getCell() {
    return Cell;
    public void setCell(String Cell) {
    this.Cell = Cell;
    public String getMade() {
    return Made;
    public void setMade(String Made) {
    this.Made = Made;
    faces-config.xml
    <faces-config>
    <managed-bean>
    <managed-bean-name>htpg</managed-bean-name>
    <managed-bean-class>org.Htpg</managed-bean-class>
    <managed-bean-scope>request</managed-bean-scope>
    </managed-bean>
    <navigation-rule>
    <from-view-id>/index.jsp</from-view-id>
    </navigation-rule>
    </faces-config>
    iam trying from so many days.........i have to submit this....so this is very much needed..
    thanks in advance...

Maybe you are looking for