Showing posts with label installation. Show all posts
Showing posts with label installation. Show all posts

Tuesday, September 17, 2013

Step by Step Adobe Reader Enterprise Depolyment

Adobe Reader Enterprise Depolyment


The steps below are the ones I followed to distribute and configure Adobe Reader X in an enterprise environment
  • Download the latest Adobe Reader base release e.g. 10.1.0 as an msi file
  • Download the latest Adobe Reader quarterly update e.g. AdbeRdrUpd1013.msp
  • Place the Adobe Reader msi file and the msp patch file in a folder.  Create an empty file called Setup.ini in the folder containing the msi and msp.
  • Run the Adobe Customization Wizard and load the Adobe Reader msi file.  Choose your installation options, e.g. removing the EULA prompt, disabling updates etc. and save the mst into the folder holding the installation files.
  • Run the command below to silently install Adobe Reader, update it using the msp file and apply the customizations in the mst file.
  • msiexec.exe /i “\\%SERVER%\SoftwareDistribution\Packages\AdobeReader_X\AdbeRdr1010_en_US.msi” PATCH=”\\%SERVER%\SoftwareDistribution\Packages\AdobeReader_X\AdbeRdrUpd1013.msp” TRANSFORMS=”\\%SERVER%\SoftwareDistribution\Packages\AdobeReader_X\Custom_Install.mst” /qn
exchange spam filter exchange spam filter exchange spam filter exchange spam filter exchange spam filter

Saturday, June 9, 2012

How to change Share Point 2010 Product Key

How to Change Share Point 2010 Product Key after installation?

Hear i am going to demonstrate how to change product key of Share Point after installation.

1) Login to Central Administration Farm Portal
2) Select " Upgrade and Migration" on left pane.
3) Select Convert Farm License Type
4) Type Product Key.
5) Apply.

Note : you can upgrade server license with higher version, by using this practice server version can not be degrad.
For Example : Trial to License ( any version )
                       Standard to Enterprise.


Regards,

Gaurang Patel
free spam filter

Tuesday, April 10, 2012

Determine when the operating system was installed on a computer

Determine when the operating system was installed on a computer

Introduction

The Win32_OperatingSystem WMI class can be used to gather useful information about the Operating System. It supports many properties, out of which the InstallDate property is used to determine the Operating System installation date in a computer.

Script to determine the Operating System installation date

To run the script, copy the following lines to a Notepad document, and save as a file with .VBS extension (use double-quotes) and double-click the file. The installation date and time would be displayed.
' © 2006 Ramesh Srinivasan.
'Returns the Operating System installation date.

strComputer = "."
Set dtmInstallDate = CreateObject( _
  "WbemScripting.SWbemDateTime")
Set objWMIService = GetObject("winmgmts:" _
  & "{impersonationLevel=impersonate}!\\" _
  & strComputer & "\root\cimv2")
Set colOperatingSystems = objWMIService.ExecQuery _
  ("Select * from Win32_OperatingSystem")
For Each objOperatingSystem in colOperatingSystems
  MsgBox "Install Date: " & getmydat (objOperatingSystem.InstallDate)
Next
Function getmydat(wmitime)
  dtmInstallDate.Value = wmitime
  getmydat = dtmInstallDate.GetVarDate
End function

Two more methods - For Windows XP Professional systems

Systeminfo.exe console-utility

Systeminfo command-line tool displays detailed configuration information about a computer and its operating system, including operating system configuration, security information, product ID, and hardware properties, such as RAM, disk space, and network cards. More information available at Microsoft Windows XP - Systeminfo

WMIC - command-line tool

Click Start, Run and type:
CMD /K WMIC OS GET InstallDate
You'll see the Operating System installation date (in WMI format). The first eight characters in that output gives you the installation date.

Tuesday, March 20, 2012

SCCM Client installation Fail error 1601.

While installating SCCM client in systems via client push and Manuall installation, facing below error.

"Installation failed with error code 1601"

by accessing ccmsetup.log on perticular client  and server i found above error,

Cause : 

This is a fatal error while installing SCCM client with Windows installer service.

Resolution :

1) open command prompt.
2) Access effected computers by using PSEXEC.
3) type command "net start msiserver"

if above command gives error or could not find specific service in computer then download windows installer service and install it.
hear is the download link : http://support.microsoft.com/kb/942288

Windows Installer 4.5 is now available as a redistributable system component for the following operating systems:
  • Windows Server 2008, 32-bit editions
  • Windows Server 2008, 64-bit editions
  • Windows Server 2008, Itanium-based editions
  • Windows Vista
  • Windows Vista Service Pack 1 (SP1)
  • Windows XP Service Pack 2 (SP2)
  • Windows XP Service Pack 3 (SP3)
  • Windows Server 2003 SP1
  • Windows Server 2003 SP2

Regards,,

Gaurang Patel