What about changing the background of the Start page... oh you can only use a handful of pre-defined patterns, can't put your own image there.
Now, that Metro page... it looks like made of elementary school construction paper... flat, single color tiles. The icons can only be 1 square box, or 1x2 wide fat box. That's about all the tweaks you can do. Horizontal scroll with squares is the interface that Microsoft calls "Modern" (or "Metro"). There are some basic things such as news, weather and sports apps built in. Alas, each time I click it shows me a paper made huge icon followed by a WAIT. There are NO GAMES! Not even Solitaire or Minesweeper. Seems like you need to sign up to xbox to play anything. Now that sucks. Ok, how do you find your programs on Metro? You type, RIGHT on it! No prompt for search.
Ok, done playing, how do you turn the computer off? You'll need the charm bar again with Windows-C->Settings->Power. This is not even obvious unless someone tells you. And it is so many steps to get there. In Start button, at least there is one place to start looking for options, and the option to turn it off is not far away. Another thing, the good old Alt-F4 (since Windows 3.1 or perhaps even earlier) still works.
This is requiring people to remember keyboard short cuts. (Windows-C for charm bar, or Alt-F4). Now that's POOR design, Microsoft! There are plenty of Start button apps for Windows 8... Just why the heck people need to write such programs? Because people NEED it, Microsoft you hear?
Ok here is what I want: a shortcut on the desktop to shut down... I do not need ANYTHING on the Metro UI. Heck, the option to shut down isn't even there.
There is a DOS command you can run to shutdown Windows (since the dawn of Windows I suppose): shutdown /s /t 0
. Go shutdown /?
to see what else this can do. Now you can create a desktop shut cut to that DOS command.
Ok, that's nice. But that command will shut it down right away. I want to have a prompt like "Are you sure?". Batch files won't give you a dialog, good old VBScript is still available.
Here we go:
' This script displays a prompt then calls the shutdown command ' Find a nice shutdown icon in %SystemRoot%\system32\SHELL32.dll ' Dim i i = msgbox ("Are you sure?",vbYesNo,"Shutdown Windows 8") if i=vbYes then Set WshShell = WScript.CreateObject("WScript.Shell") WshShell.Run "shutdown /s /t 0" end if
No comments:
Post a Comment