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
Friday, 8 June 2012
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.
Wednesday, 11 April 2012
Microsoft UE-V
Microsoft User Experience Virtualization (UE-V) is an enterprise-scale user state virtualization solution that provides users a consistent, personal Windows experience that matches their unique work style. UE-V is simple and versatile so IT professionals can enable the personal, user-defined experiences across many devices while maintaining oversight. It can also integrate into existing management tools and infrastructure, which make it easily scale to the needs of any size organization.
Please use following URL to download UE-V
https://connect.microsoft.com/MDOPTAP/UEV
Please use following URL to download UE-V
https://connect.microsoft.com/MDOPTAP/UEV
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
http://www.microsoft.com/getappv5
For more information. Please go through following link
http://www.microsoft.com/getappv5
Subscribe to:
Posts (Atom)