Windows Vista Forums
Vista Forums Home Join Vista Forums Windows 7 Forum Vista Tutorials Tags
Welcome to Windows Vista Forums. Our forum is dedicated to helping you find solutions with any problems, errors or issues you are experiencing with Windows Vista. The Vista forum also covers news and updates and has an extensive Windows Vista tutorial section that covers a wide range of tips and tricks.

Go Back   Vista Forums > Vista Forums > Tutorials

Vista - Show Windows Stacked or Side by Side - Create Shortcuts

Comment
 

Show Windows Stacked or Side by Side - Create Shortcuts

How to Create a Shortcut for Show Windows Stacked or Side by Side in Vista
Published by Brink
04-04-2008

How to Create Shortcuts for Show Windows Stacked or Side by Side in Vista

Information
  This will show you how to create a Show Windows Stacked, Show Windows Side by Side, and a Undo Windows (For: Undo Show Stacked and Undo Show Side by Side) shortcut that can be placed where you like them for easy use.
NOTE
  These shortcuts will allow you to have open windows on your desktop to either be displayed side by side vertically or stacked horizontally. The UndoWindows shortcut will set the open window back the way they were displayed before clicking on the SideBySide and Stacked shortcuts.
RELATED LINKS: EXAMPLE: Show Windows Stacked on Desktop
show_stacked.jpg
EXAMPLE: Show Windows Side by Side on Desktop
show_sidebyside.jpg
EXAMPLE: Default Shortcuts Location
NOTE: This is the location of the Vista default shortcuts for these. Right click on the taskbar to see these. You will not see Undo Show Stacked or Undo Show Side by Side until after you clicked on either Show Windows Side by Side or Show Windows Stacked.
Name:  Right_Click_Taskbar.jpg
Views: 3799
Size:  14.1 KBName:  Undo_Stacked.jpg
Views: 3796
Size:  15.0 KBName:  Undo_SideBySide.jpg
Views: 3805
Size:  15.3 KB


OPTION ONE:
Download the Shortcuts
1. Click on the download button below to download the ShowWindows.zip file.

2. Click on Save and save it to the Desktop.

3. Right click on ShowWindows.zip (On desktop) and click on Open.

4. Click on Allow in the UAC prompt.

5. Extract the Stacked.vbs, SideBySide.vbs, and UndoWindows.vbs files to the desktop.

6. When done, you can delete the Show Desktop.zip (On Desktop) file if you want to.

7. Go to OPTION THREE below.


OPTION TWO:
Manually Create Shortcuts
1. Open the Start menu.

2. To Create the Show Windows Side by Side Shortcut -
A) In the white line (Start Search) area type Notepad.exe and press Enter.

B) Copy and Paste this into Notepad: (See code below)
Code:
 
dim objShell
 
set objShell = CreateObject("Shell.Application")
objShell.TileVertically
set objShell = nothing
C) In Notepad, click on File and click on Save As.

D) Change the save location to the Desktop.

E) In the File Name line, type SidebySide.vbs and click on Save. (See screenshot below)
NOTE: You can name it anything you would like. Just have .vbs at the end of it.
saveas_sidebyside.jpg
F) Close Notepad.
3. To Create the Show Windows Stacked Shortcut -
A) In the white line (Start Search) area type Notepad.exe and press Enter.

B) Copy and Paste this into Notepad: (See code below)
Code:
 
dim objShell
 
set objShell = CreateObject("Shell.Application")
objShell.TileHorizontally
set objShell = nothing
C) In Notepad, click on File and click on Save As.

D) Change the save location to the Desktop.

E) In the File Name line, type Stacked.vbs and click on Save. (See screenshot below)
NOTE: You can name it anything you would like. Just have .vbs at the end of it.
save_as_stacked.jpg
F) Close Notepad.
4. To Create the UndoWindows (Undo Show Side by Side or Stacked) Shortcut -
A) In the white line (Start Search) area type Notepad.exe and press Enter.

B) Copy and Paste this below into Notepad: (See code below)
Code:
 
dim objShell
 
set objShell = CreateObject("Shell.Application")
objShell.UndoMinimizeALL
set objShell = nothing
C) In Notepad, click on File and click on Save As.

D) Change the save location to the Desktop.

E) In the File Name line, type UndoWindows.vbs and click on Save. (See screenshot below)
NOTE: You can name it anything you would like. Just have .vbs at the end of it.
saveas_undowindows.jpg
F) Close Notepad.
5. Go to OPTION THREE below.


OPTION THREE:
Have Shortcuts with Different Icons
NOTE
  The .vbs file icons from above cannot be changed. If these .vbs files are ok with you to use as the shortcut, then proceed to OPTION FOUR below.
1. Right click on one of the .vbs files (On Desktop) from OPTION ONE or OPTION TWO above and click Create Shortcut.

2. Right click on the new shortcut (On desktop) and click Properties.

3. For more on how to change a shortcut icon, see: How to Change a Shortcut Folder or File Icon in Vista



OPTION FOUR:
How to Add Shortcuts to Quick Launch
NOTE
  Quick Launch will be the easiest way to use these shortcuts, but you can have them where you like.
1. Go to: How to Use Quick Launch in Vista
NOTE: See OPTION ONE under the How to Add or Remove Shortcuts to Quick Launchsection at this link.

2. Move the new shortcuts (On Desktop) from above to inside the Quick Launch folder location.
That's it,
Shawn

Published by
Brink's Avatar
Administrator

Join Date: Apr 2007
Location: Texas, USA
Posts: 25,923
Rep Power: 150
Brink has a reputation beyond reputeBrink has a reputation beyond reputeBrink has a reputation beyond reputeBrink has a reputation beyond reputeBrink has a reputation beyond reputeBrink has a reputation beyond reputeBrink has a reputation beyond reputeBrink has a reputation beyond reputeBrink has a reputation beyond reputeBrink has a reputation beyond reputeBrink has a reputation beyond repute

Tutorial Tools

Applies to
All Vista Versions
64 Bit & 32 Bit

Comment

Tutorial Tools


Similar Threads
Tutorial Category
Can I set Windows Photo Gallery to display 2 or more photos side-by-side? Media Center
Side by side: UI changes from Windows 7 beta to build 7057 Vista News
Side by side: UI changes from Windows 7 beta to build 7048 Vista News
Any way to make a shortcut to "show windows side by side"... Vista General
Side by Side explorer shell windows... Vista file management


Vista Forums is an independent web site and has not been authorized,
sponsored, or otherwise approved by Microsoft Corporation.
"Windows Vista", the Start Orb, and related materials are trademarks of Microsoft Corp.
© Designer Media Ltd
Tutorial powered by GARS 2.1.8m ©2005-2006

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46