Pages

Showing posts with label force. Show all posts
Showing posts with label force. Show all posts

Friday, September 6, 2013

Enable Disable Task Manager Using CMD(Admin set)-Watch 720HD-



How to enable and disable task manger using CMD when get virus infected
Run CMD on adminstrator mode then:
To Disable Task Manager:

REG add HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System /v DisableTaskMgr /t REG_DWORD /d 1 /f

To Enable Task Manager:

REG add HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System /v DisableTaskMgr /t REG_DWORD /d 0 /f

Saturday, August 31, 2013

Force HideShow files using CMD


 how to show hidden files which being forced to hide by a virus or other results
let's say the effected folder is "Test"
Hide Command:
attrib +s +h +a /s /d  D:\test\*.*

Show Command:
attrib -s -h -a /s /d  D:\test\*.*

(Watch 720 HD)