Solution : Disable Windows Defender Real-Time protection
Overlay Icons disappear– (TortoiseSVN,Dropbox,SkyDrive,Google Drive…)
- Regedit >
KEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\explorer\ShellIconOverlayIdentifiers
) - Rename the entries under ShellIconOverlayIdentifiers to reorder the Icons.
- End task explorer.exe and restart it. (As same as restart computer.)
Reference: http://stackoverflow.com/questions/1057734/tortoisesvn-icons-not-showing-up-under-windows-7
SSIS package using SQL Authentication on SQL Server Agent
-
SQL Server Business Intelligence Development Studio > SSIS tab > Package Configurations Organizer > Enable Package Configurations > Click Add > Type : XML configuration file > Set up file path and name > Next > Select Connection manager > Select Connection and pick Password.
-
Open configuration feil from you store path. > Add Password in <ConfiguredValue> element :
<ConfiguredValue>PasswordSample</ConfiguredValue> - Add configuration file in you SQL Server agent.
Reference : SSIS package using SQL Authentication and DontSaveSensitive as ProtectionLevel
Run sqlcmd.exe without having SQL Server installed on Windows Server 2008
- Go to www.microsoft.com/en-us/download/details.aspx?id=26728
- Install Microsoft® SQL Server® 2008 R2 Native Client
(1033\x86\sqlncli.msi or 1033\x64\sqlncli.msi) - Install Microsoft® SQL Server® 2008 R2 Command Line Utilities
(1033\x64\SqlCmdLnUtils.msi or 1033\x86\SqlCmdLnUtils.msi) - sqlcmd in C:\Program Files\Microsoft SQL Server\100\Tools\Binn\
Visual Studio 2012 open MCV4 project has error message - 'Optimization' does not exist in the namespace 'System.Web'
Error message:
The type or namespace name 'Optimization' does not exist in the namespace 'System.Web' (are you missing an assembly reference?)
Solution:
Install Microsoft ASP.NET Web Optimization Framework 1.0.0 ( http://nuget.org/packages/Microsoft.AspNet.Web.Optimization/1.0.0)
From the Tools menu, select Library Package Manager and then click Package Manager Console.>
Install-Package Microsoft.AspNet.Web.Optimization -Version 1.0.0
CSS - Multiple Borders sample
Firefox 3.5+, Safari 4+, Chrome 4+, Opera 10+, Internet Explorer 8+
Reference:http://nicolasgallagher.com/multiple-backgrounds-and-borders-with-css2/demo/borders.html
CSS attribute selectors
Attribute selectors let you target an element based on its attributes. You can specify the element’s attribute only, so all the elements that have that attribute — whatever the value — within the HTML will be targeted, or be more specific and target elements that have particular values on their attributes — and this is where attribute selectors show their power.
There are 6 different types of attribute selectors:
[att=value]
The attribute has to have the exact value specified.[att~=value]
The attribute’s value needs to be a whitespace separated list of words (for example, class=”title featured home”), and one of the words is exactly the specified value.[att|=value]
The attribute’s value is exactly “value” or starts with the word “value” and is immediately followed by “-”, so it would be “value-”.[att^=value]
The attribute’s value starts with the specified value.[att$=value]
The attribute’s value ends with the specified value.[att*=value]
The attribute’s value contains the specified value.