Friday, 17 August 2012

How to activate Windows 8 RTM

Do you find any way to change product key for your Windows 8 RTM ?

Solution:
1. Run Command Prompt as administrator
2. key in command as below :
    slmgr /ipk AAAAA-BBBBB-CCCCC-DDDDD-EEEEE ( Product key )
    slgmgr –ato

image 

You will be prompt for the Windows Activation Successfully message.


image


Congratulation your Windows 8 RTM is activated now.

Monday, 9 July 2012

How to transfer contact from Nokia to Samsung Phone

 

I need to transfer my contact from Nokia N73 phone into Samsung phone. Using Kies, ONLY able to import single VCF file in one time. Found a solution to import multiple *.vcf contact file instead of import 1 by 1. Almost 600 contacts in my old NOKIA phone.

1. Mark all contact in NOKIA phonebook, select COPY and TO MEMORY CARD.

2. Read the memory card from PC under directory Others\Contactsimage

3. Go to CMD, type COPY *.vcf <new file name>.vcfimage

4. Done and you can import new VCF file into Samsung phone via Kies now

Monday, 25 June 2012

Wireless Connection in Windows 8 Release Preview Hyper-V

In previous Windows, we need setup network bridge to share wireless connection from host. Now, Windows 8 Release Preview Hyper-V are supported wireless connection. Let’s do it now !

1. Go to Hyper-V Manager, click on Action and select Virtual Switch Manager

image

2. On Create Virtual Switch windows, Click button Create Virtual Switch.

image

3. Enter the name and under Connection type, Select your Wireless Device from drop down list of External network as below.

image

4. Add this Wireless virtual network switch in your Virtual Machines.

image

5. You are Connected Now !

image

Tuesday, 19 June 2012

Editing Report in SCCM 2012

 

For System Center Configuration Manager 2012 with SQL Server 2008 R2, you will receive this error while create/edit report from Console.

Error: Report Builder not available
Report Builder 2.0 is not installed as a click-once application on report server

image

To fix this, please change registry value to :

[HKLM\SOFTWARE\Wow6432Node\Microsoft\ConfigMgr10\AdminUI\Reporting]
"ReportBuilderApplicationManifestName"="ReportBuilder_3_0_0_0.application"

Download : ReportBuilder3.reg

P/S: after fix the registry still not work, please run Console as Administrator

If you need standalone Report Builder 3.0, download here.

More details from Microsoft

Sunday, 10 June 2012

Windows Live Messenger Contact List Empty

 

My Windows Live Messenger contact list was empty for 2 days. After restart PC still the same. Finally this trick help me fix it.

1. Exit Messenger

2. Go to Run and enter

    Windows 7
    %LOCALAPPDATA%\Microsoft\Windows Live\Contacts

    Windows XP
    %userprofile%\Local Settings\Application Data\Microsoft\Windows Live\Contacts

2. Delete folder name with your HOTMAIL email address

3. Launch Messenger and Hooray ! Your contact is BACK !

Tuesday, 29 May 2012

XP & Win7: All User Desktop

 

Are you looking a script that can copy a file into all user desktop which work on either XP or Win7. Below is the script that modify from Michael Hex .

PUBLIC folder is the location for All Users in Windows 7.

Example: Copy a URL shortcut into Win XP & Win 7 desktop.

   1: @echo off
   2: IF "%PUBLIC%"=="" GOTO NO_PUBLIC 
   3: GOTO PUBLIC_FOUND
   4:  
   5: :NO_PUBLIC 
   6: Rem Win XP 
   7: copy "Bing.url" "%ALLUSERSPROFILE%\Desktop"
   8:  
   9: :PUBLIC_FOUND 
  10: Rem Win Vista or Win 7
  11: copy "Bing.url" %PUBLIC%\Desktop 
Don’t forget to turn off User Account Control ( UAC ) in Vista & Win7