BetaONE will rise again!


Reply
  #1  
Old 25th Sep 06, 04:40 PM
largeknob largeknob is offline
Junior Member
 
Join Date: Dec 2001
Posts: 23
largeknob
Vista Tweaks and Junctions/symlinks
Been a while since I posted here. But now that Vista is looming on the horizon here are a few reg tweaks that still work in Vista:

;lets get rid of the Windows Mail splash screen
[HKEY_CURRENT_USER\Software\Microsoft\Windows Mail]
"NoSplash"=dword:00000001

;then we enable more simultaneous downloads for IE to 20 (default is 2)
[HKEY_USERS\.DEFAULT\Software\Microsoft\Windows\Cur rentVersion\Internet Settings]
"MaxConnectionsPerServer"=dword:00000014
"MaxConnectionsPer1_0Server"=dword:00000014
[HKEY_CURRENT_USER\Software\Microsoft\Windows\Curre ntVersion\Internet Settings]
"MaxConnectionsPerServer"=dword:00000014
"MaxConnectionsPer1_0Server"=dword:00000014

; -----------------------------------------
; the we pretty up command prompt a little
; -----------------------------------------
; Modify color for command prompt font
; this is set for green but use any you
; want (Black background with green text)
; Color codes to use(HEX)
; 0 = black
; 1 = blue
; 2 = green
; 3 = cyan
; 4 = red
; 5 = magenta
; 6 = yellow/brown
; 7 = white
; 8 = gray
; 9 = bright blue
; A = bright green
; B = bright cyan
; C = bright red
; D = bright magenta
; E = bright yellow
; F = bright white

[HKEY_CURRENT_USER\Software\Microsoft\Command Processor]
"DefaultColor"=dword:0000000a

; add command prompt to right click context menu
[HKEY_CLASSES_ROOT\Folder\shell\Open Command Prompt Here]
[HKEY_CLASSES_ROOT\Folder\shell\Open Command Prompt Here\command]
@="cmd.exe /k pushd %L"
;add 'Copy to Folder' to right click context
[HKEY_CLASSES_ROOT\AllFilesystemObjects\shellex\Con textMenuHandlers\{C2FBB630-2971-11D1-A18C-00C04FD75D13}]
;add 'Move to Folder' to right click context
[HKEY_CLASSES_ROOT\AllFilesystemObjects\shellex\Con textMenuHandlers\{C2FBB631-2971-11D1-A18C-00C04FD75D13}]

; get rid of the word 'Shortcut' being appended to shortcuts
; this is the original value
[HKEY_CURRENT_USER\Software\Microsoft\Windows\Curre ntVersion\Explorer]
; "link"=hex:1e,00,00,00

; this is the changed value to get rid of word 'Shortcut'
[HKEY_CURRENT_USER\Software\Microsoft\Windows\Curre ntVersion\Explorer]
"link"=hex:00,00,00,00

Removing the word 'Shortcut' doesn't remove it from shortcuts you created prior to the reg change, just after you do it the word will no longer be appended to the shortcut.

Yes, I know that you can do the shift key thing in Vista to see the command prompt on the right click context menu, however, it doesn't work every where, the reg tweak does work every where which is a lot more handy.

I know that you can already change the command prompt font color from the command prompt, but I use this in an un-attended install to have things set up already when the install is done.

Make your own with the above or use the .reg files i've attached....also, something thats not included in the reg file:

To get rid of the shortcut arrow open up regedit and go to:

[HKEY_CLASSES_ROOT\lnkfile]

In the right pane rename 'IsShortcut' to 'AriochIsShortcut'

Some reg tweaks take effect right away in Vista, some need a reboot before they work. I'd recommend you reboot after all your changes are made.

And now for something kinda neat, junctions - called symlinks in Vista. Not new but new in the sense that this is the first time a MS OS has used them as part of the basis for the file system for the whole OS and the first time a tool was included as part of the OS. Some of you might already be familiar with Junctions from past MS OS's.

