473,508 Members | 2,441 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Calling all experts: Windows Tips and Tricks

bartonc
6,596 Recognized Expert Expert
I've decide to compile a bunch of your favorite tips and tricks for the Articles section. I found a post yesterday by Chrisjc that is a perfect example. I copied his post over to create Dealing with USB flash drive issues.

Post your favorite tips and tricks here, in this thread, and I'll copy the best ones to a Tips and Tricks article (to be created soon).

I'll kick things off:
Jul 28 '07
68 17880
ShadowLocke
115 New Member
A must for every admin.

Unstopable combo: batch file/vbscript + psexec + nircmd = pwned.

You can do every administration task imaginable with the combination of these three tools.

http://www.nirsoft.net/utils/nircmd.html
http://technet.microsoft.com/en-us/sysinternals/bb896649.aspx

I dont know how I got by without nircmd!
Apr 18 '08 #51
deric
92 New Member
How about capturing a display (using printscreen) with the mouse cursor/pointer on it? c",)
Apr 21 '08 #52
Colloid Snake
144 New Member
Another fun one is when you are attempting to send a screenshot to someone, and don't want to send the whole desktop, you can capture the specific window by using Alt+Print Screen. That will capture only the window in focus, and useful when sending only an error message

@Ali - I did not say 'Ctrl + d' I said 'Windows key + d' . I'm not sure what Ctrl+d will do. ;-)
May 6 '08 #53
MoodyCelt
5 New Member
In addition, if, like me currently, you cannot get to the menu (start, etc), then to run a program, you can also do:
WIN key + R to get to the Start/Run command
or
WIN key + E to get to the My Computer Screen

Thanks

Larry

Hi everyone!

WIN key + D - To show the desktop and back.
WIN key + M - To minimise all the open windows
SHIFT + WIN key + M - To restore all the minimised windows

Then to change the name of folder, you can use ALT + 0160, where the 0160 are to typed on the NUM PAD not on the key pad. You can also type ALT + 0172, etc. to show several special characters in the folder/filename.
Here, You can use 0000 to 0255 (ASCII values).

PRNSCREEN - to copy the desktop or a window on it to the clipboard.
ALT + PRNSCREEN - to copy ONLY the active window on it to the clipboard.

This may help, to my knowledge!
Jun 29 '08 #54
SilverHawk
9 New Member
Hello every body

have you notised that theres a underlined key in every active button on a window which means a shortcut key for that button.As an example see the "FIle" button, letter F is underlined. In some windows you dont see this,so press Alt tab it will appears. By pressing underlined key + Alt tab you can select the specific button without using the mouse.

Excuse for mistakes.
Jul 4 '08 #55
AmberJain
884 Recognized Expert Contributor
Expand|Select|Wrap|Line Numbers
  1. cls
  2. @ECHO OFF
  3. title Folder Locker
  4. if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK 
  5. if NOT EXIST Locker goto MDLOCKER
  6. :CONFIRM
  7. echo Are you sure u want to Lock the folder(Y/N)
  8. set/p "cho=>"
  9. if %cho%==Y goto LOCK
  10. if %cho%==y goto LOCK
  11. if %cho%==n goto END
  12. if %cho%==N goto END 
  13. echo Invalid choice.
  14. goto CONFIRM
  15. :LOCK
  16. ren Locker "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
  17. attrib +h +s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
  18. echo Folder locked 
  19. goto End
  20. :UNLOCK
  21. echo Enter password to Unlock folder
  22. set/p "pass=>"
  23. if NOT %pass%== your password goto FAIL
  24. attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" 
  25. ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" Locker
  26. echo Folder Unlocked successfully
  27. goto End
  28. :FAIL
  29. echo Invalid password
  30. goto end
  31. :MDLOCKER
  32. md Locker
  33. echo Locker created successfully 
  34. goto End
  35. :End
Well, this is a very bad choice for folder locker.
Because you don't even need password (in the batch file) to unlock folder. Simply right click the locked folder and select [rename] and then remove the text .{21EC2020-3AEA-1069-A2DD-08002B30309D} from the locked folder's name. Now you can access the contents of folder.
Jul 4 '08 #56
gaurav92K
48 New Member
Heres a neat one I found on accident:

