Monday, August 26, 2013

styling

http://tympanus.net/codrops/2012/10/16/custom-login-form-styling/

Wednesday, August 14, 2013

Enable Widespread Content-Searching


Enable Widespread Content-Searching

  1. 1
    Right-click the Start button and select Open Windows Explorer.

  2. 2
    Press ALT. This will cause a toolbar to appear near the top of the Windows Explorer window.

  3. 3
    Go to Tools > Folder Options.

  4. 4
    Under the Search tab, click Always search file names and content. Allowing this to process might take several minutes.

  5. 5
    Press OK.

  6. 6
    Run a test search. Go to Start and type a keyword in the Search Programs and Files box. The results should contain the keyword in more than just the tile.

Enable Content-Searching for a Specific File Type

  1. 1
    Go to Start and find the Search Programs and Files box.

  2. 2
    Type "search" then choose the result Change How Windows Searches.

  3. 3
    Click the Advanced button just below the list of indexed locations.

  4. 4
    Go to the File Types tab.

  5. 5
    Select the desired extension and click Index Properties and File Contents to enable content-searching. If you want to search the contents of Excel files, for example, scroll down to .xlsx.



    • If the extension is not listed, enter your desired file extension, such as ".php," into the input box at the bottom and click Add.

  6. 6
    Press OK.

EditTips

  • If you're still unable to search file contents, try:
  1. Open Windows Explorer
  2. Right-click the folder you want to search, e.g. My Documents
  3. Click: Properties
  4. On the General tab, Click: Advanced
  5. On the Advanced Attributes dialog, select:

    [x] Allow files in this folder to have contents indexed in addition to file properties
  6. Click: OK
  7. Click: OK
  • The Indexing Options page will display the real time status of the indexing operation.
  • You may also add additional folders to the list of indexed locations.
  • After updating your indexing options, you may have to wait some time before your results will appear as expected, as Windows must rebuild its index with the contents of the new files.

Thursday, August 1, 2013

folder Junction creation

http://technet.microsoft.com/en-us/sysinternals/bb896768.aspx



Introduction

Windows 2000 and higher supports directory symbolic links, where a directory serves as a symbolic link to another directory on the computer. For example, if the directory D:\SYMLINK specified C:\WINNT\SYSTEM32 as its target, then an application accessing D:\SYMLINK\DRIVERS would in reality be accessing C:\WINNT\SYSTEM32\DRIVERS. Directory symbolic links are known as NTFS junctions in Windows. Unfortunately, Windows comes with no tools for creating junctions—you have to purchase the Win2K Resource Kit, which comes with the linkd program for creating junctions. I therefore decided to write my own junction-creating tool: JunctionJunction not only allows you to create NTFS junctions, it allows you to see if files or directories are actually reparse points. Reparse points are the mechanism on which NTFS junctions are based, and they are used by Windows' Remote Storage Service (RSS), as well as volume mount points.
Please read this Microsoft KB article for tips on using junctions.
Notethat Windows does not support junctions to directories on remote shares.
If you want to view reparse information, the usage for Junction is the following:

Using Junction

Use junction to list junctions:
Usage: [-s]
-s    Recurse subdirectories
Examples:
To determine if a file is a junction, specify the file name:
junction c:\test
To list junctions beneath a directory, include the –s switch:
junction -s c:\
To create a junction c:\Program-Files for "c:\Program Files":
C:\>md Program-Files
C:\>junction c:\Program-Files "c:\Program Files"
To delete a junction, use the –d switch:
junction -d c:\Program-Files