Pages

Friday 8 June 2012

REINSTALLMODE=amus


  • a - Force all files to be reinstalled, regardless of version
  • m - all required computer-specific registry entries (default)
  • u - all required user-specific registry entries (default)
  • s - all existing shortcuts (default)

Difference between Selfheal and Repair of MSI

Self Heal and Repair are two different concepts in Windows Installer which people gets confused with.


Self Heal is triggered by advertised shortcuts, or other advertising information in the package which eventually Repairs respective feature


Repair of an MSI can be triggered by

Repair button in Add/Remove programs
Using command line msiexec /f{optional switches} <Path of MSI>

MSI Uninstallation Command

MSI can be uninstalled in two ways.


1. MSIEXEC /x <ProductCode> /qb
2. MSIEXEC /x <Path of MSI> /qb


If in case MSI and MST are installed together, MST is not required during uninstallation. just the above commands are enough

Rename Folders using VBScript

Following script renames the folder in each user profile on WindowsXP machines


Dim FSfolder
Dim subfolder
Dim i

set objshell = CreateObject("Wscript.shell")
Set FSO = CreateObject("Scripting.FileSystemObject")

SysDrv=objshell.ExpandEnvironmentStrings("%systemdrive%")


Profile = SysDrv & "\Documents and Settings"
Set FSfolder = FSO.GetFolder(Profile) 'getting the user profile folders


'starting of the loop to delete the HKCUs

For Each subfolder In FSfolder.SubFolders

   If (subfolder.Name <> "All Users" And  subfolder.Name <> "Default User"_
   and subfolder.Name <> "LocalService" and subfolder.Name <> "NetworkService") Then

folder1=Profile & "\" & subfolder.Name & "\Application Data\Documentum\Client for Outlook"



RenameFolder(folder1)



   end if

Next

'*******************************************************************************************************

Function  RenameFolder(FolderName)

    If FSO.FolderExists(FolderName) Then
    'msgbox Foldername & ".old"
FSO.MoveFolder FolderName, Foldername & ".old"

    End If

End Function




Friday 18 May 2012

SCCM 2012 Features


Microsoft System Center 2012 Configuration Manager helps you deliver user experiences across a wide range of devices, while also ensuring that you meet corporate control and compliance requirements. Learn more about the product capabilities in this comprehensive System Center solution.

Key Capabilities

  • Application Delivery

    Configuration Manager has a user-centric approach to application delivery that allows…
    Learn More
  • Mobile Device Management

    Configuration Manager enables users to be productive on the devices of their choice…
    Learn More
  • Virtual Desktop Management

    Configuration Manager reduces the complexity and cost of implementing virtual…
    Learn More
  • Endpoint Protection

    Configuration Manager serves as the infrastructure for Microsoft System Center 2012 Endpoint …
    Learn More
  • Compliance & Settings Management

    Configuration Manager allows you to create a baseline for “desired configuration state”, …
    Learn More
  • Software Update Management

    Configuration Manager continues to simplify the complex task of delivering and managing…
    Learn More
  • Power Management

    Configuration Manager helps you get more out of your energy-saving hardware by providing…
    Learn More
  • Operating System Deployment

    Configuration Manager simplifies the complex task of distributing operating systems to physical …
    Learn More
  • Client Health & Monitoring

    Configuration Manager monitors and evaluates client health across your client environments…
    Learn More
  • Asset Intelligence

    Configuration Manager includes asset intelligence technologies that provide administrators with…
    Learn More
  • Inventory

    Configuration Manager can inventory hardware and software in your organization to help give you…
    Learn More

App-V 5.0 Beta Released


Microsoft has released App-V 5.0 Beta recently which has lot of new features.
For more information. Please go through following link

Saturday 5 May 2012

Application Packaging Online Training - May 2012 Batch

New batch of Application Packaging Online Training starting from 10th May 2012


Course Duration: 1 Month


Anyone interested? please contact me on Virtual.App.Packager@gmail.com


visit www.AppRepack.in for more information on training topics.