FLIP YOUR SCREEN SIDEWAYS (Windows Vista)

CTRL + ALT + Right Arrow (or a different arrow)

But some Motherboards do not allow this tip.
Aug 28 '08 #57
themadjester
37 New Member
If you don't use the hibernate feature and it is enabled disabling it can free up significant space.To free up this space (equivilant to your memory) control panel -->power options --> hibernate ---> uncheck enable hibernate. The file were the hibernate data is stored is removed next startup I believe.

Was an easy 3 GB for me

Edit: for terrible grammar
Sep 10 '08 #58
vikraminside
7 New Member
Yep, it works. However, it wasn't absolutely clear, that the "Alt" button was meant. I guess, some people created folders called "Alt+0160". ^^

By the way, the ANSI symbol #160 (which is exactly what this command creates) is a protected Space (so if you write something like "800 km", the line can't be broken between the "800" and the "km").

Greetings,
Nepomuk
************************************************** ********
The standard even Microsoft follows for special shorcut keys combination is
"SplKey+alphanumericKey". eg: "Ctrl+c" means Press control key in combination with 'C' character key. Therefore it is assumed for non-beginners.

Question:
Can anyone please say how to search these folders? Difficult right? Is it possible to search in command prompt?

TIP:
Years before while I was attending a brainbench examination a question was asked "How to Copy the active windows contents?". The solution is "Alt+Prtsrc" combination keys. Press Alt button along with Printscreen button. This works even now. :)
Sep 20 '08 #59
myusernotyours
188 New Member
Hi , here is a tricks

you can make your folder without a name,
here it is ,
creat a new folder, now write in the folder name "Alt + 0160". If you want to make another folder write it twice, "Alt+0160" then again "Alt + 0160 ". If you make another folder write it down thrice .
In this way you can make a folder without a name, Thats it
now try it

monirul
This doesn't work on my laptop. I figured that even on my desktop, it only works if I use the num pad. and a laptop doesnt have a num pad. Any one knows why???

Regards,

Alex.
Nov 12 '08 #60
Plater
7,872 Recognized Expert Expert
This doesn't work on my laptop. I figured that even on my desktop, it only works if I use the num pad. and a laptop doesnt have a num pad. Any one knows why???

Regards,

Alex.
Why a laptop doesn't have a numpad? It's not really needed and its valuable space for when they want to make laptops smaller.
Nov 12 '08 #61
Nepomuk
3,112 Recognized Expert Specialist
...and a laptop doesnt have a num pad. Any one knows why???
A lot of (most of?) Laptops don't have a actual numpad, but they do have a "Special-Function-Button" (on my acer it's called Fn), with which you can use other buttons (in my case: Fn+m => 0, Fn+j => 1, Fn+u => u, Fn+p => *,...) as a numpad. Of course, you can always buy a separate numpad.

Greetings,
Nepomuk
Nov 12 '08 #62
Studlyami
464 Recognized Expert Contributor
If you don't have a num pad you can use the character map program (in xp go to start->all programs->accessories->system tools->character map). In the character map find the space character and click on it then click the copy button. Now go to the folder you want to be blank and when you go to rename it just paste the blank character as the name.
Nov 12 '08 #63
myusernotyours
188 New Member
Why a laptop doesn't have a numpad? It's not really needed and its valuable space for when they want to make laptops smaller.
No. Not why a laptop doesn't have a num pad -thats pretty clear, but why the protected space thing doesn't work with the other keys (0-9).

Rgds

Alex.
Nov 13 '08 #64
Plater
7,872 Recognized Expert Expert
I think they don't actually show up like a numpad, i think they just show up the same as your regular 0-9 keys on the top row, they just "put them in a different place"
Nov 13 '08 #65
epots9
1,351 Recognized Expert Top Contributor
for those who like to use the hibernate feature but hate having to press the shift key

