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

Similar Messages

  • Motion "Field Order" setting not being honored by Final Cut Pro

    I was having a doozy of a time bringing Motion files into a Final Cut ProRes 4444 Timeline (the entire project is basically motion). While my field order in both Motion and my Final Cut sequence was set to none, Motion text and graphics became blurry once I dragged them into Final Cut. I finally realized that (after stumbling upon this post http://discussions.apple.com/thread.jspa?threadID=1967373) that Final Cut was resetting the field order of the Motion project to Upper. It was said in this post that this was a bug. As this post was from April 2009 and it seems to still be happening, I'm assuming the bug hasn't been fixed, but does anyone know of a workaround avoid having to go into each Motion file in the timeline and switching the field order manually? Thanks!

    AFAIK, you have to switch them manually. You can select multiple clips, do ⌘9, then in the multiple selection window, right click on the Field Dominance and one at a time, set it to None (or whatever you need). It's pretty quick.
    Patrick

  • 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

  • In an Excel template file, can I set the Folder Path in the SaveAs Dialog box?

    I have an Excel template file (xltm) and, with help from the forum, I now have a Workbook_BeforeSave subroutine to save the template as a macro enabled file (xlsm).  I’m so thankful for that help from Edward in the forum.
    I also want to set the default folder location to save the file. I really only need it when the template is saved as a new xlsm file, because if they open the xlsm file, it’s usually opened from the default folder path so any save would normally go back
    to where the file was opened.  However, with a template (even if the template is in the default folder) the Saved template reverts back to the user’s documents folder.
    Is there a good way to do this?
    I tried to modify the Workbook_BeforeSave code like this:
    Private Sub Workbook_BeforeSave(ByVal SaveAsUI As Boolean, Cancel As Boolean)
    Dim FolderDir As String
    Dim FileNameVal As String
    FolderDir = "Z:\save\data\place\"
    If SaveAsUI Then
    If Dir(WorkBookFolder, vbDirectory) <> "" Then
    Application.DefaultFilePath = WorkBookFolder
    End If
    FileNameVal = Application.GetSaveAsFilename(, "Excel Macro-Enabled Workbook (*.xlsm), *.xlsm")
    Cancel = True
    If FileNameVal = "False" Then 'User pressed cancel
    Exit Sub
    End If
    ThisWorkbook.SaveAs Filename:=FileNameVal & ".xlsm", FileFormat:=xlOpenXMLWorkbookMacroEnabled
    Application.EnableEvents = True
    End If
    End Sub
    But there are a lot of checks that would need to be done.
    I'm not sure how to only default the folder saved only when they open the template, but not change it when they just open an already saved Excel file created by the template (with all the active content, macros, etc.).
    Alan Edwards

    Hi Alan,
    store the path\filename in the 1st argument:
    FileNameVal = Application.GetSaveAsFilename("C:\*.xlsm", "Excel Macro-Enabled Workbook (*.xlsm), *.xlsm")
    Andreas.

  • BUG: Return listener not being called for manually launched dialog

    Hello all,
    I have found a bug in the dialog framework. To set the stage, I have a ADF Faces page with a command button on it. The partial submit property is set to "true" and the use window property is also set to "true." I also have the returnListener property set to a method in the backing bean. When I set the Action property of the command button to a global navigation rule that launches a dialog, the return listener is being called correctly when I dismiss the dialog.
    However, when I launch the dialog from an action listener, the return listener is not being called. Here is my action listener code:
      public void al (ActionEvent ae)
        FacesContext context = FacesContext.getCurrentInstance();
        ViewHandler vh = context.getApplication().getViewHandler();
        UIViewRoot dialog = vh.createView(context, "/infrastructure/ICConfirmDelete.jspx");
        HashMap properties = new HashMap();
        properties.put("width", new Integer(300));
        properties.put("height", new Integer(300));
        AdfFacesContext.getCurrentInstance().launchDialog(dialog, null, ae.getComponent(), true, properties);
      }and here is my return listener:
      public void rl(ReturnEvent re)
        System.out.println("in return");
        System.out.println((String) re.getReturnValue());
      }OK - here's an update. If the command button is in the Actions facet of the page, everything works as expected. However, if the button is in the selection facet of a table (inside of afTableSelectOne) - it does not work properly as documented here. It also works correctly if the button is in the actions facet of the table. I think that this is a bug and needs to work - my use case (as you might tell from my code) is to do a delete confirmation dialog. My short-term workaround is to use the Action instead of ActionListener property on the command button, but the issue I have is that the pop-up dialog is just a tad too small, and is showing scrollbars.
    Regards,
    John
    Message was edited by:
    John Stegeman
    Added additional information about tableSelectOne

    Gabrielle,
    Sorry for the confusion.
    What does not work:
    Initiating a dialog from the ActionListener attached to a command button (where the command button is inside an afSelectTableOne) will not fire the returnListener when the dialog is closed.
    What does work:
    Initiating a dialog by returning a dialog-based navigation rule (e.g. a string starting with "dialog:") from the Action attached to a command button (even if the command button is inside an afSelectTableOne) - the return listener is called when the dialog is closed
    What also does work:
    Initiating a dialog with either method (Action or ActionListener) when the command button is elsewhere on the Page (e.g. in the Actions facet)
    Hope this clarifies the bug. I could send a test case if desired.
    Kind regards,
    John

  • Finder sidebar not updating with applications open/save dialog boxes

    Hi all,
    I've searched the threads and can't seem to find an answer to this recurring issue that I'm having.
    I save folders to current projects in the Finder sidebar. However, I find that when I try to find those sidebar folders from within the open/save dialog applications that it is often times and old version of the sidebar. In the image linked below note the Finder sidebar on the left and the InDesign CS sidebar on the right. The list of folders is different. The version via InDesign seems to be an older cached version.
    Screen capture: http://www.fabianross.com/forum-images/screen-capture.png
    Does anyone know how to update this cached version to see the new list of folders?
    Thanks,
    Jerry

    Try deleting this file: com.apple.sidebarlists.plist
    /Users/YourName/Library/Preferences. Drag that file from the Preferences folder to the Trash, empty the Trash and reboot. See if that helps...
    Seems to me that Adobe is very picky about where the files are kept on the hard drive. You might not want them in the Sidebar. Whenever you do an Adobe software update, the installer needs the path to where those files go. If it's missing in action, it can wreak havoc.
    Make sure when you do Adobe updates, if there is a link included or a Read Me file, check that out first before installing anything.
    Run Disk Utility and Repair Disk Permissions BEFORE and AFTER any software updates:
    Launch Disk Utility. Select MacintoshHD in the panel on the left, select FirstAid, then click: Repair Disk Permissions. Quit DU when it's finished and reboot.
    Carolyn

  • Save Output to: setting not being saved

    This has been driving me nuts for a couple of years, so I figured I'd finally ask if anyone else sees this behavior.
    My script grabs a PDF and converts each page to new, separate, PDF files using a custom name and number. There are three components: Ask for Finder Items, PDF to Images, and Make Finder Item Names Sequential.
    My problem appears in the PDF to Images part. I have the "Save Output to:" setting set to a folder ON my desktop (Outbox). Every time I open the script it has reverted to "Save Output to: Desktop". I can change it, run the script from within Automator, and it works fine. If I save it (or save-as), when I next open the script, it will have reverted to Desktop. I have tried every iteration I can think of to get it to remember to store the files in the correct folder, but it just won't save this setting.
    I am in the habit of just opening the script first, and changing the setting, then running the script before I have closed it, so this is no big deal -- but it does make it two more steps, which kinda defeats the whole purpose of automator.

    Understood, but you mentioned scripts and AppleScript is used extensively with workflows. If there aren't any in yours, then all I can suggest is peruse http://www.automatedworkflows.com/tips/podcast.html
    Also, see http://discussions.apple.com/thread.jspa?threadID=2039384 and Introduction to Automator tutorial at http://automator.us/leopard/video/index.html

  • 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

  • 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)

  • Bpm setting not being saved

    I have found that when opening previously saved multitrack sessions the bpm rate has not been saved (it reverts to whatever the setting was in the previously opened multitrack session.) Is this means of saving information adjustable? If so, how do I do it? If not, it means that I have to keep a record of this data elsewhere which is not very convenient.
    Thanks.

    Happy to be corrected but I think this was happening in CS5.5 but may have been fixed in CS6
    What version of CS are you running?
    Edit: I thought one of the devs may have mentioned this

  • 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)

  • IPhone APN setting not being permanently saved

    I have a new iPhone 3GS on O2 PayandGo. At least once every day my cellular data network stops working. When I check my Celluar Data Network I find my APN has changed from payandgo.o2.co.uk to idata.o2.co.uk. I then have to re-enter the correct APN and restart the iPhone.
    This then works for another day or so before again switching back all on its own to the pay monthly setting.
    Any ideas how to make it hold the edited APN setting permanently? (rather than reverting to the default pay monthly APN)

    Setting the APN with the config utility does change the default setting so if I then reset the network settings it holds the payandgo name. However it still keeps loosing the connection and has to be over typed and the iPhone restarted in order to get a data connection.
    I have noticed that the connection is lost either when I move to a different location and therefore a different o2 server or I am using free Wi-Fi such as the Cloud or BT Open Zone.
    It seems quite a common problem as it has also been reported on the o2 forum by other users. However no one has fixed it and o2 do nothing more than replace SIMS.

  • 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).

  • Auto Login Setting Not Being Saved

    I'm trying to enable auto login. When I go to sys prefs and set auto login to the userid I want and exit sys prefs then go back to sys prefs it is reset to the original user. Any ideas what is wrong?

    Try to move this file on th desktop and restart :
    youraccount/Library/Preferences/ByHost/com.apple.systempreferences.xxx.plist
    HD/Library/Preferences/com.apple.loginwindow.plist
    If doesn't fix the problem , put them in their original place.

