**Baddass' Guide to Windows Performance, Optimization, Security and Tweaking**

Soldato
Joined
5 Jul 2003
Posts
16,206
Location
Atlanta, USA
Curiosityx said:
When copying large ammounts of data or individual files between machines on a network, temporarily disable the "On Access" AVD functionality and half the time it takes to send and receive the files!
Where would i disable that?
 
Soldato
Joined
19 Oct 2002
Posts
6,829
Location
Bath
Heres one that needs to be stickied i think as the question has been asked a lot.

How To remove the "Safely Remove Hardware Icon"

two options take your pic



1)
right click on taskbar
select "properties"
check "hide unactive icons" at the bottom
click "customize"
select the "safely remove hardware" line
choose "always hide" in the drop-down list
click OK twice

2)
right click on "my computer" on desktop
select "manage"
select "device manager" in the left tree
expand the "USB controller" category on the right tree
double-click the "root USB hub" where your "always on" device is connected
in the last tab ("power management"), uncheck the "allow to shutdown" checkbox
click OK and close the "device manager"
reboot

bye
 
Associate
Joined
6 Oct 2006
Posts
138
Location
Wales
Just a quick one for everyone (sure most of you know already)! :D

A shortcut to the system properties window is as follows.


1. Right click my computer
2. Click properties

See images bellow!

shortcuttosystem.png


shortcuttosystem2.png


Just saves time rather than doing the following;

1. Head to Start
2. Select Control Panel
3. Select System



-----------------------------------------------------------
Or if you want to be really cool!!!

Hold Windows Key and hit the Pause/Break
-----------------------------------------------------------







. :D
 
Last edited:
Associate
Joined
2 Jan 2007
Posts
31
Location
W-S-M, South West
Just been reading your tweaking guide badass about disabling automatic updates

If you stop and disable automatic updates off in the services.msc you cant even download updates off the windows update site as it requires it for the site to work
 
Soldato
Joined
19 Oct 2002
Posts
6,829
Location
Bath
M0nkeyNUTS said:
Just been reading your tweaking guide badass about disabling automatic updates

If you stop and disable automatic updates off in the services.msc you cant even download updates off the windows update site as it requires it for the site to work

This is correct.

I have a script setup to enable the service run windows update and then disable the service. works like a charm.
 
Soldato
Joined
19 Oct 2002
Posts
6,829
Location
Bath
M0nkeyNUTS said:
bigboy could you send us a copy of the script as it gonna get very annoying start and stopping it manually


Code:
@echo off
cls
echo **************************************
echo **   Starting Services needed for   **
echo **         Automatic Update         **
echo **          Please Wait...          **
echo **************************************
net start "Automatic Updates" >nul
psservice setconfig "automatic updates" auto >nul
net start "Background Intelligent Transfer Service" >nul
psservice setconfig "Background Intelligent Transfer Service" auto >nul
start /D%SystemRoot%\system32\ /wait wupdmgr.exe
cls
echo **************************************
echo **    When Updating Is Complete     **
echo **      Press Any Key To Exit       **
echo ************************************** 
pause >nul
net stop "automatic updates" >nul
psservice setconfig "automatic updates" demand >nul 
net stop "Background Intelligent Transfer Service" >nul 
psservice setconfig "Background Intelligent Transfer Service" demand >nul
exit

copy and paste this in to notepad and save as a CMD file and bobs your uncles aunt.
you will need to download PS tools (www.sysinternals.com)
this also disables the BITS service as i dont think it is needed for anything else.
 
Soldato
Joined
24 Oct 2005
Posts
16,278
Location
North East
I havent read the whole thread just the optimises on first page or two. Anyhow with doing them optimises windows is now actually very slow to shutdown compared to it only took 20 seconds ish to shutdown before.

What have i changed that has make windows take about a minute to shutdown and how do i correct it.
 
Associate
Joined
3 Oct 2006
Posts
2,304
Location
London
Quick question, just about to do a re-install of windows and will be following the very short but sweet guide on the first page. Is there an update to DirectX post SP2?
 
Back
Top Bottom