This blog entry provides an example of updating a primary key in an MSI database using the Modify method and VBScript. It follows on from the previous blog post which provided a tutorial on updating a registry value using the … Continue reading →
This blog entry provides an example of updating a registry value in an MSI database using the Modify method and VBScript. It follows on from the previous blog post which provided a tutorial on updating a registry value in an … Continue reading →
This blog entry provides an example of updating a registry value in an MSI database using VBScript. It follows on from the previous blog post which provided a tutorial on deleting a registry value from an MSI database using VBScript. … Continue reading →
This blog entry provides an example of deleting a registry value from an MSI database using VBScript. It follows on from the previous blog post which provided a tutorial on inserting a registry value into an MSI database. It forms … Continue reading →
This blog entry provides an example of inserting a registry value into an MSI database using VBScript. It follows on from the previous blog post which provided a tutorial on reading registry values from an MSI database using VBScript. It … Continue reading →
This blog entry provides an example of handling tables that don’t exist in an MSI database using VBScript. It follows on from the previous blog post which provided a tutorial on inserting a registry value in an MSI database using … Continue reading →
This blog entry provides an example of reading a registry value from an MSI database using VBScript. It follows on from the previous blog post which provided a tutorial on an introduction to using VBScript to manipulate MSI files and … Continue reading →
This blog entry provides an introduction to using VBScript to manipulate MSI files, and the golden rules that should be followed. It forms part 1 of an 17-part series that explores how to use VBScript to manipulate MSI relational databases … Continue reading →
A script to delete a registry key and its subkeys via a Custom Action. Useful for when we want to delete junk registry which has been left behind post uninstall. Source: technet.microsoft.com Script: Option Explicit Dim intHive Dim strComputer Dim … Continue reading →
A script to delete a folder and its subfolders via a Custom Action. Useful when we want to delete files/folders which have been left behind post uninstall. Source: blogs.technet.com Script: Dim arrFolders() intSize = 0 strComputer = “.” Set objWMIService … Continue reading →