Application Detection Method not being honored.

We have a deployment of a patch for Lync 2010.  In the Detection Method we are using the path for communicator.exe and the version number.  We have a few systems testing Lync 2013.  The paths are completely different so we don't understand
why these clients are getting prompted for installation of the update.
The Detection Rule is a as follows:
David Jenkins

The path is there but no communicator.exe.  In 2013 it's part of MS Office so it's in the Office directories.
I'd expect if communicator.exe doesn't exist in the directory it would mean the check fails and the patch would not advertise.
I think you're getting tangled up with the logic at play here...
If this detection rule is on your patch deployment, the logic is this:
"if this path/file/version is not detected, then I must deploy this patch to this machine"
So, on your machines that do have Lync2013, they will also *not* have the unpatched Lync2010 binary, therefore, it will attempt to deploy the patch.
You could consider applying another detection rule (maybe *AND* Lync2013 is not present), or, flip your detection logic around, and instead, detect for the unpatched Lync2010 binary (i.e. if version is less than 4.0.7577.4409) ?
Don
(Please take a moment to "Vote as Helpful" and/or "Mark as Answer", where applicable.
This helps the community, keeps the forums tidy, and recognises useful contributions. Thanks!)

Similar Messages

  • Tip for Mail certificates not being honored for parked domains

    I was having trouble with certificates not being honored, such that when my imap mail was being checked I constantly had the warning box come up to tell me the certificate was not valid. I would show the certificate, tell it to be trusted always, and yet I'd still see the triangle warning next to my inbox, and have trouble connecting. Then I saw a post about having multiple domains pointed to the same server, so I forwarded from one domain to the other and now the certificate is honored.
    The other domain I had was parked at the same domain by my host, so the underlying imap server domain was the same for both. That must have caused a conflict in having both certificates be honored, and indeed only one of them at a time would work. Deleting one of the accounts solved the problem, though I had to set up forwarding to bring all my mail from one to the other.
    While the problem is solved, it seems like there ought to be a way that I can have mail to my main domain and parked domain using the same underlying domain imap server not cause this conflict, but in the meantime I'll just have to forward from the parked to the main domain.
    Just wanted to share the solution here.

    Alex Thanks for the reply
    my entry in amavisd.conf reads as follows:
    @localdomainsmaps = ( [".$mydomain"] ); # list of all local domains
    I thought this was supposed to pick up all the local aliases?
    What does changing to ( 1 ); do differently to above??
    TIA
    Tony

  • NoViewOnDrive Setting not being honored in Common Save Dialog

    To restrict access to my C: drive from users using the Common Open/Save dialog, I set the decimal value of the
    NoViewOnDrives registry key to 4. This works well generally and if a user types in c:\ they get a message indicating that such access is redistricted. However, if they enter in c:\users\%username%, it brings them to their profile folder and
    allows them to save (naturally as they have write access to their profile). 
    Q: Why is the NoViewOnDrives setting not being honored for C:\users\%username% yet it is for other paths such as C:\ and C:\users ?

    Hi shocko,
    Based on my test, the scenerio is as you stated. We can access the profile via inputing c:\users\%username%and can creare and save new file. Although you Prevent access to drives from My Computer, users still have right to save files to their
    user profiles. 
    The easy way to prevent users to save data on a location is set folder redirection policy, redirect users’ desktop to a network share where users don’t have write permission.
    Create a network share on your server, but don’t grant write permission for domain users group.
    Hope this helps!
    Regards,
    Lany Zhang

  • JSF: Method not being called

    Hi i've a problem that is grieving me. A method reference by a commandButton is not being called. Here's the code:
    JSP:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <%@page contentType="application/xhtml+xml"%>
    <%@taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
    <%@taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
    <head>
    <title></title>
    </head>
    <body bgcolor="white">
    <f:view>
            <f:loadBundle basename="sisard.maqueta.web.resources.ApplicationMessages" var="messages"/>
         <h:form id="newBookForm">
                <h2><h:outputText value="#{messages.welcomeMessage}" />:</h2>
                <h3><h:outputText value="#{messages.insertnewbook}" />:</h3>
                    <table>
                        <tr>
                            <td>
                                <h:outputText value="#{messages.code}" />:
                            </td>
                            <td>
                                <h:inputText id="code" value="#{GestionLibros.code}">
                                </h:inputText>
                            </td>
                        </tr>
                        <tr>
                            <td>
                                <h:outputText value="#{messages.example}" />:
                            </td>
                            <td>
                                <h:inputText id="example" value="#{GestionLibros.example}">
                                </h:inputText>
                            </td>
                        </tr>
                        <tr>
                            <td>
                                <h:outputText value="#{messages.title}" />:
                            </td>
                            <td>
                                <h:inputText id="title" value="#{GestionLibros.title}">
                                </h:inputText>
                            </td>
                        </tr>
                        <tr>
                            <td>
                                <h:outputText value="#{messages.yearpublication}" />:
                            </td>
                            <td>
                                <h:inputText id="datePublication" value="#{GestionLibros.datePublication}">
                                </h:inputText>                       
                            </td>
                        </tr>
                        <tr>
                            <td>
                                <h:outputText value="#{messages.isbn}" />:
                            </td>
                            <td>
                                <h:inputText id="isbn" value="#{GestionLibros.isbn}">
                                </h:inputText>                       
                            </td>
                        </tr>
                        <tr>
                            <td>
                                <h:outputText value="#{messages.cifeditorial}" />:
                            </td>
                            <td>
                                <h:inputText id="cifeditorial" value="#{GestionLibros.cifEditorial}">
                                </h:inputText>                       
                            </td>
                        </tr>
                        <tr>
                            <td>
                                <h:outputText value="#{messages.nifautor}" />:
                            </td>
                            <td>
                                <h:inputText id="nifautor" value="#{GestionLibros.nifAutor}">
                                </h:inputText>
                            </td>
                        </tr>
                        <tr>
                            <td colspan="2">
                            </td>                       
                        </tr>
                    </table>
                    <h:commandButton id="submit" action="#{GestionLibros.insertNewBook}" value="Inserir"/>               
            </h:form>
    </f:view>
    </body>
    </html>The backing bean:
    package sisard.maqueta.web.cases.case01.view;
    import java.util.Calendar;
    import java.util.Date;
    import java.util.GregorianCalendar;
    import sisard.maqueta.sgl.model.exception.SGLException;
    import sisard.maqueta.sgs.model.exception.StockException;
    import sisard.maqueta.web.com.SGLManagedBean;
    import sisard.maqueta.web.com.ExceptionUtil;
    import sisard.maqueta.web.factory.DelegateFactory;
    public class GestionLibroManagedBean extends SGLManagedBean{
        private String code;
        private Long example;
        private String title;
        private Calendar datePublication;
        private String isbn;
        private String cifEditorial;
        private String nifAutor;
        public GestionLibroManagedBean() {
        public String insertNewBook() throws SGLException, StockException,
                                             Exception {
            DelegateFactory.getInstance().getLibroDelegate().insertarLibro(
                code,
                example,
                datePublication,
                isbn,
                title,
                cifEditorial,
                nifAutor);
                return "showBooksFound";
        public void setCode(String code) {
            this.code = code;
        public String getCode() {
            return code;
        public void setExample(Long example) {
            this.example = example;
        public Long getExample() {
            return example;
        public void setTitle(String title) {
            this.title = title;
        public String getTitle() {
            return title;
        public void setDatePublication(Date datePublication) {
            Calendar gregorianCalendar = new GregorianCalendar();
            gregorianCalendar.setTimeInMillis(datePublication.getTime());
            this.datePublication = gregorianCalendar;
        public Date getDatePublication() {
            return datePublication != null ? datePublication.getTime() : null;
        public void setIsbn(String isbn) {
            this.isbn = isbn;
        public String getIsbn() {
            return isbn;
        public void setCifEditorial(String cifEditorial) {
            this.cifEditorial = cifEditorial;
        public String getCifEditorial() {
            return cifEditorial;
        public void setNifAutor(String nifAutor) {
            this.nifAutor = nifAutor;
        public String getNifAutor() {
            return nifAutor;
    }faces-config.xml
    <?xml version="1.0" encoding="windows-1252"?>
    <!DOCTYPE faces-config PUBLIC
      "-//Sun Microsystems, Inc.//DTD JavaServer Faces Config 1.1//EN"
      "http://java.sun.com/dtd/web-facesconfig_1_1.dtd">
    <faces-config xmlns="http://java.sun.com/JSF/Configuration">
      <!-- ##################################################### -->
      <!-- MANAGED BEANS CASO DE USO 01- LIBROS -->
      <!-- ##################################################### -->
      <managed-bean>
        <managed-bean-name>BuscarLibros</managed-bean-name>
        <managed-bean-class>sisard.maqueta.web.cases.case01.view.BuscarLibroManagedBean</managed-bean-class>
        <managed-bean-scope>request</managed-bean-scope>
      </managed-bean>
      <managed-bean>
        <managed-bean-name>GestionLibros</managed-bean-name>
        <managed-bean-class>sisard.maqueta.web.cases.case01.view.GestionLibroManagedBean</managed-bean-class>
        <managed-bean-scope>request</managed-bean-scope>
      </managed-bean>
        <!-- ######################################## -->
        <!-- NAVIGATION RULES CASO DE USO A01-DATOS ADMINISTRATIVOS DE USUARIO -->
        <!-- ####################################################### -->
        <navigation-rule>
            <from-view-id>/searchBooks.jsp</from-view-id>
            <navigation-case>
                <from-outcome>showBooksFound</from-outcome>
                <to-view-id>/searchBooks.jsp</to-view-id>
            </navigation-case>
            <navigation-case>
                <from-outcome>insertNewBook</from-outcome>
                <to-view-id>/insertNewBook.jsp</to-view-id>
            </navigation-case>       
        </navigation-rule>
        <navigation-rule>
            <from-view-id>/insertNewBook.jsp</from-view-id>
            <navigation-case>
                <from-outcome>showBooksFound</from-outcome>
                <to-view-id>/searchBooks.jsp</to-view-id>
            </navigation-case>
        </navigation-rule>   
    </faces-config>Thanks in advance.

    Thanks for your reply. The problem was with Date datePublicacion. It was missing a converter.
    java.util.Date is deprecated. Is there a chance to use java.util.Calendar?

  • Cannot create application - 405 Method Not Allowed error

    Installed 11.1.2.1. Tried using EPMA to deploy app. Getting abort with the Method Not Allowed Error. Tried using Classic and getting the same error. Some of the details says "Server Error in Application "DEFAULT WEB SITE/HFM", "The page you are looking for cannot be displayed because an invalid method (HTTP verb) is being used." Any thoughts on possible causes?

    Hi Fsotto,
    The below document would resolve the issue.
    New Install on IIS 7, Cannot Access HFM from Workspace 404.3 Error in IIS Logs on HFM Web Server (Doc ID 1285684.1)
    Hope this helps,
    Please feel free to mark the answer as Helpful Answer/ Correct Answer should you find the relevant posting helpful so that it also helps us in keeping track of the answered queries.
    Thank you,
    Charles Babu J

  • SetAutoScrolls not being honored in JEditorPane & subclasses.

    From the JavaDocs on this property states that the "component automatically scrolls its contents when dragged (when contained in a component that supports scrolling, like JViewport"
    The problem I have encountered (and been completely unable to find anything to solve it in the forums/google/google groups) is that setting this property to 'false' does nothing.
    What I am trying to do is have a (JEditor/JText)Pane inside of a JScrollPane that will only scroll when the scroll bars are used. This means that when you select text inside of the JEditorPane and drag down to select more text that the JScrollPane does not scroll down.
    This means that the view of the text document is fixed and does not move no matter how you select the text and move the mouse in the application it will not scroll unless you use the scroll bars.
    The problem is it keeps scrolling, even when calling setAutoScroll(false) on EVERY JComponent that is ever instantiated and then explicitly calling it on EVERY JScrollPane.getViewport() in the JVM just to be certain.
    I don't have any sample code to post because it is pretty trivial.
    //Create Editor Pane
    //Set text of editor pane to something really long so you have to scroll
    //add to a JScrollPane
    //show on screen

    Hi shocko,
    Based on my test, the scenerio is as you stated. We can access the profile via inputing c:\users\%username%and can creare and save new file. Although you Prevent access to drives from My Computer, users still have right to save files to their
    user profiles. 
    The easy way to prevent users to save data on a location is set folder redirection policy, redirect users’ desktop to a network share where users don’t have write permission.
    Create a network share on your server, but don’t grant write permission for domain users group.
    Hope this helps!
    Regards,
    Lany Zhang

  • Action method not being called

    Using jdev 10.1.3.4 with jsf/adf bc. I have two af:table components on a jsf page. I'll call them table A and table B. In table B, I have an input text with autosubmit=true and hooked up to a valuechangelistener. One of the columns in table B is a command button. Initially, I was having problems when the user changed the input value in table B and then immediately clicked the button in table B. Sometimes when the button was clicked, the backing bean method associated with it was not executing. Thanks to Didier's advice in this forum (Re: PPR and submit I was able to get this functionality working consistently.
    I still have a problem though. Table A has a command LINK as one of the columns, which executes a method in the backing bean when clicked. However, as in the scenario above, if the user changes a value in the input text in table B and in this case immediately clicks the LINK in table A, it seems that the action method behind the button in table A executes the first time but if user repeats steps (changes value of input in table B and immediately clicks LINK in table A) the action method is not called after the first time. For testing, there is no real code in the backing bean method. The only code in the action method is an sop so I can tell if the method was executed. Likewise, the value change listener method, for testing purposes, has a sop so I can tell if/when it is executed and the thread.sleep(400) code needed per Didier's workaround. I'll include the code from jspx:
    In the jspx -
    <afh:body firstClickPassed="true">
    <h:form>
    <!-- table A -->
    <af:table value="#{bindings.Summary.collectionModel}" var="row"
    rows="#{bindings.Summary.rangeSize}"
    first="#{bindings.Summary.rangeStart}">
    <af:column headerText="#{bindings.Summary.labels.PositionNbr}">
    <af:inputText value="#{row.PositionNbr}"/>
    </af:column>
    <af:column>
    <af:commandLink text="Click" action="#{backing_levelone_untitled2.buttonClicked}"/>
    </af:column>
    </af:table>
    <!-- Table B -->
    <af:table value="#{bindings.BdCommentsView.collectionModel}" var="row"
    rows="#{bindings.BdCommentsView.rangeSize}"
    first="#{bindings.BdCommentsView.rangeStart}">
    <af:column headerText="#{bindings.BdCommentsView.labels.CommentId}">
    <af:inputText value="#{row.CommentId}"
    required="false" />
    </af:column>
    <af:column headerText="#{bindings.BdCommentsView.labels.Comments}">
    <af:inputText value="#{row.Comments}"
    required="false" autoSubmit="true" valueChangeListener="#{backing_levelone_untitled2.isValid}"/>
    </af:column>
    <af:column>
    <af:commandButton text="Click" action="#{backing_levelone_untitled2.buttonClicked}"/>
    </af:column>
    </af:table>
    </h:form>
    </afh:body>
    I need the backing bean method behind the LINK in table A to be fired consistently, every time user makes a change to input of table B and immediately clicks LINK in table A. It works the first time, but all subsequent attempts will not result in the action method being executed. Hope someone can help.
    Edited by: user12341229 on Dec 11, 2009 3:24 PM

    I'm not sure if this is considered a bug, but I found that if I use a commandLink in table A, my code doesn't work as expected. However, I found that by using a commandButton in table A the functionality works as expected. I still would like to hear some feedback on this if anyone is interested in recreating the scenario. Thanks.

  • Application Table Index not being created

    Since this is slightly different than my last post, I created a new one.
    I am using the example as a basis to complete the Bulk process from the Staging table to the Application table with the following code snippet:
    public void completeBulk(String completeBulkFlags) throws Exception {
    GraphOracleSem graph = null;
    try {
    graph = getModel().getGraph();
    try {
    graph.dropApplicationTableIndex();
    } catch (SQLException e) {}
    graph.getBulkUpdateHandler().completeBulk(completeBulkFlags, null);
    graph.rebuildApplicationTableIndex();
    finally {
    if (graph != null)
    graph.close();
    It appears to be dropping the 'applicationTableIndex', however when the call 'rebuildApplicationTableIndex' the <MODEL_NAME>_IDX does not exist in the database.  And i'm not seeing errors anywhere alerting me that the index was not created.
    Since this index is not created, deletes on the model do not have an index to scan over the <MODEL_NAME>_TPL table and takes forever.  For the time being, we are creating this index manually.  However is there something that we are doing wrong using the Jena Adapter API?
    We are using the newest Jena Adapter and 11.2.0.3 Database instance.
    Thanks
    -Michael

    Hi Michael,
    Your code looks fine.
    Hmmm. That is strange. The code path for rebuilding application table index is quite straightforward. Can you please drop your own index and re-run the following by itself?
    graph.rebuildApplicationTableIndex();
    Thanks,
    Zhe Wu

  • Trouble opening documents in client application. Credentials not being passed through.

    I have 2 different farms with the same problem which recently popped up. All files either open as read only (Office Documents) or users get an access denied error (PDF Files). Users are able to download the file, make changes and then upload it
    again. It seems like there is a problem passing credentials to Office and Adobe.
    The "Open With Explorer" option no longer works either which leads me to believe it is a problem with WebDAV.
    2 different environments experiencing the problem:
    Server 2012, SharePoint 2013 Server
    Server 2008 R2, SharePoint 2010 Foundation.
    Both are using windows authentication and Kerberos. The two farms are on different networks leading me to believe it is a browser or client issue. However, there is an additional 2013 foundation farm that is functioning correctly. I have compared local security
    policies, IIS settings, SharePoint web application settings and cannot find anything different between the functioning farm and the ones that are having the problem.
    The URL's are already in trusted sites.
    Databases are not in read only mode.
    WebClient Service is running on the client.
    I feel like I can rule out most of the client side issues because I have one farm that is working. I have also tried accessing the site from outside the network with my personal computer and it does not work there either. I am running out of ideas to try
    and fix this. Any ideas would be appreciated.
    Thank You!

    Hi ,
    For this issue, I'm trying to involve someone familiar with this topic to further look at it.
    Thanks,
    Eric
    Eric Tao
    TechNet Community Support

  • Warranty not being honored

    Toshiba is not honoring warranty contracts in Argentina (and it looks like some people have the same problem in other countries). Teknaria, the official service provider, a computer parts wholesaler as they say in their own site, cannot get hold of a motherboard for my laptop, which has been at their office for more than two months. They cannot give me any estimate on when it will be repaired, it could be months. The irritating "robots" at the Toshiba call center keep telling me my own details and the "I-know-how-you-feel" stuff every single time I call. After 2 months, Teknaria would now lend me an old computer just to keep my mouth shut. After having purchased three Toshiba laptops, this is my last time. Pathetic, infuriating service. And please, do not send me back to the LATINO Toshiba customer service!!! Is there any way to skip them -as they have been totally useless-?

    There are no Customer Service reps here in the forums, but if you send me a Private Message with your laptop's serial number and your contact information (email and phone number) I'll be happy to forward that information along with the text of your post to Latin American service management.
    Click here to send me a Private Message.
    Jim

  • /etc/modprobe.d/nouveau_blacklist.conf NOT being honored [SOLVED]

    Topic says it all:
    $ cat /etc/modprobe.d/nouveau_blacklist_ck.conf
    blacklist nouveau
    $ lsmod | grep nouv
    nouveau 709777 0
    ttm 54808 1 nouveau
    drm_kms_helper 25753 1 nouveau
    drm 185576 3 nouveau,ttm,drm_kms_helper
    i2c_algo_bit 5199 1 nouveau
    mxm_wmi 1425 1 nouveau
    video 11133 1 nouveau
    i2c_core 19495 6 nouveau,drm_kms_helper,drm,i2c_algo_bit,nvidia,i2c_i801
    button 4406 1 nouveau
    Last edited by graysky (2011-11-24 13:37:34)

    Hold on guys.... the problem seems to be xorg.  If I boot runlevel 3, no nouveau.  As soon as I start X:
    $ grep -i nouveau /var/log/Xorg.0.log
    [ 60.195] (==) Matched nouveau as autoconfigured driver 0
    [ 60.195] (II) LoadModule: "nouveau"
    [ 60.196] (II) Loading /usr/lib/xorg/modules/drivers/nouveau_drv.so
    [ 60.198] (II) Module nouveau: vendor="X.Org Foundation"
    [ 60.241] (II) NOUVEAU driver
    [ 60.241] (II) NOUVEAU driver for NVIDIA chipset families :
    But it is the nvidia modules that I am using:
    $ grep -i nvidia /var/log/Xorg.0.log
    [ 60.192] (II) Module glx: vendor="NVIDIA Corporation"
    [ 60.192] (II) NVIDIA GLX Module 290.10 Wed Nov 16 18:01:24 PST 2011
    [ 60.195] (==) Matched nvidia as autoconfigured driver 2
    [ 60.212] (II) LoadModule: "nvidia"
    [ 60.212] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
    [ 60.219] (II) Module nvidia: vendor="NVIDIA Corporation"
    [ 60.241] (II) NOUVEAU driver for NVIDIA chipset families :
    [ 60.242] (II) NVIDIA dlloader X Driver 290.10 Wed Nov 16 17:41:10 PST 2011
    [ 60.242] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
    [ 60.422] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
    [ 60.423] (II) NVIDIA(0): Creating default Display subsection in Screen section
    [ 60.423] (==) NVIDIA(0): Depth 24, (==) framebuffer bpp 32
    [ 60.423] (==) NVIDIA(0): RGB weight 888
    [ 60.423] (==) NVIDIA(0): Default visual is TrueColor
    [ 60.423] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
    [ 60.423] (**) NVIDIA(0): Enabling 2D acceleration
    [ 61.535] (II) NVIDIA(GPU-0): Display (Ancor Communications Inc ASUS MS228 (DFP-2)) does not
    [ 61.535] (II) NVIDIA(GPU-0): support NVIDIA 3D Vision stereo.
    [ 61.536] (II) NVIDIA(0): NVIDIA GPU GeForce GTS 450 (GF106) at PCI:1:0:0 (GPU-0)
    [ 61.536] (--) NVIDIA(0): Memory: 1048576 kBytes
    [ 61.536] (--) NVIDIA(0): VideoBIOS: 70.06.1f.00.21
    [ 61.536] (II) NVIDIA(0): Detected PCI Express Link width: 16X
    [ 61.536] (--) NVIDIA(0): Interlaced video modes are supported on this GPU
    [ 61.536] (--) NVIDIA(0): Connected display device(s) on GeForce GTS 450 at PCI:1:0:0
    [ 61.536] (--) NVIDIA(0): Ancor Communications Inc ASUS MS228 (DFP-2)
    [ 61.536] (--) NVIDIA(0): Ancor Communications Inc ASUS MS228 (DFP-2): 330.0 MHz maximum
    [ 61.536] (--) NVIDIA(0): pixel clock
    [ 61.536] (--) NVIDIA(0): Ancor Communications Inc ASUS MS228 (DFP-2): Internal Dual
    [ 61.536] (--) NVIDIA(0): Link TMDS
    [ 61.574] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID has been
    [ 61.574] (**) NVIDIA(0): enabled on all display devices.
    [ 61.574] (WW) NVIDIA(0): The EDID for Ancor Communications Inc ASUS MS228 (DFP-2)
    [ 61.574] (WW) NVIDIA(0): contradicts itself: mode "1280x720" is specified in the
    [ 61.574] (WW) NVIDIA(0): EDID; however, the EDID's valid VertRefresh range
    [ 61.574] (WW) NVIDIA(0): (55.000-75.000 Hz) would exclude this mode's VertRefresh
    [ 61.574] (WW) NVIDIA(0): (50.0 Hz); ignoring VertRefresh check for mode
    [ 61.574] (WW) NVIDIA(0): "1280x720".
    [ 61.574] (WW) NVIDIA(0): The EDID for Ancor Communications Inc ASUS MS228 (DFP-2)
    [ 61.574] (WW) NVIDIA(0): contradicts itself: mode "720x576" is specified in the
    [ 61.574] (WW) NVIDIA(0): EDID; however, the EDID's valid VertRefresh range
    [ 61.574] (WW) NVIDIA(0): (55.000-75.000 Hz) would exclude this mode's VertRefresh
    [ 61.574] (WW) NVIDIA(0): (50.0 Hz); ignoring VertRefresh check for mode "720x576".
    [ 61.574] (WW) NVIDIA(0): The EDID for Ancor Communications Inc ASUS MS228 (DFP-2)
    [ 61.574] (WW) NVIDIA(0): contradicts itself: mode "720x576" is specified in the
    [ 61.574] (WW) NVIDIA(0): EDID; however, the EDID's valid VertRefresh range
    [ 61.574] (WW) NVIDIA(0): (55.000-75.000 Hz) would exclude this mode's VertRefresh
    [ 61.574] (WW) NVIDIA(0): (50.0 Hz); ignoring VertRefresh check for mode "720x576".
    [ 61.574] (WW) NVIDIA(0): The EDID for Ancor Communications Inc ASUS MS228 (DFP-2)
    [ 61.574] (WW) NVIDIA(0): contradicts itself: mode "720x576" is specified in the
    [ 61.574] (WW) NVIDIA(0): EDID; however, the EDID's valid VertRefresh range
    [ 61.574] (WW) NVIDIA(0): (55.000-75.000 Hz) would exclude this mode's VertRefresh
    [ 61.574] (WW) NVIDIA(0): (50.0 Hz); ignoring VertRefresh check for mode "720x576".
    [ 61.574] (WW) NVIDIA(0): The EDID for Ancor Communications Inc ASUS MS228 (DFP-2)
    [ 61.574] (WW) NVIDIA(0): contradicts itself: mode "1280x720" is specified in the
    [ 61.574] (WW) NVIDIA(0): EDID; however, the EDID's valid VertRefresh range
    [ 61.574] (WW) NVIDIA(0): (55.000-75.000 Hz) would exclude this mode's VertRefresh
    [ 61.574] (WW) NVIDIA(0): (50.0 Hz); ignoring VertRefresh check for mode
    [ 61.574] (WW) NVIDIA(0): "1280x720".
    [ 61.574] (WW) NVIDIA(0): The EDID for Ancor Communications Inc ASUS MS228 (DFP-2)
    [ 61.574] (WW) NVIDIA(0): contradicts itself: mode "1920x1080" is specified in the
    [ 61.574] (WW) NVIDIA(0): EDID; however, the EDID's valid HorizSync range
    [ 61.574] (WW) NVIDIA(0): (30.000-83.000 kHz) would exclude this mode's HorizSync
    [ 61.574] (WW) NVIDIA(0): (28.1 kHz); ignoring HorizSync check for mode
    [ 61.574] (WW) NVIDIA(0): "1920x1080".
    [ 61.574] (WW) NVIDIA(0): The EDID for Ancor Communications Inc ASUS MS228 (DFP-2)
    [ 61.574] (WW) NVIDIA(0): contradicts itself: mode "1920x1080" is specified in the
    [ 61.574] (WW) NVIDIA(0): EDID; however, the EDID's valid VertRefresh range
    [ 61.574] (WW) NVIDIA(0): (55.000-75.000 Hz) would exclude this mode's VertRefresh
    [ 61.574] (WW) NVIDIA(0): (50.0 Hz); ignoring VertRefresh check for mode
    [ 61.574] (WW) NVIDIA(0): "1920x1080".
    [ 61.574] (WW) NVIDIA(0): The EDID for Ancor Communications Inc ASUS MS228 (DFP-2)
    [ 61.574] (WW) NVIDIA(0): contradicts itself: mode "1440x576" is specified in the
    [ 61.574] (WW) NVIDIA(0): EDID; however, the EDID's valid VertRefresh range
    [ 61.574] (WW) NVIDIA(0): (55.000-75.000 Hz) would exclude this mode's VertRefresh
    [ 61.574] (WW) NVIDIA(0): (50.0 Hz); ignoring VertRefresh check for mode
    [ 61.574] (WW) NVIDIA(0): "1440x576".
    [ 61.574] (WW) NVIDIA(0): The EDID for Ancor Communications Inc ASUS MS228 (DFP-2)
    [ 61.574] (WW) NVIDIA(0): contradicts itself: mode "1440x576" is specified in the
    [ 61.574] (WW) NVIDIA(0): EDID; however, the EDID's valid VertRefresh range
    [ 61.574] (WW) NVIDIA(0): (55.000-75.000 Hz) would exclude this mode's VertRefresh
    [ 61.574] (WW) NVIDIA(0): (50.0 Hz); ignoring VertRefresh check for mode
    [ 61.574] (WW) NVIDIA(0): "1440x576".
    [ 61.574] (WW) NVIDIA(0): The EDID for Ancor Communications Inc ASUS MS228 (DFP-2)
    [ 61.574] (WW) NVIDIA(0): contradicts itself: mode "1920x1080" is specified in the
    [ 61.574] (WW) NVIDIA(0): EDID; however, the EDID's valid VertRefresh range
    [ 61.574] (WW) NVIDIA(0): (55.000-75.000 Hz) would exclude this mode's VertRefresh
    [ 61.574] (WW) NVIDIA(0): (50.0 Hz); ignoring VertRefresh check for mode
    [ 61.574] (WW) NVIDIA(0): "1920x1080".
    [ 61.575] (WW) NVIDIA(0): The EDID for Ancor Communications Inc ASUS MS228 (DFP-2)
    [ 61.575] (WW) NVIDIA(0): contradicts itself: mode "1280x720" is specified in the
    [ 61.575] (WW) NVIDIA(0): EDID; however, the EDID's valid VertRefresh range
    [ 61.575] (WW) NVIDIA(0): (55.000-75.000 Hz) would exclude this mode's VertRefresh
    [ 61.575] (WW) NVIDIA(0): (50.0 Hz); ignoring VertRefresh check for mode
    [ 61.575] (WW) NVIDIA(0): "1280x720".
    [ 61.575] (WW) NVIDIA(0): The EDID for Ancor Communications Inc ASUS MS228 (DFP-2)
    [ 61.575] (WW) NVIDIA(0): contradicts itself: mode "720x576" is specified in the
    [ 61.575] (WW) NVIDIA(0): EDID; however, the EDID's valid VertRefresh range
    [ 61.575] (WW) NVIDIA(0): (55.000-75.000 Hz) would exclude this mode's VertRefresh
    [ 61.575] (WW) NVIDIA(0): (50.0 Hz); ignoring VertRefresh check for mode "720x576".
    [ 61.576] (WW) NVIDIA(0): The EDID for Ancor Communications Inc ASUS MS228 (DFP-2)
    [ 61.576] (WW) NVIDIA(0): contradicts itself: mode "720x576" is specified in the
    [ 61.576] (WW) NVIDIA(0): EDID; however, the EDID's valid VertRefresh range
    [ 61.576] (WW) NVIDIA(0): (55.000-75.000 Hz) would exclude this mode's VertRefresh
    [ 61.576] (WW) NVIDIA(0): (50.0 Hz); ignoring VertRefresh check for mode "720x576".
    [ 61.576] (WW) NVIDIA(0): The EDID for Ancor Communications Inc ASUS MS228 (DFP-2)
    [ 61.576] (WW) NVIDIA(0): contradicts itself: mode "720x576" is specified in the
    [ 61.576] (WW) NVIDIA(0): EDID; however, the EDID's valid VertRefresh range
    [ 61.576] (WW) NVIDIA(0): (55.000-75.000 Hz) would exclude this mode's VertRefresh
    [ 61.576] (WW) NVIDIA(0): (50.0 Hz); ignoring VertRefresh check for mode "720x576".
    [ 61.577] (WW) NVIDIA(0): The EDID for Ancor Communications Inc ASUS MS228 (DFP-2)
    [ 61.577] (WW) NVIDIA(0): contradicts itself: mode "1280x720" is specified in the
    [ 61.577] (WW) NVIDIA(0): EDID; however, the EDID's valid VertRefresh range
    [ 61.577] (WW) NVIDIA(0): (55.000-75.000 Hz) would exclude this mode's VertRefresh
    [ 61.577] (WW) NVIDIA(0): (50.0 Hz); ignoring VertRefresh check for mode
    [ 61.577] (WW) NVIDIA(0): "1280x720".
    [ 61.577] (WW) NVIDIA(0): The EDID for Ancor Communications Inc ASUS MS228 (DFP-2)
    [ 61.577] (WW) NVIDIA(0): contradicts itself: mode "1920x1080" is specified in the
    [ 61.577] (WW) NVIDIA(0): EDID; however, the EDID's valid HorizSync range
    [ 61.577] (WW) NVIDIA(0): (30.000-83.000 kHz) would exclude this mode's HorizSync
    [ 61.577] (WW) NVIDIA(0): (28.1 kHz); ignoring HorizSync check for mode
    [ 61.577] (WW) NVIDIA(0): "1920x1080".
    [ 61.577] (WW) NVIDIA(0): The EDID for Ancor Communications Inc ASUS MS228 (DFP-2)
    [ 61.577] (WW) NVIDIA(0): contradicts itself: mode "1920x1080" is specified in the
    [ 61.577] (WW) NVIDIA(0): EDID; however, the EDID's valid VertRefresh range
    [ 61.577] (WW) NVIDIA(0): (55.000-75.000 Hz) would exclude this mode's VertRefresh
    [ 61.577] (WW) NVIDIA(0): (50.0 Hz); ignoring VertRefresh check for mode
    [ 61.577] (WW) NVIDIA(0): "1920x1080".
    [ 61.578] (WW) NVIDIA(0): The EDID for Ancor Communications Inc ASUS MS228 (DFP-2)
    [ 61.578] (WW) NVIDIA(0): contradicts itself: mode "1440x576" is specified in the
    [ 61.578] (WW) NVIDIA(0): EDID; however, the EDID's valid VertRefresh range
    [ 61.578] (WW) NVIDIA(0): (55.000-75.000 Hz) would exclude this mode's VertRefresh
    [ 61.578] (WW) NVIDIA(0): (50.0 Hz); ignoring VertRefresh check for mode
    [ 61.578] (WW) NVIDIA(0): "1440x576".
    [ 61.578] (WW) NVIDIA(0): The EDID for Ancor Communications Inc ASUS MS228 (DFP-2)
    [ 61.578] (WW) NVIDIA(0): contradicts itself: mode "1440x576" is specified in the
    [ 61.578] (WW) NVIDIA(0): EDID; however, the EDID's valid VertRefresh range
    [ 61.578] (WW) NVIDIA(0): (55.000-75.000 Hz) would exclude this mode's VertRefresh
    [ 61.578] (WW) NVIDIA(0): (50.0 Hz); ignoring VertRefresh check for mode
    [ 61.578] (WW) NVIDIA(0): "1440x576".
    [ 61.578] (WW) NVIDIA(0): The EDID for Ancor Communications Inc ASUS MS228 (DFP-2)
    [ 61.578] (WW) NVIDIA(0): contradicts itself: mode "1920x1080" is specified in the
    [ 61.578] (WW) NVIDIA(0): EDID; however, the EDID's valid VertRefresh range
    [ 61.578] (WW) NVIDIA(0): (55.000-75.000 Hz) would exclude this mode's VertRefresh
    [ 61.578] (WW) NVIDIA(0): (50.0 Hz); ignoring VertRefresh check for mode
    [ 61.578] (WW) NVIDIA(0): "1920x1080".
    [ 61.598] (II) NVIDIA(0): Assigned Display Device: DFP-2
    [ 61.598] (==) NVIDIA(0):
    [ 61.598] (==) NVIDIA(0): No modes were requested; the default mode "nvidia-auto-select"
    [ 61.598] (==) NVIDIA(0): will be used as the requested mode.
    [ 61.598] (==) NVIDIA(0):
    [ 61.598] (II) NVIDIA(0): Validated modes:
    [ 61.598] (II) NVIDIA(0): "nvidia-auto-select"
    [ 61.598] (II) NVIDIA(0): Virtual screen size determined to be 1920 x 1080
    [ 61.620] (--) NVIDIA(0): DPI set to (101, 101); computed from "UseEdidDpi" X config
    [ 61.620] (--) NVIDIA(0): option
    [ 61.620] (II) NVIDIA: Using 3072.00 MB of virtual memory for indirect memory
    [ 61.620] (II) NVIDIA: access.
    [ 61.623] (II) NVIDIA(0): ACPI: failed to connect to the ACPI event daemon; the daemon
    [ 61.623] (II) NVIDIA(0): may not be running or the "AcpidSocketPath" X
    [ 61.623] (II) NVIDIA(0): configuration option may not be set correctly. When the
    [ 61.623] (II) NVIDIA(0): ACPI event daemon is available, the NVIDIA X driver will
    [ 61.623] (II) NVIDIA(0): try to use it to receive ACPI event notifications. For
    [ 61.623] (II) NVIDIA(0): details, please see the "ConnectToAcpid" and
    [ 61.623] (II) NVIDIA(0): "AcpidSocketPath" X configuration options in Appendix B: X
    [ 61.623] (II) NVIDIA(0): Config Options in the README.
    [ 61.626] (II) NVIDIA(0): Setting mode "nvidia-auto-select"
    [ 61.711] (==) NVIDIA(0): Disabling shared memory pixmaps
    [ 61.711] (==) NVIDIA(0): Backing store disabled
    [ 61.711] (==) NVIDIA(0): Silken mouse enabled
    [ 61.711] (==) NVIDIA(0): DPMS enabled
    [ 61.711] (WW) NVIDIA(0): Option "TwinViewXineramaInfoOrder" requested "CRT", but no
    [ 61.711] (WW) NVIDIA(0): such display device could be found, or all display devices
    [ 61.711] (WW) NVIDIA(0): by that name are currently unavailable.
    [ 61.711] (WW) NVIDIA(0): Option "TwinViewXineramaInfoOrder" requested "TV", but no such
    [ 61.711] (WW) NVIDIA(0): display device could be found, or all display devices by
    [ 61.711] (WW) NVIDIA(0): that name are currently unavailable.
    [ 61.712] (II) NVIDIA(0): [DRI2] Setup complete
    [ 61.712] (II) NVIDIA(0): [DRI2] VDPAU driver: nvidia
    [ 61.787] (II) config/udev: Adding input device HDA NVidia HDMI/DP (/dev/input/event10)
    [ 61.787] (II) config/udev: Adding input device HDA NVidia HDMI/DP (/dev/input/event7)
    [ 61.788] (II) config/udev: Adding input device HDA NVidia HDMI/DP (/dev/input/event8)
    [ 61.788] (II) config/udev: Adding input device HDA NVidia HDMI/DP (/dev/input/event9)

  • JSF 1.2 Rendered decode method not being called

    I've been banging my head about this one, I have a custom component with:
    TagClass
    RendererClass
    ComponentClass
    The encodeBegin is running fine in the renderer class, but the decode method is never being called - and it does properly over ride the super class method:
    public class UIRendererClass extends Renderer {
    public void decode(FacesContext context, UIComponent component) {
    // Do some stuff
    The output always renders correctly - but it never calls the decode method (which updates some other page components), proved with logging and forced exceptions.
    I'm using SJAS 9.0 FCS and Facelets 1.1.11, anybody any ideas?

    Hi,
    I can't use my own components with JSF 1.2 and facelets and Tomcat 5.0.28, so I will be very grateful if you can send to a small working example (i.e. project) of using custom components.
    Thanks in advance

  • Maintenance Windows are not being honored - SCCM 2012 R2

    I have a TS that runs a command to reboot our systems, and this TS is deployed to a test device collection with the following settings:
    - Deployment settings: Install and required
    - Deployment schedule: every 1 hour
    - Rerun behavior: Always rerun program
    The test device collection has the following maintenance windows set:
    - Recurrence: Weekly
    - Recur every: Saturday
    - Start time: 2am
    - End time: 3am
    - Apply this schedule to: Task sequences
    Despite the maintenance window, my test machine is getting rebooted every hour. Am I missing anything here?
    Thanks.

    I did but there's not much there as to why the MW is being ignored
    Mandatory execution requested for program * and advertisement PS120015 execmgr 3/7/2014 12:00:00 PM 2648 (0x0A58)
    Creating mandatory request for advert PS120015, program *, package PS10006A execmgr 3/7/2014 12:00:00 PM 2648 (0x0A58)
    The created request is a Task Sequence request execmgr 3/7/2014 12:00:00 PM 2648 (0x0A58)
    Execution Request for advert PS120015 package PS10006A program * state change from NotExist to WaitingDependency execmgr 3/7/2014 12:00:00 PM 2648 (0x0A58)
    Raising client SDK event for class CCM_Program, instance CCM_Program.PackageID="PS10006A",ProgramID="*", actionType 1l, value , user NULL, session 4294967295l, level 0l, verbosity 30l execmgr 3/7/2014 12:00:00 PM 2648 (0x0A58)
    An existing MTC token was not supplied, using ExecutionRequest's Id as MTC token and this execution request is the owner of resultant MTC task. execmgr 3/7/2014 12:00:00 PM 2648 (0x0A58)
    Request a MTC task for execution request of package PS10006A, program * with request id: {C67D2DA3-4BE8-49A9-9989-F4CC8D5BBED3} execmgr 3/7/2014 12:00:00 PM 2648 (0x0A58)
    Execution Request for advert PS120015 package PS10006A program * state change from WaitingDependency to Ready execmgr 3/7/2014 12:00:00 PM 2648 (0x0A58)
    Raising client SDK event for class CCM_Program, instance CCM_Program.PackageID="PS10006A",ProgramID="*", actionType 1l, value , user NULL, session 4294967295l, level 0l, verbosity 30l execmgr 3/7/2014 12:00:00 PM 2648 (0x0A58)
    MTC task with id {C67D2DA3-4BE8-49A9-9989-F4CC8D5BBED3}, changed state from 0 to 4 execmgr 3/7/2014 12:00:00 PM 2556 (0x09FC)
    MTC signaled SWD execution request with program id: *, package id: PS10006A for execution. execmgr 3/7/2014 12:00:00 PM 2556 (0x09FC)
    Sending ack to MTC for task with id: {C67D2DA3-4BE8-49A9-9989-F4CC8D5BBED3} execmgr 3/7/2014 12:00:00 PM 2556 (0x09FC)
    Executing program  in Admin context execmgr 3/7/2014 12:00:00 PM 2556 (0x09FC)
    Execution Request for advert PS120015 package PS10006A program * state change from Ready to NotifyExecution execmgr 3/7/2014 12:00:00 PM 2556 (0x09FC)
    Raising client SDK event for class CCM_Program, instance CCM_Program.PackageID="PS10006A",ProgramID="*", actionType 1l, value , user NULL, session 4294967295l, level 0l, verbosity 30l execmgr 3/7/2014 12:00:00 PM 2556 (0x09FC)
    Executing program as a task sequence. execmgr 3/7/2014 12:00:00 PM 2556 (0x09FC)
    Executing TS Program execmgr 3/7/2014 12:00:00 PM 2556 (0x09FC)
    Task Sequence started execmgr 3/7/2014 12:00:00 PM 2556 (0x09FC)

  • CSM - slb-policy not being honored

    We have a vserver that I set up on a CSM - running v 4.2(9). There is a default serverfarm and an SLB-POLICY that uses an url-map and a different serverfarm. It appears that once the initial connection is made to the default serverfarm any requests that should match the url-map still end up going to that default serverfarm and not the new serverfarm. We are not running persistent rebalance as the application on the default serverfarm will not load the web pages properly. Note there are no sticky configuration parameters with this vserver. Thanks in advance for any help.

    P.S. If a url is entered into a new browser that matches the url-map, that request is switched to the correct serverfarm. So to go back and forth between the matched url's and non-matched (default serverfarm) the browser must be closed and and a new one opened (at least this is how Internet Explorer 6 is responding).

  • $50 trade for working tablet not being honored at store #468

    Same issues as others are having:
    West Paterson, NJ (Store 468)
    30 Andrews Dr
    Woodland Park, NJ 07424
    Phone: 973-294-1030
     I have a generic brand Android tablet. The associate at the store kept saying that this model number was not in the system and couldn't be accepted for a trade-in. I asked to speak to the manager and he told me the same thing. Afterwards, I called corporate customer service and received the same response for a third time. All the while, I reminded them of the words "any working tablet" and "guaranted minimum", with no success. I don't know why so many people are having this problem.
    Looks like BB is losing another customer.

    Hi drewbagel423,
    I appreciate you registering on the forums and sharing your concerns with us in regards to our current $50 tablet trade-in promotion. However, I do regret hearing that you were unable to take advantage of this promotion, even after speaking with multiple associates. Furthermore, I sincerely apologize for the experience you had at our West Patterson location, especially if you were turned away when you may have otherwise been eligible for the promotion.
    Per the terms of the promotion, seen here, as long as your tablet powers on, does not have a cracked screen or water damage, and isn’t a Barnes and Noble Nook based e-reader, your tablet should be eligible for the $50 Best Buy gift card.
    If your tablet meets these requirements, I suggest returning to the store and having them take another look at this as today is the last day of the promotion. Please consult further leadership if you run into any issues and they should be able to assist.
    Thanks for sharing your feedback with us on the forums.
    Brian|Senior Social Media Specialist | Best Buy® Corporate
     Private Message

Maybe you are looking for