1.

Solve : How to Enabled/Disabled Windows Script Host?

Answer»

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
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


Discussion

No Comment Found