Expand|Select|Wrap|Line Numbers
  1. [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\System\shutdown]
  2. "showHibernateButton"=dword:00000001
  3.  
Nov 13 '08 #66
thelonelyghost
109 New Member
Heres a neat one I found on accident:

FLIP YOUR SCREEN SIDEWAYS (Windows Vista)

CTRL + ALT + Right Arrow (or a different arrow)
Are you sure that is not just a feature of your video card? (ATI is pretty fond of that behavior)
I have an Intel machine and it seems to work just fine with this. For those who get stuck, "Ctrl + Alt + Up" is the way to get your screen back to normal.


@Ali - I did not say 'Ctrl + d' I said 'Windows key + d' . I'm not sure what Ctrl+d will do. ;-)
"Ctrl + D" is the hotkey to save the page as a bookmark/favorite (terminology depends on if you use firefox or IE)


I think they don't actually show up like a numpad, i think they just show up the same as your regular 0-9 keys on the top row, they just "put them in a different place"
No, it isn't that they put them in a different place. I've thought that too. I have a Toshiba Satellite laptop and it only works if I hold Alt+Fn+<numbers>. The numbers are in a specific area, i.e. 1, 2, and 3 replace the "J", "K", and "L" keys respectively.
Jul 13 '10 #67
matheussousuke
249 New Member
I wonder when Microsoft is going to make a Windows Version that is not full of bugs.
Jul 27 '11 #68
Sankung
1 New Member
Recently I recovered my lost password,so excited.
https://www.winpwd.com/
And found other Windows tips,such as.
Always On Top Maker allows you to set windows as always on top.
Ultra PDF Editor allows you to view and annotate PDF files and all Windows devices.
http://www.compuclever.com/products/ultra-pdf-viewer/
Microsoft Office Online allows you to create and edit files using lightweight Microsoft Office web apps
https://www.microsoft.com/en-us/download/office.aspx
Sep 9 '19 #69

Sign in to post your reply or Sign up for a free account.

Similar topics

3
3302
by: James | last post by:
I have an picture cut out in a certain shape that I would like to make as my form. I have tried following the directions in MSDN on how to make shaped windows forms but their directions did not work...
8
2259
by: Jacek Jurkowski | last post by:
1) How to prevent user to run secound copy of application on the same mahine? I would like to show dialog "Already run" instead of launching a secound insrance. 2) Why, if minimized into a notify...
0
1618
by: travolta003 | last post by:
Windows XP tips and tricks. Learn how to bypass very common windows problems, speed up your system and make it more reliable with useful tips and tricks. http://windowsxpsp2pro.blogspot.com
0
1726
by: travolta004 | last post by:
Windows XP tips and tricks. Learn how to bypass very common windows problems, speed up your system and make it more reliable with useful tips and tricks. http://windowsxpsp2pro.blogspot.com
0
1433
by: travolta005 | last post by:
Windows XP tips and tricks. Learn how to bypass very common windows problems, to speed up your system and make it more reliable with useful tips and tricks. http://windowsxpsp2pro.blogspot.com
2
2763
bartonc
by: bartonc | last post by:
I've decide to compile a bunch of your favorite tips and tricks for the Articles section. Post your favorite tips and tricks here, in this thread, and I'll copy the best ones to a Tips and Tricks...
0
1620
by: smartfix | last post by:
Windows XP tips and tricks. Learn how to bypass very common windows problems, to speed up your system and make it more reliable with useful tips and tricks. http://windowsxpsp2pro.blogspot.com
0
1410
by: smartfix | last post by:
Windows XP tips and tricks. Learn how to bypass very common windows problems, to speed up your system and make it more reliable with useful tips and tricks. http://windowsxpsp2pro.blogspot.com
20
12329
Nepomuk
by: Nepomuk | last post by:
As Linux and the various flavours of Unix are slowly spreading into the world of personal computers, I thought we could collect a few Tips and Tricks here to help each other making the best out of...
0
7223
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
7114
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
7377
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
5623
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
1
5045
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
4702
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
3191
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
3179
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
762
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.