Author Archives: chaoliu12

Command Line to Uninstall IE xx

For IE 9 FORFILES /P %WINDIR%\servicing\Packages /M Microsoft-Windows-InternetExplorer-*9.*.mum /c “cmd /c echo Uninstalling package @fname && start /w pkgmgr /up:@fname /norestart” For IE 10 FORFILES /P %WINDIR%\servicing\Packages /M Microsoft-Windows-InternetExplorer-*10.*.mum /c “cmd /c echo Uninstalling package @fname && start /w pkgmgr … Continue reading

Posted in Windows | Leave a comment

Disable the ActiveX Prompts

Option 1: ActiveX controls are essentially mini-programs that can be shared by different Windows applications. Note: ActiveX controls are the most common tools for loading viruses, spyware and other malicious software onto computers. Because of this, every time a website … Continue reading

Posted in Windows | Leave a comment

Lost All App Store Apps from SpringBoard

Lost All App Store Apps from SpringBoard, but the apps are still in the system. Fixed: Delete the file located at /var/mobile/Library/Preferences/com.apple.SpringBoard.plist. Then reboot.

Posted in iPhone | Leave a comment

Turn on Number Lock by Login Screen and Default Users

Copy following code to notepad and save it as numlock.bat, then run it with administrator right. @echo off :: For Login Screen reg add “HKEY_USERS\.DEFAULT\Control Panel\Keyboard” /v InitialKeyboardIndicators /t REG_SZ /d 2 /f :: For Default Profile reg load HKLM\DefaultProfile … Continue reading

Posted in Windows | Leave a comment

Failed to add network printer

Failed to add network printer Error: 0x0000007e Solution: In the printer server, delete the registry key HKLM\Software\Microsoft\windows NT\CurrentVersion\Print\Printers\\CopyFiles\BIDI Cause: the station of users was trying to access a path that the 64bit OS do not recognize as valid: “spool\drivers\w32x86\3”. This … Continue reading

Posted in Windows | Leave a comment

Hide the white SpringBoard app from SpringBoard

Option 1: Do a Reset All Settings. I didn’t try this option. I just got it from online. These option doesn’t need a jailbreak. Option 2: jailbreak your iPhone. Install libhide. Go to and edit /User/Library/LibHide/hidden.plist Add com.apple.springboard under Hidden … Continue reading

Posted in iPhone | Leave a comment

Restore files from Shadow Copy

Right click on the folder your trying to restore from shadow copy and chose ‘Previous versions’. Chose a date and click on open. Right click on any file or folder within the previous folder and chose ‘properties’. Under ‘General’ copy … Continue reading

Posted in Windows | 3 Comments

Create Windows Recovery Environment for Windows 8

Create Recovery partition create partition primary size=300 format quick fs=ntfs label=”Windows RE tools” assign letter=”R” set id=”de94bba4-06d1-4d40-a16a-bfd50179d6ac” gpt attributes=0x8000000000000001 Copy winpe.wim R:\Recovery\WindowsRE\winre.wim Customize winre.wim if want more options. Copy ReAgent.xml C:\Windows\System32\Recovery\ReAgent.xml This step can be omitted if ReAgentc function work … Continue reading

Posted in Windows | Leave a comment

Fix and Customize Boot for Windows

In Windows Recovery Environment, there are couple tools that do the job. If just want to fix the boot problem, BootRec.exe maybe is the easiest way. if just want fix BCD, try Bcdboot.exe, it has less steps. But, BcdEdit.exe has … Continue reading

Posted in Windows | 2 Comments

Add driver into WIM image

For boot image, only core driver should be added to reduce the image size. Add driver from WDS – for Boot image. Add WIM image to WDS Add driver package into WDS Add driver to WIM For installation image, there … Continue reading

Posted in Windows | Leave a comment