Computer Hope

Microsoft => Microsoft Windows => Windows XP => Topic started by: SignedAdam on October 14, 2009, 09:09:15 AM

Title: How to Enabled/Disabled Windows Script Host
Post by: SignedAdam on October 14, 2009, 09:09:15 AM
Some software need Windows Script Host to be Enabled, But it's best to have it Disabled.

"If you have no software that need "Windows Script Host" to be Enabled"
AS it can slow the hole of Windows down and let bad people in your computer,

To Enabled/Disabled Windows Script Host

Go to run and open up "RegEdit"
Once open Go to :
HKEY_CURRENT_USER\Software\Microsoft\Windows Script Host\Settings

Look for something called "Enabled" Double Click it and put the Value as "1" to
Enabled, or "0" to Disabled

Your going to need to edit one more Value now,

Go to :
HKEY_LOCAL_MACHINE\Software\Microsoft\Windows Script Host\Settings

Look for something called "Enabled" Double Click it and put the Value as "1" to
Enabled, or "0" to Disabled

Your all done, If you know of a easier way do tell :)
Title: Re: How to Enabled/Disabled Windows Script Host
Post by: BC_Programmer on October 14, 2009, 11:00:44 PM
Quote
"If you have no software that need "Windows Script Host" to be Enabled"
AS it can slow the hole of Windows down and let bad people in your computer
This is false.


anyway...

enablewsh.bat
Code: [Select]
REG ADD "HKCU\Software\Microsoft\Windows Script Host\Settings" /v Enabled /t REG_SZ /d 1
disablewsh.bat
Code: [Select]
REG ADD "HKCU\Software\Microsoft\Windows Script Host\Settings" /v Enabled /t REG_SZ /d 0