Microsoft Group Policy Object – Event ID 1030, 1097 and 1110

At my current employer I have been creating Group Policy Objects (GPO) in an effort to centrally administer the workstation environment, provide automation and provide consistency in workstation deployment and management.

After running gpupdate and gpresult on a Microsoft Windows XP desktop I realized that the GPOs were not being applied. After looking through the Event Viewer logs I found GPO event IDs 1030, 1097 and 1110.

It turned out that the Netlogon service was disabled. The solution was to configure the Startup type: to Automatic.

Enjoy!


Universal Serial Bus – Create a Bootable USB Flash Drive

If you ever find that you need to create a bootable USB flash drive you may use the instruction in the Microsoft TechNet article titled “Create a Bootable USB Flash Drive“.

Enjoy!


Microsoft Group Policy Object – Group Policy Preference Client Side Extensions for Windows XP (KB943729)

I am currently in the process of automating the desktop deployment for my current employer. As a solution I am using Microsoft Group Policy Object (GPO) to map the network drives for the users. To date, most of my experience has been testing GPOs with Microsoft Windows 7 but today I was testing a GPO on a Windows XP desktop.

After modifying the GPO and placing the desktop in an Organizational Unit (OU) where the GPO was applied I expected the mapped drives to work, but they didn’t. After running gpresult I was able to verify that the GPO was in fact being applied, etc. I then logged on to a Microsoft Windows 7 desktop, that was in the same OU, and the drives were mapped.

The solution to this was simple. I needed to download and install the Group Policy Preference Client Side Extensions for Windows XP (KB943729) on the Windows XP desktop.

Hopefully you will find this information helpful.

Enjoy!


Automation – Silent Installation of Applications

Automating application installations is a great way to cut down on the deployment time of workstations for your end users. Having completed a domain/operating system migration in the past I can attest to the benefits of an automated deployment. Below you will find a list of applications and their silent installation parameters:

7-Zip: msiexec.exe /i “7z920-x64.msi” /qn

Adobe Air: “AdobeAIRInstaller.exe” -silent

Adobe Flash Player: msiexec.exe /i “install_flash_player_11_active_x.msi” /qn /norestart

Adobe Reader XI: msiexec.exe /i AcroRead.msi EULA_ACCEPT=YES /qn

Adobe Shockwave Player: msiexec.exe /i “sw_lic_full_installer.msi” /qn /norestart

Apple Application Support: msiexec.exe /i “AppleApplicationSupport.msi” /qn /norestart

Apple Quicktime: msiexec.exe /i “QuickTime.msi” /qn /norestart

Barracuda Malware Removal Tool: setup.exe /verysilent /norestart

Microsoft Silverlight: Silverlight.exe /q

Mozilla Firefox: “Firefox Setup 25.0.exe” -ms

Oracle Java: JavaSetup7u45.exe /s

VLC Media Player: vlc-2.1.1-win32.exe /S


Automation – Adobe Flash Player 11.x Silent Installation

If you interested in deploying Adobe Flash Player 11 silently you may download the MSI from the Adobe Flash Player Distribution website. Additionally, the command below may be used to install application silently.

msiexec.exe /i “install_flash_player_11_active_x.msi” /qn /norestart

Enjoy!


Adobe Customization Wizard XI – Install Adobe Reader XI

You may use the following method to install Adobe Reader XI silently and accept the End User License Agreement (EULA):

msiexec.exe /i AcroRead.msi EULA_ACCEPT=YES /qn

Additionally, you may use the Adobe Customization Wizard XI to customize the installation of Adobe Reader XI. Please keep in mind that the Adobe Customization Wizard must match the version of Adobe Reader that you are installing.

Lastly, in order to get the .msi file you must first install the Adobe Reader XI application then navigate to the “C:\ProgramData\Adobe\Setup\{AC76BA86-7AD7-1033-7B44-AB0000000001}\” directory to retrieve it. This directory also contains the Setup.ini file which is needed in order to save any settings, using the Adobe Customization Wizard XI, to the .msi file.

Enjoy!


Microsoft Office Customization Tool – Suppress Reboot

I was troubleshooting a Dirty Environment Found error while Microsoft Deployment Toolkit (MDT) 2013 was installing Microsoft Office Professional Plus 2010. The error was caused because Microsoft Office Professional Plus 2010 was rebooting the desktop after its installation and the reboot was disrupting the MDT task sequence.

I was using the Office Customization Tool for the installation of Microsoft Office Professional Plus 2010 but I was unable to find a dialog box that would allow me to suppress the reboot. After some quick research I found the solution. In the  Office Customization Tool navigate to Setup > Modify Setup properties then add a property value with a Name: of SETUP_REBOOT and a Value: of Never.

Enjoy!


Microsoft Office 2010 – Office Customization Tool

If you ever find yourself performing a large scale deployment of Microsoft Office Professional Plus 2010 you may use the Office Customization Tool to customize the deployment.For instance, you may specify the product key to use as well as perform a silent installation.

I found this Utility Spotlight article very helpful.

Enjoy!


Google Apps – IMAP Settings for Microsoft Outlook 2010

You may use the following information to configure a Google Apps email account in your Microsoft Outlook 2010 email client.

Incoming mail server: imap.gmail.com

Outgoing mail server (SMTP): smtp.gmail.com

00

 

My outgoing server (SMTP) requires authentication

01

Service Port Numbers: Incoming server (IMAP): 993

  • SSL

Service Port Numbers: Outgoing server (SMTP): 587

  • TLS

02

Enjoy!


Migration – Email Service Provider – 3

Google provides an Administration Guide for email migrations to Google Apps. Google has done a great job of documenting the migration process and even provides a Google Apps Migration for Microsoft® Exchange tool as well as video documentation.

You download this tool, provide a user list, and the tool will authenticate to your existing email server and migrate the email to Google Apps platform.

The format for the user list is as follows:

user1#user1password, google_user1

For example, if you had a user with the email address of [email protected] and a password of “letmein” then your user list would be:

[email protected]#letmein, migration

Enjoy!