WINDOWS TRICKS & SHORTCUTS
- Troubadour
- Graduate


- Joined: Mar 04, 2004
- Posts: 137
- Loc: Melbourne, Australia
- Status: Offline
1) start > shut down
2) select shut down from the menu
3) hold the shift key when pressing OK
I'm fairly certain it works with 98 and up (to the best of my knowledge) the_Maven...but not sure of any prior. I thought I posted that earlier, but perhaps not. I use that one quite a bit.
hey there ATNO,
Just thought I would share with you this does not work for me.
Xp Pro (SP1a) and a HP EVO Desktop.
The PC still powers completely down...

- Anonymous
- Bot


- Joined: 25 Feb 2008
- Posts: ?
- Loc: Ozzuland
- Status: Online
- ThATKiD
- Proficient


- Joined: Jan 23, 2004
- Posts: 321
- Loc: somewere over there
- Status: Offline
i know why from the way you discribed to me . winXP has two shutdown and log on windows the small little window that resembles that of 2000pro and the whoe page unique to XP if using the XP way it wont work maybe it will the other way but . . . i dont remember how to switch between screens =(
- Baskerville
- Born


- Joined: Mar 13, 2004
- Posts: 1
- Status: Offline
Hi!
Winkey + Pause = display the Systems Properties page (very useful!!

)
Winkey + R = display the Run dialog box
Winkey + M = minimize all windows
Winkey + D = minimize all windows. Press again and desktop apps reappear.
Winkey + Shift + M = undo minimize all windows
Winkey + F1 = starts Windows Help
(F1 by itself brings up Help in the current application)
Winkey + E = start Explorer
Winkey + F = start Find
Winkey + F + CNTL = start Find Computer
Winkey + B = Sets focus on the task bar
Winkey + TAB = cycle through taskbar buttons
Winkey + BREAK = display Systems Properties panel
Winkey + L = lock Desktop
These are all Winkey-Shortcuts I know (hope I didn't forget one

). Now I have a small question to all of you: I'd like to edit them! I mean, I don't want Winkey + L to lock my desktop, I simply don't need this. For example: My IE should start with Winkey + I, XP shutdown with Winkey + L, maximize current window with Winkey + Arrow up...
Is there a special registry-key for winkey-shortcuts? Some of you are ingenious and might know this!

I hope my English isn't too bad and you understand me.

- suzie
- Guru


- Joined: Feb 07, 2004
- Posts: 1127
- Loc: England
- Status: Offline
I'll look forward to reading and trying all these shortcuts..

what a long thread, this am i just hav'nt time, but the first page asks about a page that has shortcuts don't know if its for xp or 98 but see for yourself, i'll look over the week !
http://uk.search.msn.com/results.aspx?srch=105&FORM=AS5&q=win+shortcut+keys
Thanks everyone i'm sure i'll find all this imfo useful as always at ozzu.

http://jungaling.com/katecorner/
- joebert
- Sledgehammer


- Joined: Feb 10, 2004
- Posts: 13455
- Loc: Florida
- Status: Offline
EDIT: the "script language" tags MUST stay in the .js files
This envolves making changes to your registry, as with all changes to the registry it is recomended that ou backup your system priar to trying this.
To add "Google search" to your IE context menu like firefox has, here's how.
According to Microsoft, this method of adding context items should work as early as IE4.
Open notepad and paste this, (NOTE: You can change the paths to the js files if you want, just make sure you put the files where this says they are.)
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\MenuExt\Google As Is]
@="C:\\google_context_noquote.js"
"Contexts"=hex:10
[HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\MenuExt\Google w/Quotes]
@="C:\\google_context_quote.js"
"Contexts"=hex:10
- Windows Registry Editor Version 5.00
- [HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\MenuExt\Google As Is]
- @="C:\\google_context_noquote.js"
- "Contexts"=hex:10
- [HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\MenuExt\Google w/Quotes]
- @="C:\\google_context_quote.js"
- "Contexts"=hex:10
Save as a .REG file, right-click and select merge.
Now paste theese two sniplets and save as the two js files that the reg file points to.
google_context_noquote.js
<script language="javascript">
// Get the window object where the context menu was opened.
var oWindow = window.external.menuArguments;
// Get the document object exposed through oWindow.
var oDocument = oWindow.document;
// Get the selection from oDocument.
var oSelect = oDocument.selection;
// Create a TextRange from oSelect.
var oSelectRange = oSelect.createRange();
// Get the text of the selection.
var sNewText = oSelectRange.text;
// Build Google QueryString
var googleQ = "http://www.google.com/search?&q=" + sNewText;
// Ask Google
oWindow.open(googleQ);
</script>
- <script language="javascript">
- // Get the window object where the context menu was opened.
- var oWindow = window.external.menuArguments;
- // Get the document object exposed through oWindow.
- var oDocument = oWindow.document;
- // Get the selection from oDocument.
- var oSelect = oDocument.selection;
- // Create a TextRange from oSelect.
- var oSelectRange = oSelect.createRange();
- // Get the text of the selection.
- var sNewText = oSelectRange.text;
- // Build Google QueryString
- var googleQ = "http://www.google.com/search?&q=" + sNewText;
- // Ask Google
- oWindow.open(googleQ);
- </script>
google_context_quote.js
<script language="javascript">
// Get the window object where the context menu was opened.
var oWindow = window.external.menuArguments;
// Get the document object exposed through oWindow.
var oDocument = oWindow.document;
// Get the selection from oDocument.
var oSelect = oDocument.selection;
// Create a TextRange from oSelect.
var oSelectRange = oSelect.createRange();
// Get the text of the selection.
var sNewText = oSelectRange.text;
// Build Google QueryString
var googleQ = "http://www.google.com/search?&q=%22" + sNewText + "%22";
// Ask Google
oWindow.open(googleQ);
</script>
- <script language="javascript">
- // Get the window object where the context menu was opened.
- var oWindow = window.external.menuArguments;
- // Get the document object exposed through oWindow.
- var oDocument = oWindow.document;
- // Get the selection from oDocument.
- var oSelect = oDocument.selection;
- // Create a TextRange from oSelect.
- var oSelectRange = oSelect.createRange();
- // Get the text of the selection.
- var sNewText = oSelectRange.text;
- // Build Google QueryString
- var googleQ = "http://www.google.com/search?&q=%22" + sNewText + "%22";
- // Ask Google
- oWindow.open(googleQ);
- </script>
This will cause two new options to show up in the same menu that popsup when you have selected some text.
"Google As Is" sends a query to google with the selected text just as it is, no quotes.
"Google w/Quotes" does the same as above except it places quotes aroung the selected text.
You only need to restart your browser to get this to start working.
Strong with this one, the sudo is.
- ShEDeViL
- Graduate


