Posts Tagged ‘shortcut’

Create shortcuts in Linux (symbolic links)

Wednesday, April 11, 2012 posted by CSch

Windows users are used to be able to create shortcuts to have fast access to their files and folders which is especially useful if these are buried deep in their system – this feature isn’t as obvious on most Linux systems as it is in Windows. Shortcuts are made using symbolic links here.

Terminal way (the link will appear in the folder the terminal points to):

ln -s /folderorfile/link/will/point/to /name/of/the/link

Desktop way:

To create a symlink without a terminal, just hold Shift+Ctrl and drag the file or folder you want to link to to the location where you want the shortcut. This method may not work with all desktop managers.

Create New Metro Tiles On Windows 8

Friday, March 2, 2012 posted by CSch

Since you now won’t get around to use the Metro Start-screen on the recently released Windows 8 Consumer preview, it might be good to know how to add some functionality to it.

To add the usual Windows tools or Apps you can just open the Metro menu and right-click some free space. On the appearing menu at the bottom of the screen, choose All Apps. You now get to a list of Windows components and apps, which you can right-click to open their menus. From there, click on Pin to Start:

To pin other programs or folders to the Start-screen, go to the classic desktop and right-click the item you want to have on the Metro screen. Here, you also have the option to Pin to Start.

A way to produce more customized tiles is to create a shortcut on the desktop which you can assign switches to. For example, if the shutdown button is too hidden for you, just create a new shortcut and assign the path shutdown /s to it (for more options, open a cmd and type shutdown /?). Stick it to Metro as described above, give it a nice icon before maybe, and your shutdown button will be far more accessible than the original one.

Remove Arrows From Shortcut Icons on Windows 7

Friday, February 10, 2012 posted by CSch

Upon creating shortcuts on Windows, the icons used for them are always tagged with an additional small arrow icon to indicate that the thing you have there is only a pointer to another file, not the file itself.

If, for esthetical or other reasons, you want remove those arrow icons, you can do that by choosing a transparent icon instead of the arrow to be displayed as indicator so that it won’t be visible anymore. To do that you have to apply a simple registry tweak:
Open the Windows registry by entering regedit into a Run… prompt and browse the following key:

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons

If the Shell Icons key does not exist, create it by right-clicking the Explorer key. Next, select the created Icons key and right-click the right pane to create a new String value. Name it 29 and assign the value C:\Windows\System32\shell32.dll,50 to it.
Afterwards close the registry and open a command line by searching for cmd. Enter the following commands one after another (Please note: the first one will close your explorer which means that your windows and taskbar will disappear. The last one is the command to restart your computer, which you need to do to apply all changes):

taskkill /IM explorer.exe /F
cd /d %userprofile%\AppData\Local
del IconCache.db /a
shutdown /r

After rebooting, the icons will be replaced. To revert the changes, simply remove the registry value and execute the commands again.