Fixing: Screen Flicker bug in IE by disabling the Modal Dialog Box in SharePoint 2010
There's a bug in the latest version of IE that causes a flicker in the greyed out section. This can be very distracting and has caused complaints and seizures. Okay, maybe not seizures, but it could happen. To rectify this, as we have no control over the browser or patching, we decided to set every list to open in the form view, not the modal dialog view. So, we needed a PowerShell script to accomplish this since we have hundreds of sites and thousands of lists. The PowerShell command to set this is: $list.NavigateForFormsPages = $true $list.update() Note that the setting NavigateForFormsPages should be set to true for Form or False for modal dialog. Now we need to loop through each site and hit each list. Here's the code I came up with: ############################################################################# $webcount = 0 $listcount = 0 $webs = (Get-SPSite -limit all | Get-SPWeb -Li...