MSIEXEC -Embedding
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MSIEXEC -Embedding相关的知识,希望对你有一定的参考价值。
下午好,
我需要一些处理Windows安装程序的微软大师的帮助吗?
我正在尝试使用虚拟机上的Windows中的调试键监视msiexec,并尝试完全理解Msiexec如何完全解析命令行。
我已经设置了HKEY_LOCAL_MACHINE SOFTWARE Microsoft Windows NT CurrentVersion Image文件执行选项 msiexec.exe
重定向到示例应用程序以监视解析的命令行。
我从移除应用程序和安装C ++可再发行组件等方面遇到了很多例子。
我理解标准的普通命令行,但无法理解如何使用-embedding开关。
语法一般是-Embedding 2FD6A2BDD8FE7E3EE9AD31C2970C272C A
我试过通过注册表搜索半导体没有用?
A - 似乎表示安装。 C - 似乎意味着删除。
任何人都知道我可以看到的好文件,以了解发生了什么,这是在我几天前问过的另一个问题的背面,我觉得已经回答了。
答案
如何重新安排guids
它们是微软称之为“压缩”的东西。他们为什么打扰是一个谜,但......无论如何。我也看到他们被称为“达尔文变换的GUID”。这是一个脚本,您可以将GUID提供给获取压缩的脚本,反之亦然:
'strCode = "{87E21645-7A8E-454D-B899-0317F2AEE9B9}"
strMungedCode = "4659EEA429F218A4CAEDA156497418B7"
'Call MungeProductCode(strCode, strMungedCode)
'WScript.Echo strCode & " munged becomes " & strMungedCode
Call UnMungeProductCode(strMungedCode, strCode)
WScript.Echo strMungedCode & " unmunged becomes " & strCode
Sub MungeProductCode(ByVal strProductCode, ByRef strMungedCode)
'// This routine munges the ProductCode into the munged format
'// used by various registry entries for Windows Installer
'// For example: {D650B8A9-C547-42D3-A7DF-0FAD0AC6E9ED}
'// becomes
'// 9A8B056D745C3D247AFDF0DAA06C9EDE
Dim arrSortOrder
Dim strNewCode
Dim intIndex
arrSortOrder = Array(9,8,7,6,5,4,3,2,14,13,12,11,19,18,17,16,22,21,24,23,27,26,29,28,31,30,33,32,35,34,37,36)
'// Generate the munged code
For intIndex = 0 To UBound(arrSortOrder)
strNewCode = strNewCode & Mid(strProductCode,arrSortOrder(intIndex),1)
Next
strMungedCode = strNewCode
End Sub
Sub UnMungeProductCode(ByVal strMungedCode, ByRef strProductCode)
'// This routine reconstructs a ProductCode from the munged format
'// used by various registry entries for Windows Installer
'// For example: 9A8B056D745C3D247AFDF0DAA06C9EDE
'// becomes
'// {D650B8A9-C547-42D3-A7DF-0FAD0AC6E9ED}
Dim arrSortOrder
Dim intIndex
Dim strPartTemp
Dim strPart1
Dim strPart2
Dim strPart3
Dim strPart4
Dim strPart5
'// Part 1
strPartTemp = Left(strMungedCode, 8)
strPart1 = StrReverse(strPartTemp)
'// Part 2
strPartTemp = Mid(strMungedCode, 9, 4)
strPart2 = StrReverse(strPartTemp)
'// Part 3
strPartTemp = Mid(strMungedCode, 13, 4)
'// Excuse me! May I borrow these variables for a moment?
strPart3 = Left(strPartTemp, 2)
strPart4 = Right(strPartTemp, 2)
strPart3 = StrReverse(strPart4) & StrReverse(strPart3)
'// Now deal with part 4 properly
strPartTemp = Mid(strMungedCode, 17, 2)
strPart4 = Mid(strMungedCode, 19, 2)
strPart4 = StrReverse(strPartTemp) & StrReverse(strPart4)
strPartTemp = Mid(strMungedCode, 21, 12)
arrSortOrder = Array(2,1,4,3,6,5,8,7,10,9,12,11)
'// Generate the product code
For intIndex = 0 To UBound(arrSortOrder)
strPart5 = strPart5 & Mid(strPartTemp,arrSortOrder(intIndex),1)
Next
strProductCode = ""
strProductCode = strProductCode & "{"
strProductCode = strProductCode & strPart1
strProductCode = strProductCode & "-"
strProductCode = strProductCode & strPart2
strProductCode = strProductCode & "-"
strProductCode = strProductCode & strPart3
strProductCode = strProductCode & "-"
strProductCode = strProductCode & strPart4
strProductCode = strProductCode & "-"
strProductCode = strProductCode & strPart5
strProductCode = strProductCode & "}"
End Sub
以上是关于MSIEXEC -Embedding的主要内容,如果未能解决你的问题,请参考以下文章
msiexec command line arguments