Thursday, 19 June 2014

Apple: Adware Removal Tool

This tool is an AppleScript application designed to remove all known Mac adware. The tool is updated frequently.


Reference:
Adware Removal Tool
http://www.thesafemac.com/art/

Microsoft: Internet Explorer Maintenance not Available for Internet Explorer ( IE ) 11

Internet Explorer Maintenance is no longer available for Internet Explorer 11 in the Local Computer Policy.

<< Internet Explorer 8 >>

<< Internet Explorer 11 >>

Wednesday, 18 June 2014

Microsoft: Set Internet Explorer ( IE ) Home Page with Group Policy

You can use the steps below to set the IE home page with Group Policy.
1. Create a GPO and link it to a scope (Site, Domain or OU level not group) that contains all your specified user accounts.
2. Edit the GPO: GPO name-->User Configuration-->Policies-->Administrative Templates-->Windows Components-->Internet Explorer-->Disable changing home page settings-->Enable-->Home Page: input your specified home page
3. Logoff or restart user computer to apply this GPO


Reference:
Enforcing an IE default page via GPO
http://social.technet.microsoft.com/Forums/en-US/20061e82-f857-4d38-a494-e8af18a5b51a/enforcing-an-ie-default-page-via-gpo?forum=winserverGP

Microsoft: How To Disable Internet Explorer First Run Welcome Screen Pop Up


Method #1: Using Group Policy Editor
Using Group Policy Editor is probably the best method, because it can be used either locally, on one computer, or in an Active Directory environment by utilizing the GPO power.
1. Press Start button + R (the Run command), type gpedit.msc and press Enter to launch the Group Policy Editor.

Note: In an Active Directory environment, open gpmc.msc and either edit an existing GPO, or create a new one and link it to the domain level, or to an OU of your choice.

2. In the left pane, expand User Configuration > Administrative Templates > Windows Components > Internet Explorer.

3. On the right pane, double-click on “Prevent running First Run wizard". A new settings window will open up.

4. Set the value to “Enabled”.

5. In the options section you must choose one of the two options from the drop-down menu:

  • Go directly to “Welcome To IE” page
  • Go directly to home page

You need to choose one of the two, otherwise the configuration will not work.

The first option configures IE to skip the Welcome screen and go directly to your home page, whatever it is.

The second option configures IE to skip the Welcome screen and and go to the “Welcome to Internet Explorer” page directly.

6. Click Apply to save the settings then click OK and close the Group Policy Editor window.

7. Press Start button + R (the Run command) and type gpupdate /force and press Enter to refresh the Group Policy on the computer.



Method #2: Using Registry Editor
You can use this method to either manually configure one computer, or generate a .REG file to import it on other machines.

Warning:
This document contains instructions for editing the registry. If you make any error while editing the registry, you can potentially cause Windows to fail or be unable to boot, requiring you to reinstall Windows. Edit the registry at your own risk. Always back up the registry before making any changes. If you do not feel comfortable editing the registry, do not attempt these instructions. Instead, seek the help of a trained computer specialist.

1. Press Start button + R to open run command dialog box. Type regedit and press Enter to open the Registry Editor. You may be prompted with a UAC prompt, click "Yes".

2. Navigate to the following path:
HKEY_LOCAL_MACHINE\Software\Policies\Microsoft\Internet Explorer\Main

Note: The above branch does not exist by default, and has to be created manually, or by running the .REG file available at the end of this article.

3. Right click on the right pane and select New > DWORD (32-bit) Value.

4. Enter DisableFirstRunCustomize.

5. Right-click on the new entry it and choose “Modify”.

6. Modify its DWORD (32-bit) Value to “1” (without the quotes) and click OK.

7. Exit the Registry Editor.

Note: You can use this .REG file to import the same setting to your computer:
Windows Registry Editor Version 5.00
;Disable IE11 Welcome Screen
[HKEY_LOCAL_MACHINE\Software\Policies\Microsoft\Internet Explorer\Main]
"DisableFirstRunCustomize"=dword:00000001

Copy the above text into a new text file, and save it as "DisableIEWelcome.reg".


Refernce:
How To Disable Internet Explorer First Run Welcome Screen Pop Up
http://www.petri.co.il/disable-ie8-ie9-welcome-screen.htm

