คงต้องลอง Hard Reset ดูครับ กดปุ่มเพิ่มเสียง พร้อมกับปุ่ม Power ขณะที่เครื่องดีบอยู่ กดค้างนาน 6-7 วินาที จะเห็น icon รูป android แล้วจึงปล่อยมือ จากนั้นเมื่อเข้าหน้า Menu แล้วเลือก Factory Reset
Thursday, August 14, 2014
Hard reset Zenfone 5
ที่มา - http://pantip.com/topic/32400196
Tuesday, August 5, 2014
How to change theme by command line windows xp to classic theme
- by create chtheme.js it content follow texts
//===================================================================
// FILE: theme.js
// DESCRIPTION: automatically set the Windows theme
//===================================================================
// create shell object
objShell = new ActiveXObject("WScript.Shell");
// start themes applet, load desired theme, and activate this window
objShell.Run('rundll32.exe Shell32.dll,Control_RunDLL desk.cpl desk,@Themes /Action:OpenTheme /File:"C:\\WINDOWS\\Resources\\Themes\\Windows Classic.theme"',1);
// wait for themes window
WScript.Sleep(1600);
// send the 'enter' key to accept this theme
objShell.Sendkeys("{ENTER}");
ที่มา - น่าจะเป็น stackoverflow.com ลืมจดไว้ขอโทษแหล่งอ้างอิงด้วยนะครับ
How to run a batch file without launching a “command window”?
'hidebat.vbs
Set oShell = CreateObject ("Wscript.Shell")
Dim strArgs
strArgs = "cmd /c testing.bat"
oShell.Run strArgs, 0, false
'or
'HideBat.vbs
CreateObject("Wscript.Shell"). Run "your_batch_file.bat", 0, True
- เรียกใช้งาน hidebat.vbs โดยดับเบิ้ลคลิกที่ไฟล์ได้เลย
- หรือถ้าจะรันจาก bat ไฟล์ แค่ใช้
- wscript.exe hidebat.vbs
- แต่ antivirus มันจะมองไฟล์ที่เราสร้างมาเป็นไวรัสซะงั้น เราต้องไปตั้ง exclude ให้ไฟล์นี้ด้วย
ที่มา
How to sleep in command prompt Windows XP
PING -n 60 127.0.0.1>nul
sleep ไว้ที่ 60 วินาทีจึงทำงานต่อ
ที่มา - http://stackoverflow.com/questions/1672338/how-to- sleep-for-5-seconds-in- windowss-command-prompt-or-dos
Change wallpaper by command line in Windows XP
ตัวอย่างดังคำสั่งด้านล่าง chwallpaper.bat
@echo off
reg add "hkcu\control panel\desktop" /v wallpaper /t REG_SZ /d "" /f
reg add "hkcu\control panel\desktop" /v wallpaper /t REG_SZ /d "C:\windows\system32\mywallpaper.bmp" /f
reg delete "hkcu\Software\Microsoft\Internet Explorer\Desktop\General" /v WallpaperStyle /f
reg add "hkcu\control panel\desktop" /v WallpaperStyle /t REG_SZ /d 2 /f
RUNDLL32.EXE user32.dll,UpdatePerUserSystemParameters
exitที่มา - ลืมจดไว้แต่น่าจะมาจาก stackoverflow.com นี่แหละ