Saturday, March 23, 2013

How to Check Internet message header in O365

Internet message header in OWA

Open Outlook Web Access/App (OWA), Go To Inbox.
1. Double click on the message which you want to see massage Header to open it in its own window.
2. Click on the Message Details icon at the top of your message.
3. A new dialog window will open on the page containing the Internet Mail Header details.




 
 

 Internet headers in Outlook 2010/2013

Double-click on the email message for which you want header information and select the File tab on top
Click on Properties box on the bottom right (This is actually massage properties)
Right-click in the Internet Headers box

 




Thursday, March 14, 2013

How to Do the Manually O365 Office Activation


Option 01
Go to Control Panel->Clock,Language,and Region-> Regional and Language-> press the "Change system locale..." button.Set Current System locale to "English (United States)"

Go to Control Panel->Programs->Programs and Features->select "Microsoft Office Professional Plus 2010"->select "Change", then repair.

Option 02
Click start->run->type “CMD” and press OK to open Command Prompt, type “cd C:\Program Files\Common Files\Microsoft Shared\OFFICE14” and press “Enter”.

Run “OSAUI.exe /F”

 



 

How to Check Numbers of Activation happen on my O365 Office


Click start->run->type “CMD” and press OK to open Command Prompt, type “cd C:\Program Files\Common Files\Microsoft Shared\OFFICE14” and press “Enter”.

Run “OSAUI.exe /R

Monday, March 11, 2013

How to Remove Logon Temporary Profile from Windows

Scenario: When you login Active Directory Profile, It’s loading temporary profile without loading my current Profile
i. Log on to the system by using an administrative user account other than the user account that is experiencing the problem.
ii. Back up all data in the current user's profile folder if the profile folder still exists, and then delete the profile folder. By default, the profile resides in the following location:
%SystemDrive%\Users\UserName
iii. Click Start, type regedit in the Start Search box, and then press ENTER.
iv. If you are prompted for an administrator password or for confirmation, type your password, or click Continue.
v. Locate the following registry subkey:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList
vi. Under the ProfileList subkey, delete the subkey that is named SID.bak.
Note SID is a placeholder for the security identifier (SID) of the user account that is experiencing the problem. The SID.bak subkey should contain a ProfileImagePath registry entry that points to the original profile folder of the user account that is experiencing the problem.
vii. Exit Registry Editor.
viii. Log off the system.
ix. Log on to the system again.
Link you may refer to: A temporary profile is loaded after you log on to a Windows Vista-based system:http://support.microsoft.com/kb/947242 (Holds good for Windows 7)
http://support.microsoft.com/kb/947215

Sunday, March 10, 2013

How to Re-Size(Extend) Hard Disk using DiskPart Utility

Scenario: In your virtual environment at the movement one hard disk volume almost full, you need to increase this hard disk capacity without effecting volume data, You can extend your hard disk size From any virtualization solution (VMware, Hyper-V)

Connect to DiskPart from command prompt
Run Command Prompt as Administrator

Note: Before you run the Extend command you must add additional capacity for this volume

C:\Documents and Settings\Administrator>diskpart
DISKPART>
DISKPART> list

DISK        - Prints out a list of disks.
PARTITION   - Prints out a list of partitions on the current disk.
VOLUME      - Prints out a list volumes.
 
DISKPART> list volume 

  Volume ###  Ltr  Label        Fs     Type        Size     Status     Info
  ----------  ---  -----------  -----  ----------  -------  ---------  --------
  Volume 0     D   Tran         NTFS   Partition     10 GB  Healthy    Pagefile
  Volume 1     Y   TRP          NTFS   Partition    480 GB  Healthy
  Volume 2     W   LES     NTFS   Partition   1946 GB  Healthy
  Volume 3     E   DOC   NTFS   Partition    550 GB  Healthy
  Volume 4     X   CFC           NTFS   Partition    700 GB  Healthy
  Volume 5     B                       CD-ROM          0 B  Healthy
  Volume 6     I   LEIS         NTFS   Partition   1434 GB  Healthy
  Volume 7     U   IT   NTFS   Partition    350 GB  Healthy
  Volume 8     T   PBP          NTFS   Partition    250 GB  Healthy
  Volume 9     Z   MIT          NTFS   Partition    250 GB  Healthy
  Volume 10    C                NTFS   Partition     40 GB  Healthy    System 

Select volume which you want Extend

DISKPART> select volume 7
Volume 7 is the selected volume. 

DISKPART> extend

DiskPart successfully extended the volume.

Saturday, March 9, 2013

How to install .NET Framework 3.5 on Windows 8

Copy “sxs” folder (It’s in sources folder in Windows 8 operating System image: Eg: D:\sources\sxs) and paste it on root drive, C:\sxs
Open Command prompt as Administrator
And Copy and paste this command line and run

dism.exe /online /enable-feature /featurename:NetFX3 /Source
:c:\sxs /LimitAccess

Result as below
C:\Windows\system32>dism.exe /online /enable-feature /featurename:NetFX3 /Source :c:\sxs /LimitAccess
Deployment Image Servicing and Management tool
Version: 6.2.9200.16384
Image Version: 6.2.9200.16384
Enabling feature(s)
[==========================100.0%==========================]
The operation completed successfully.