Microsoft: Temporary Profile Issue in Windows

<< Method 1 >>
Before do anything, restart the computer 2 or 3 times to see whether it’s going back to your old correct profile. Go to next step if this doesn’t work.


<< Method 2 >>
Rename the temp profile registry and revert back the old registry settings for the correct profile. This method works most of the time for me in Workgroup and domain environment.
a)      Log in with temp profile
b)      Start registry editor by typing regedit in find box of Windows
c)      Navigate the following location
d)      You will see similar keys under profile list, but one with .bak, as shown below.
e)      The key with .bak is for the correct old profile. Currently your Windows computer logged in with fresh (temporary) profile with same key. So, rename the new profile key ( which is not having.bak) and remove .bak from correct profile key. See below.
f)      That’s it. Log off and log in (or restart) with your user name and password. You must get your correct profile with icons and profile settings back in Windows, if you are lucky enough.

Still if Windows computer loads with temporary profile and creates a registry key with .bak, that means user profile is really corrupted and Operating System is not reading it properly.


<< Method 3 >>
Repair the corrupted files. Usually the corrupted ‘Ntuser’ files cause this issue. So, run the check disk for partition which is having user profile.
If above steps do not help you out, then we need to create a new profile with new user name.

Basically we need to create a new user account, login with it and transfer the data from old user profile to new user profile. It is easy in workgroup environment as you can create new user name locally, but it is tricky in domain environment. Because, the existing user account is already there on domain server and nothing wrong with it. Also, creating a new different domain user account will cause issues on corporate emails, domain groups membership and shared permissions.

So, we need to treat both cases separately.


<< Method 4 >>
Create new user name in non domain (workgroup environment) from control panel or computer management.  Make sure to add the new user to administrators group.

Login with new user name and start copying your old data from old profile. I normally copy below data,
a) My Documents (Music, videos and downloads)
b) Desktop
c) Favorites
d) Any outlook PST files (find more information about location of PST files here)

But Microsoft suggests to copy entire old user profile (except 3 files) as shown in this official site link.


<< Method 5 >>
New user profile in domain environment.

Since we can’t delete and create new domain user account for this purpose, we will play around with client computer only. Let’s completely remove the user profile and re create again.

Copy the important user data (a to d in above step 4) or entire folders from corrupted profile to new location. Double-check that you have copied all required folders and files from old profile, because we are going to delete it now.

Go to Advanced settings of System as shown below, click on Settings (user profiles), select the corrupted user profile which is not loading properly in Windows, then press Delete button. Delete button will be enabled only if you login with different user account.
This will remove the entire user profile and related user SID from computer including the registery keys we talked about earlier. You can cross check the proper removal of user account (SID) by checking the C:\Users folder. Once it is remove properly, restart the computer and login with same user name (which was not loading earlier). The computer should create a new user profile as this is the first time the user is logging on. You need to copy back your old important data to new profile and set email outlook etc..if required.


Reference:
How to Fix Temporary Profile in Windows 7
http://www.sysprobs.com/fix-temporary-profile-windows-7

Microsoft: Delete an User's Profile from Windows PC

Go to Advanced settings of System as shown below, click on Settings (user profiles), select the user profile which is not loading properly in Windows, then press Delete button. Delete button will be enabled only if you login with different user account.

This will remove the entire user profile and related user SID from computer including the registery keys we talked about earlier. You can cross check the proper removal of user account (SID) by checking the C:\Users folder. Once it is remove properly, restart the computer and login with same user name (which was not loading earlier). The computer should create a new user profile as this is the first time the user is logging on. You need to copy back your old important data to new profile and set email outlook etc..if required.


Reference:
How to Fix Temporary Profile in Windows 7
http://www.sysprobs.com/fix-temporary-profile-windows-7

Microsoft: Contact Group is Grayed Out in Outlook for Mac 2011

In Outlook Preferences, you have to make sure the 'hide items on my computer' box is unticked. Then, the option to add a group is available. To untick the option, follow the steps below:
  1. Click on the Outlook Menu and choose Preferences
  2. Click on the General button
  3. Uncheck Hide folders on my computer

Reference:
Add Contact Group is grayed out in Outlook 2011
http://oit2.utk.edu/helpdesk/kb/entry/1830/