วันอาทิตย์ที่ 9 ธันวาคม พ.ศ. 2555

Set the time go backwards and automatic shutdown.


1.Start>Run>type cmd


2.Type shutdown /t 3600 /s and press Enter key.


3.You will see System Shutdown window.

Note:3600 = 1 hour
        1800 = 30 minutes
        7200 = 2 hours
        14400 = 4 hours





Clear data in clipboard from simply select a file in the Desktop and press CTRL+C

1.Open Notepad and type

Set objIE = CreateObject("InternetExplorer.Application")
objIE.Navigate("about:blank")
objIE.document.parentwindow.clipboardData.SetData "text", ""
objIE.Quit