- Joined: Mar 29, 2004
- Posts: 216
- Status: Offline
Alt + Tab and Ctrl + Tab are the best shortcuts ever. If you are running Firefox (like everyone should IMHO) Ctrl + T opens a new tab and Crtl + Tab switches between tabs. (For Mandrake Linux users, Ctrl + Tab allows you to switch between desktops.)
Sorry if these were listed before, I skimmed through about 5 pages and didn't see anything.
- rtm223
- Mastermind


- Joined: Mar 24, 2004
- Posts: 1855
- Loc: Uk
- Status: Offline
My favorite is possibly
CTRL+Z need that one a lot
plus
CTRL+ALT+DELETE which broke on my install of mindows XP, which is now off my system, hopefully forever (I hate XP

)
ALT+TAB is fantastic if you like to run 300 or so apps at once
JoeBert - that IE context thing is so cool - I'll be trying that when I get home fom work

- joebert
- Sledgehammer


- Joined: Feb 10, 2004
- Posts: 13455
- Loc: Florida
- Status: Offline
In task manager for win2K (dont know about XP) select the processes tab, click view from the menu, then click "Select Columns", This will popup a dialog with 3X as many options as there allready is to watch

Strong with this one, the sudo is.
- bigcheeez
- Graduate


- Joined: Mar 30, 2004
- Posts: 243
- Status: Offline
Sorry if I seem dumb, but what exactly is Firefox? I am a windows guy, but I have never heard of it.
- ATNO/TW
- Super Moderator


- Joined: May 28, 2003
- Posts: 23404
- Loc: Woodbridge VA
- Status: Offline
It's a free web browser developed by Mozilla.
Download it from here and check it out. Most of us that use it love it.
http://www.mozilla.org/products/firefox/
"There's no place like 127.0.0.1 except for ::1."
Alexandria Networks. Leader in IT consulting for associations/non-profits, and small to medium sized businesses around the northern Virginia and Washington D.C. metro area.
- IH8Purple
- Guru


- Joined: Dec 28, 2003
- Posts: 1215
- Loc: Somewhere on Google Earth
- Status: Offline
opps, found this one out by mistake, you all know the crtl-Enter trick (adds http://www.******.com)
but it you go Ctrl+Shift+Enter it will give you http://www.*****.com.cn
I don't know any .com.cn sites, but if I did, this would be cool
- ATNO/TW
- Super Moderator


- Joined: May 28, 2003
- Posts: 23404
- Loc: Woodbridge VA
- Status: Offline
Here's about 72 and a half million of them -- knock yourself out!
http://www.google.com/search?hl=en&ie=U ... TF-8&q=.cn
Interesting tip though.
(BTW -- hope you can read Chinese *lol )
"There's no place like 127.0.0.1 except for ::1."
Alexandria Networks. Leader in IT consulting for associations/non-profits, and small to medium sized businesses around the northern Virginia and Washington D.C. metro area.
- IH8Purple
- Guru


- Joined: Dec 28, 2003
- Posts: 1215
- Loc: Somewhere on Google Earth
- Status: Offline
acutally, there are only about 4.6 million '.com.cn' 's and I don't read chinese
- ATNO/TW
- Super Moderator


- Joined: May 28, 2003
- Posts: 23404
- Loc: Woodbridge VA
- Status: Offline
Yep. For those needing details on the scientific calc.... open calculater. Click View| Scientific Great tool for webmasters when you're trying to convert decimal to hex and vice versa.
"There's no place like 127.0.0.1 except for ::1."
Alexandria Networks. Leader in IT consulting for associations/non-profits, and small to medium sized businesses around the northern Virginia and Washington D.C. metro area.
- Anonymous
- Bot


- Joined: 25 Feb 2008
- Posts: ?
- Loc: Ozzuland
- Status: Online
1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24
To Reply to this topic you need to LOGIN or REGISTER. It is free.
Post Information
- Total Posts in this topic: 348 posts
- Users browsing this forum: No registered users and 203 guests
- You cannot post new topics in this forum
- You cannot reply to topics in this forum
- You cannot edit your posts in this forum
- You cannot delete your posts in this forum
- You cannot post attachments in this forum