Posts Tagged ‘start’
Create New Metro Tiles On Windows 8
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.
Install SpeedDial Screen For Firefox
Apart from the usual Bookmarks and Bookmarks Toolbar, the SpeedDial screen introduced a great visual option for quick access to your most commonly used websites. It currently is the main new-window-replacement on the Opera browser and can be downloaded as an add-on for Firefox.
It can be downloaded on the Mozilla Firefox add-on page here: https://addons.mozilla.org/en-US/firefox/addon/speed-dial/
The screen is highly configurable in terms of when to show up, which actions to perform on click and keyboard input, largeness of panels, number of panels etc. You can also put them together to groups which are then displayed as tabs in a seperate group bar.
Monitor Processes With Windows PowerShell
Maybe you have already come across applications that require you to rearrange things on your desktop for optimal visibility or which you only use in combination with other programs or items – an automated startup or rearrangement would come handy in those situation.
The following little PowerShell script allows just this – automatical actions on process start and/or end.
$target = “firefox”
$process = Get-Process | Where-Object {$_.ProcessName -eq $target}
while ($true)
{
while (!($process))
{
$process = Get-Process | Where-Object {$_.ProcessName -eq $target}
start-sleep -s 5
}
if ($process)
{
“Place action on process start here”
$process.WaitForExit()
start-sleep -s 2
$process = Get-Process | Where-Object {$_.ProcessName -eq $target}
“Place action on process exit here”
}
}
The script above runs continuously until it is terminated or the current session is ended. With a wait time of 5 seconds to give the CPU a break it checks if the process is running – if not, it continues to check, if yes, it spills out some text you can replace with the action to perform on process start and waits until the process is ended. Afterwards, it returns some text to replace and continues to wait for process start again. Currently, the process that is monitored is firefox and is specified in the $target variable at the top of the code.
To run the script, copy and paste it into a notepad, save it as .ps1 file and schedule it on startup with the Windows Scheduled Tasks service if you like. To run the script completely without pop-ups, have a look here.
Save Time On Windows Start-up
To boot your Windows machine faster, it is possible to disable the graphical user interface used during system start-up (the Windows logo loading screen). To accomplish that, hit Windows key + R on your desktop to call a Run prompt and enter msconfig. On the appearing window, go to the Boot tab and activate the No GUI boot checkbox. Hit Apply and/or OK and reboot the machine afterwards for the changes to take effect.







