- 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)
Friday, 8 June 2012
REINSTALLMODE=amus
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>
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
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
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
-
Configuration Manager has a user-centric approach to application delivery that allows…
-
Configuration Manager enables users to be productive on the devices of their choice…
-
Configuration Manager reduces the complexity and cost of implementing virtual…
-
Configuration Manager serves as the infrastructure for Microsoft System Center 2012 Endpoint …
-
Configuration Manager allows you to create a baseline for “desired configuration state”, …
-
Configuration Manager continues to simplify the complex task of delivering and managing…
-
Configuration Manager helps you get more out of your energy-saving hardware by providing…
-
Configuration Manager simplifies the complex task of distributing operating systems to physical …
-
Configuration Manager monitors and evaluates client health across your client environments…
-
Configuration Manager includes asset intelligence technologies that provide administrators with…
-
Configuration Manager can inventory hardware and software in your organization to help give you…
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.
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.
Subscribe to:
Posts (Atom)