This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Vars | |
$msiPath = 'C:\Users\arush\Downloads\sqlncli.msi' | |
# Definition | |
$sig = @' | |
[DllImport("msi.dll", CharSet = CharSet.Unicode, PreserveSig = true, SetLastError = true, ExactSpelling = true)] | |
private static extern UInt32 MsiOpenPackageW(string szPackagePath, out IntPtr hProduct); | |
[DllImport("msi.dll", CharSet = CharSet.Unicode, PreserveSig = true, SetLastError = true, ExactSpelling = true)] | |
private static extern uint MsiCloseHandle(IntPtr hAny); | |
[DllImport("msi.dll", CharSet = CharSet.Unicode, PreserveSig = true, SetLastError = true, ExactSpelling = true)] |