Maybe you are looking for

  • Please help Update me after a 2 year COMA - Crash Course from the experts!

    I basically have been in a COMA for the past 2+ years and in 2006 was part of an Elite group of Tech Support - Research and Review team that also served as "Crash Test Dummies" for Mac and various related software, Quark, Adobe, InDesign. Then I went

  • ABAP HR Programming

    Hi How to extract PERNR when PLVAR is given? rgds srikanth

  • ALV one  cell as checkbox based on some conditions

    Hi All,    I have a requirement which is as follows: For every NEW VBELN, I need a checkbox in the ALV. So, the output should look like this :-   Checkbox     VBELN   otherFields   Required      11111         42   Not Req.      11111         43   Req

  • DUPLICATE by bRMAN in 8i

    Hi, first I have : List of Backup Pieces Key Pc# Cp# Status Completion Time Piece Name 1141 1 1 AVAILABLE 07/07/07 C:\ORACLE\ORADATA\BACKUP\DB1\DF_DB1_627298613_1_1 List of Datafiles Included File Name LV Type Ckp SCN Ckp Time 1 C:\ORACLE\ORADATA\DB1

  • SELECT STATMENT USING JOINS OF 2 TABLE WITH UPT 200 ROWS

    Hi      Any give me sample code for select statment'' SELECT STATMENT USING JOINS OF 2 TABLE WITH UPT 200 ROWS''. Thanks in advance . regards veera