Martin L Posted October 8, 2005 Posted October 8, 2005 (edited) You have a tweak or tips for Microsoft Windows Vista users? Post them inhere and it will be added to this post.Enable Sidebar in VistaGo to Program Files/Windows Sidebar/sidebar.exeturn on file extensions contributed by FthrJACKWhy windows always comes with file extensions hidden by default i dont know.. its stupid, leaves you open to installing a virus.exe thats been given a zip icon or something then named virus.zip.exeyou just see a zip icon and virus.zip.. double click it and bam. also its a pain if you need to rename files.. change .txt to .bat or rename a file so it sends through messenger for example.to turn it on, go to any folder, documents for example.Layout > show classic menus - Tools > Folder Options -View Tab.Untick "Hide Extensions of Known File Types"close, go back to Layout, and put it back as it wasEnable Glass without a supported card contributed by harunaksoyDownload the file here. It just adds a key in your registryEnabling addition Avalon effects contributed by harunaksoyOnce you have the new Aero engine enabled on your build of Windows codename Longhorn, you can enable additional transition effects that are currently turned off in builds. Follow the steps below to add some additional desktop and explorer effects:1. Open up regedit.2. Navigate thru HKEY_Local_Machine, Software, Microsoft, Windows, Current Version, and Explorer.3. Create a new DWORD and call it MILDesktop.4. Set the value of MILDesktop to 1.5. Create a new DWORD and call it MILExplorer.6. Set the value of MILExplorer to 1.7. Exit explorer and restart.I hope your system and drivers can handle the new effects!Enable DWM on None supported Video Cards contributed by gunsmokingmanNote: Open Taskmanager and set the uxss.exe to normal as this is set to high using this tweak The Reg TweakWindows Registry Editor Version 5.00[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\DWM]"perUser"=dword:00000000"DebugDumpTree"=dword:00000000"DebugMessages"=dword:00000000"DebugMouse"=dword:00000000"DebugZOrder"=dword:00000000"EnableMachineCheck"=dword:00000000"ForceSoftwareD3D"=dword:00000000"Glass"=dword:00000001"UseAlternateButtons"=dword:00000001"Animations"=dword:00000001"AnimationsShiftKey"=dword:00000001"Blur"=dword:00000001"Composition"=dword:00000001"UseDPIScaling"=dword:00000001"RenderClientArea"=dword:00000001"MagnificationPercent"=dword:00000064Software to Tweak VistaTweakVista: http://www.tweakvista.com/TweakVistaUtility.aspxNOTE: This thread will be cleaned once in a while; this means that all non-relevant replies will be removed so that only the tips and tweaks stay Edited October 30, 2008 by Martin L cleaned the topic
FthrJACK Posted October 23, 2005 Posted October 23, 2005 Why windows always comes with file extensions hidden by default i dont know.. its stupid, leaves you open to installing a virus.exe thats been given a zip icon or something then named virus.zip.exeyou just see a zip icon and virus.zip.. double click it and bam. also its a pain if you need to rename files.. change .txt to .bat or rename a file so it sends through messenger for example.to turn it on, go to any folder, documents for example.Layout > show classic menus - Tools > Folder Options -View Tab.Untick "Hide Extensions of Known File Types"close, go back to Layout, and put it back as it was
harunaksoy Posted October 23, 2005 Posted October 23, 2005 Enable Glass without a supported card. Download the file here. It just adds a key in your registry.
gunsmokingman Posted October 23, 2005 Posted October 23, 2005 I guess you missed this thread about how to enable DWM on None supported Video Cards, I tested thison Build 5231 only, have not tried it on earlier builds because they are old. The Thread
harunaksoy Posted October 24, 2005 Posted October 24, 2005 Sorry i missed that one Here's another tweakEnabling addition Avalon effects!got that somewhere ......enjoy!Once you have the new Aero engine enabled on your build of Windows codename Longhorn, you can enable additional transition effects that are currently turned off in builds. Follow the steps below to add some additional desktop and explorer effects:1. Open up regedit.2. Navigate thru HKEY_Local_Machine, Software, Microsoft, Windows, Current Version, and Explorer.3. Create a new DWORD and call it MILDesktop.4. Set the value of MILDesktop to 1.5. Create a new DWORD and call it MILExplorer.6. Set the value of MILExplorer to 1.7. Exit explorer and restart.I hope your system and drivers can handle the new effects!
gunsmokingman Posted October 24, 2005 Posted October 24, 2005 (edited) Since this only works on build before 5270 I am removing the sfx files and just amgoing to post the code for it.Save as TurnOnDWM.vbsConst ABOVE_NORMAL = 32768, BELOW_NORMAL = 16384, NORMAL = 32Dim Act, Fso, RegKey, strComputer, SD, Ts strComputer = "."Set Act = CreateObject("Wscript.Shell")Set Fso = CreateObject("Scripting.FileSystemObject")Set Ts = Fso.CreateTextFile("Dwm_On.reg")Ts.WriteLine "Windows Registry Editor Version 5.00"Ts.WriteLine "[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\DWM]"Ts.WriteLine """perUser""=dword:00000000"Ts.WriteLine """DebugDumpTree""=dword:00000000"Ts.WriteLine """DebugMessages""=dword:00000000"Ts.WriteLine """DebugMouse""=dword:00000000"Ts.WriteLine """DebugZOrder""=dword:00000000"Ts.WriteLine """EnableMachineCheck""=dword:00000000"Ts.WriteLine """ForceSoftwareD3D""=dword:00000000"Ts.WriteLine """Glass""=dword:00000001"Ts.WriteLine """UseAlternateButtons""=dword:00000001"Ts.WriteLine """Animations""=dword:00000001"Ts.WriteLine """AnimationsShiftKey""=dword:00000001"Ts.WriteLine """Blur""=dword:00000001"Ts.WriteLine """Composition""=dword:00000001"Ts.WriteLine """UseDPIScaling""=dword:00000001"Ts.WriteLine """RenderClientArea""=dword:00000001"Ts.WriteLine """MagnificationPercent""=dword:00000064"Ts.Close Act.Run("REGEDIT /S Dwm_On.reg"), 1, TrueFso.DeleteFile("Dwm_On.reg")Set objWMIService = GetObject("winmgmts:{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2")Set colProcessList = objWMIService.ExecQuery ("Select * from Win32_Process Where Name = 'uxss.exe'")For Each objProcess in colProcessList objProcess.Terminate()NextSet objWMIService = GetObject("winmgmts:{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2")Set colProcessList = objWMIService.ExecQuery ("Select * from Win32_Process Where Name = 'explorer.exe'")For Each objProcess in colProcessList objProcess.Terminate()NextDim Cnt : Cnt = 0Do Cnt = Cnt + 1Loop Until Cnt = 10000 * 3SD = Act.ExpandEnvironmentStrings("%systemdrive%")If Fso.FileExists(SD & "\TurnOnDWM.vbs") ThenFso.DeleteFile(SD & "\TurnOnDWM.vbs")End If Act.Run("taskmgr.exe")Act.Popup "Please turn the Uxss.exe to Normal", 15, "Lower Uxss.exe", 0 + 32Save as TurnOffDWM.vbsConst HKEY_LOCAL_MACHINE = &H80000002Dim strKeyPath, strComputer, Act Set Act = CreateObject("Wscript.Shell")strKeyPath = "SOFTWARE\Microsoft\DWM"strComputer = "."Set oReg=GetObject("winmgmts:{impersonationLevel=impersonate}!\\" & strComputer & "\root\default:StdRegProv")Dim DWMdel : DWMdel = Array("perUser", "DebugDumpTree","DebugMessages","DebugMouse","DebugZOrder","EnableMachineCheck",_"ForceSoftwareD3D","Glass","UseAlternateButtons","Animations","AnimationsShiftKey","Blur","Composition",_"UseDPIScaling","RenderClientArea","MagnificationPercent")For Each strDWMdel In DWMdeloReg.DeleteValue HKEY_LOCAL_MACHINE,strKeyPath,strDWMdelNext Set objWMIService = GetObject("winmgmts:{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2")Set colProcessList = objWMIService.ExecQuery ("Select * from Win32_Process Where Name = 'uxss.exe'")For Each objProcess in colProcessList objProcess.Terminate()NextSet objWMIService = GetObject("winmgmts:{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2")Set colProcessList = objWMIService.ExecQuery ("Select * from Win32_Process Where Name = 'explorer.exe'")For Each objProcess in colProcessList objProcess.Terminate()NextDim Cnt : Cnt = 0Do Cnt = Cnt + 1Loop Until Cnt = 10000 * 3Dim SD, FsoSet Fso = CreateObject("Scripting.FileSystemObject")SD = Act.ExpandEnvironmentStrings("%systemdrive%")If Fso.FileExists(SD & "\TurnOffDWM.vbs") Then Fso.DeleteFile(SD & "\TurnOffDWM.vbs")End if Edited June 24, 2006 by gunsmokingman
prathapml Posted March 15, 2006 Posted March 15, 2006 Vista 5308:How to disable user access protection ( UAP )-1. While logged in with admin rights.2. Press the key combo Win+R (the "Run command" box comes up).3. Run "msconfig".4. Go to the "Tools" tab.5. Scroll down to "disable UAP", & click the "launch" button below.6. It will execute a command & leave behind a CMD window, exit that, reboot Vista, and you're done!
gunsmokingman Posted March 17, 2006 Posted March 17, 2006 Change the size of the desktop iconsHold the Ctrl down and use your mouse scroll wheel to adjust the size.
trickstar Posted April 29, 2006 Posted April 29, 2006 Show Administrator on Welcome Screenstart > run = " control userpasswords2 " select administrator account, click reset password (input new pass) / Okstart > run = " regedit " create the key belowHKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\SpecialAccounts\UserListcreate "DWORD (32bit) Value"Value Name: AdministratorValue Data: 1
gunsmokingman Posted April 29, 2006 Posted April 29, 2006 Show Administrator on Welcome Screenstart > run = " control userpasswords2 " select administrator account, click reset password (input new pass) / Okstart > run = " regedit " create the key belowHKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\SpecialAccounts\UserListcreate "DWORD (32bit) Value"Value Name: AdministratorValue Data: 11:\ Right Click Computer Icon Select Manage2:\ Expand The Local User And Groups3:\ Rename the administartor account to match the name in the reg file, you can also just leave thename the same for the admin, but the name must match the reg file.This is a easier a way, change the Green text to the name you want.I posted this before in a earlier thread.Save As AddAdmin.RegWindows Registry Editor Version 5.00[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\SpecialAccounts\UserList]"HelpAssistant"=dword:00000000"TsInternetUser"=dword:00000000"SQLAgentCmdExec"=dword:00000000"NetShowServices"=dword:00000000"IWAM_"=dword:00010000"IUSR_"=dword:00010000"VUSR_"=dword:00010000"PLACE_NEW_NAME_OR_ADMINISTARTOR_NAME_HERE"=dword:00000001
nitroshift Posted July 18, 2006 Posted July 18, 2006 Open a few windows then press the win key + tab. That makes them all visible each behind the other.
xper Posted September 18, 2006 Posted September 18, 2006 Open Command Prompt HereRight-click on any folder on your Windows Vista while holding down the shift key. You'll see an extra context-sensitive menu item there: Open Command Prompt here.O.T.Only tips & tweaks in here. Thread will be cleaned.
xper Posted September 19, 2006 Posted September 19, 2006 Bringing Back Start / RunTemporary:Win+R shortcut key Permanently:1. Right-click on the Start menu and choose Properties; 2. Select the Start Menu tab and click on the Customize... button; 3. Ensure the "Run command" option is checked.
Spooky Posted September 24, 2006 Posted September 24, 2006 (edited) Yep, the shift key method works but doesn't work every where. However, There is a registry tweak that does enable the command prompt here on the right click context menu that works every where. Make your own by using the below:; 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"Or you can just use the cmd_prmt_here.reg file I attached to this post.Open Command Prompt HereRight-click on any folder on your Windows Vista while holding down the shift key. You'll see an extra context-sensitive menu item there: Open Command Prompt here.O.T.Only tips & tweaks in here. Thread will be cleaned.cmd_prmt_here.reg Edited September 24, 2006 by Spooky
Spooky Posted September 24, 2006 Posted September 24, 2006 You can get rid of the shortcut arrows in vista by using an old reg tweak that still works: Open up regedit and go to:[HKEY_CLASSES_ROOT\lnkfile]Then re-name 'IsShortcut' to 'AriochIsShortcut' in the right pane.Close regedit and reboot - shortcut arrows are gone.
Recommended Posts