1. Open command prompt in the place where you want to create the junction.
2. type mklink /? for information. So if we want to create a junction directory at the root of C:\;

mklink /J <the name of our link directory> <the target of our link>

so lets create a symlink (junction) directory named Mylnk at the root of C:\ with a target of C:\Users, we type

mklink /J Mylnk "C:\Users" and hit enter

It might be best if you open the command prompt as the Administrator.

This will help some with dual booting with WinXP because we can create symlinks that point to our stuff in the WinXP partition/Drive from Vista. For example, say we want the Vista Favorites folder to point to our WinXP Favorites folder in the other partition/drive - lets uses the Administrator user/account in this example:

1. We remove the Vista 'Favorites' folder (dont actually delete it yet until the below works OK, just move it to somewhere else right now)

2. In Vista, we open a command prompt at: 'C:\Users\Administrator\'

3. then in the command prompt we type:

mklink /j Favorites "D:\Documents and Settings\Administrator\Favorites"

Where 'D:\Documents and Settings\Administrator\Favorites' is the WinXP favorites location in the winXP partition/drive" and 'D:\' is the location of my WinXP drive in the dualboot i'm running - substitute your own here.

4. Hit enter and mklink tells you that it created the link, your done.

To enable Local to local to remote symlinks:
1. Both the client and server must be using Vista.
2. As admin, you need to enable 'Local to Remote' policy. Using gpedit.msc go to:

Computer Configuration/Administrative Templates/System/NTFS Filesystem/ then right click on the 'Selectively Allow the evaluation of symbolic link' - choose 'Properties', then 'Settings' tab.

Have fun, remember to back up any registry entries before you change them. use these at your own risk, they work fine, but I take no responsibility for anything bad that happens to your systems.
Attached Files
File Type: zip vista_reg_tweaks.zip (1.1 KB, 5 views)

Last edited by largeknob : 25th Sep 06 at 06:29 PM.
Reply With Quote
  #2  
Old 26th Sep 06, 04:44 AM
DoG's Avatar
DoG DoG is offline
Administrator
 
Join Date: Nov 2001
Posts: 2,996
DoG will become famous soon enoughDoG will become famous soon enough
Send a message via ICQ to DoG Send a message via MSN to DoG Send a message via Yahoo to DoG
Thanks for the list, these willcome in handy
__________________

Reply With Quote
  #3  
Old 26th Sep 06, 08:52 AM
richardc2000 richardc2000 is offline
Retired
 
Join Date: Jul 2001
Location: vancouver
Posts: 803
richardc2000 is on a distinguished road
thanks from me too largeknob
Reply With Quote
  #4  
Old 21st Apr 07, 12:12 AM
darklord's Avatar
darklord darklord is offline
BetaONE Supporter
 
Join Date: Sep 2001
Location: uk
Posts: 122
darklord is an unknown quantity at this point
thanks for info m8
Reply With Quote
  #5  
Old 2nd May 07, 01:34 PM
Alpine's Avatar
Alpine Alpine is offline
Retired Crew
 
Join Date: Feb 2002
Location: Run Forest, RUN!!
Posts: 3,601
Alpine is on a distinguished road
Send a message via ICQ to Alpine Send a message via AIM to Alpine
Thx for thoses tweaks !
I don't Vista but ill keep them if one day i buy it and install it !!
Reply With Quote
  #6  
Old 8th May 07, 04:24 AM
Oldbunny's Avatar
Oldbunny Oldbunny is offline
Member
 
Join Date: Jul 2003
Location: Always here
Posts: 39
Oldbunny is on a distinguished road
Thanks for the tweeks.. sounds cool & will try!
__________________
Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 08:29 AM.


Design by Vjacheslav Trushkin for phpBBStyles.com.
Powered by vBulletin® Version 3.6.5
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.