Nice — that’s progress. Binwalk + your script successfully decompressed all four blobs into .dec files (good work). Now we need to inspect those .dec files to see whether any of them contain an MSI/CAB/ZIP or .inf/.sys driver files.
Run these inspection commands from the same folder (/home/cosair/_combined.bin.extracted). Paste the full output here.
1) Quick listing and types
ls -la .dec
file
.dec
2) Quick header + a few strings for each .dec (shows PK / MZ / obvious driver strings)
for g in *.dec; do
echo "=== $g ==="
head -c 64 "$g" | hexdump -C
strings -a -n 8 "$g" | sed -n '1,30p'
done
3) Search the tree for driver/installer files
find . -type f ( -iname '.inf' -o -iname '.sys' -o -iname '.msi' -o -iname '.cab' -o -iname '*.zip' ) -print
What I’m looking for
  • file output showing “PE32 / MZ” (an .exe/PE), or “Zip / MSI / CAB”, or strings that include “.inf”, “Samsung”, “nvme”, “stornvme”, “iaStor”, etc. That tells us whether we’ve found the vendor driver package to extract. If find shows .inf/.sys files, copy that folder to a USB and tell me the USB/volume letter and I’ll give the exact DISM / bcdboot commands for injecting the driver into your offline Windows image in the Macrium/Hiren PE environment. (This is the standard workflow after extracting the installer payload.) fileciteturn1file4turn2file8
If you do find an MSI/CAB inside a .dec
  • I’ll tell you the exact 7z command to extract it (7z x path/to/file.msi -o_extracted), then the find command to locate .inf/.sys inside the extracted folder so we can copy that to USB for injection.
If nothing useful appears
  • The installer may be obfuscated or require the device present. The reliable fallbacks are: try concatenation/carving variants, or run the Samsung installer on a machine that actually has the NVMe and use Export‑WindowsDriver to get the INF/SYS. I can guide either path — tell me which you prefer.
If you want to copy any discovered driver folder from WSL to Windows (USB)
  • Example copy to C:\Temp\SamsungDriver from WSL:
    cp -r /home/cosair/_combined.bin.extracted/path-to-driver-folder /mnt/c/Temp/SamsungDriver
After you paste the inspection output above I’ll point to the exact file to extract and give the next commands (7z / lessmsi if needed) and then the DISM/pnputil commands you’ll run from Macrium Rescue/Hiren’s PE.
 

@ChatGPT


cosair@DESKTOP-1IUHAB1:~/_combined.bin.extracted$ ld -la .dec
ld: cannot find -la: No such file or directory
ld: cannot find .dec: No such file or directory
cosair@DESKTOP-1IUHAB1:~/_combined.bin.extracted$ ls -la .dec
ls: cannot access '.dec': No such file or directory
cosair@DESKTOP-1IUHAB1:~/_combined.bin.extracted$ file .dec
.dec: cannot open `.dec' (No such file or directory)
cosair@DESKTOP-1IUHAB1:~/_combined.bin.extracted$ for g in *.dec; do
"=== $> echo "=== $g ==="
> head -c 64 "$g" | hexdump -C
gs -a -n> strings -a -n 8 "$g" | sed -n '1,30p'
> done
=== 400E.dec ===
00000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
*
00000040
$$$H$$$u$$$G
&&&=$$$]
=== 400E5.dec ===
00000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
*
00000040
$$$H$$$u$$$G
&&&=$$$]
=== 7D68A.dec ===
00000000 00 00 0c 48 4c 69 6e 6f 02 10 00 00 6d 6e 74 72 |...HLino....mntr|
00000010 52 47 42 20 58 59 5a 20 07 ce 00 02 00 09 00 06 |RGB XYZ ........|
00000020 00 31 00 00 61 63 73 70 4d 53 46 54 00 00 00 00 |.1..acspMSFT....|
00000030 49 45 43 20 73 52 47 42 00 00 00 00 00 00 00 00 |IEC sRGB........|
00000040
mntrRGB XYZ
acspMSFT
IEC sRGB
Copyright (c) 1998 Hewlett-Packard Company
sRGB IEC61966-2.1
sRGB IEC61966-2.1
IEC http://www.iec.ch
IEC http://www.iec.ch
.IEC 61966-2.1 Default RGB colour space - sRGB
.IEC 61966-2.1 Default RGB colour space - sRGB
,Reference Viewing Condition in IEC61966-2.1
,Reference Viewing Condition in IEC61966-2.1
CRT curv
% : O d y
=== 7E0FA.dec ===
00000000 01 87 88 87 e5 01 00 01 00 02 02 02 01 02 01 01 |................|
00000010 01 00 01 00 01 02 01 02 02 00 00 00 02 01 01 02 |................|
00000020 03 00 00 00 02 00 00 ff 03 ff ff 00 03 ff ff ff |................|
00000030 02 ff ff ff 01 ff ff fe 02 ff ff 00 01 fe ff fe |................|
00000040
=== 8F4A8.dec ===
00000000 00 ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff |................|
00000010 ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff |................|
*
00000040
cosair@DESKTOP-1IUHAB1:~/_combined.bin.extracted$ find . -type f ( -iname '.inf' -o -iname '.sys' -o -iname '.msi' -o -iname '.cab' -o -iname '*.zip' ) -print
-bash: syntax error near unexpected token `('
cosair@DESKTOP-1IUHAB1:~/_combined.bin.extracted$
 

Great — thanks, that output is exactly what I needed. Short summary, then precise next checks and two practical options.
What your outputs show
  • Binwalk + your script successfully produced the .dec files. Good.
  • The quick hexdump/strings you pasted show no PE (MZ) or PK (ZIP/MSI/CAB) headers and no obvious “Samsung”, “nvme”, or “*.inf” text. For example 7D68A.dec contains ICC/profile text (sRGB, IEC…), and the other .dec files look like binary blobs — not a Windows driver package. That means the driver files aren’t in these four decompressed pieces (at least not in plain .inf/.sys form).
Two very quick checks to absolutely confirm (paste results)
Run these three commands from /home/cosair/_combined.bin.extracted:
1) Look for PK (zip/msi) or MZ (PE) signatures inside the .dec files:
grep -a -n $'\x50\x4b\x03\x04' .dec || true
grep -a -n $'\x4d\x5a'
.dec || true
2) Search the decompressed data for any driver-related strings:
strings -a -n 6 *.dec | egrep -i 'samsung|nvme|stornvme|iastor|.inf|.sys' || true
(If both of those show nothing, we can be confident these .dec blobs do not contain the .inf/.sys driver files.)
Recommended next steps (pick one)
Option 1 — Search / carve the original combined.bin for embedded MSI/CAB (recommended next technical attempt)
  • binwalk sometimes misses when run on NTFS mounts; you already used binwalk and got pieces. If no PK/MZ signatures are in the .dec files, try scanning the original combined.bin for PK/MZ headers (they may be at offsets that weren’t in those particular zlib blobs). Run from WSL or a shell where combined.bin is accessible:

search for ZIP/MSI and PE headers in combined.bin​

grep -a -n $'\x50\x4b\x03\x04' /mnt/c/Temp/SamsungExtract/combined.bin || true
grep -a -n $'\x4d\x5a' /mnt/c/Temp/SamsungExtract/combined.bin || true
If grep finds offsets like "combined.bin:123456:", tell me the offset(s). Then we can carve that area into a separate file and try 7z/lessmsi on it:

example carve (replace OFFSET and LENGTH with real numbers I give after you post grep output)​

dd if=/mnt/c/Temp/SamsungExtract/combined.bin of=carved.msi bs=1 skip=OFFSET count=LENGTH status=progress
7z x carved.msi -o_extracted_carved
I can give the exact dd/7z commands once you paste any offsets found. This is the usual forensic path when the installer fragments are weird.
Option 2 — Fallback that usually always works: get the driver from a working Windows install (recommended if carving fails)
  • If you have access to any other Windows machine (or can temporarily attach the NVMe to one), run the Samsung installer there (it will unpack/install the driver). Then on that working Windows run (elevated PowerShell):

exports all 3rd‑party drivers from the running Windows to a USB (X:)

Export-WindowsDriver -Online -Destination X:\ExportedDrivers
Then copy the Samsung/NVMe folder from X:\ExportedDrivers to your rescue USB. That folder will contain the .inf/.sys you need for DISM injection in the Macrium/Hiren PE environment. This is the simplest, most reliable route if the installer’s payload is obfuscated.
Why I recommend Option 2 if you can do it
  • Your .dec results right now look like profiles and opaque binary blobs, not driver packages. Many Samsung EXE bundles only produce usable INF/SYS files when the installer runs on a machine with the device — so exporting the installed driver from a working Windows is often the fastest, least-fragile approach.
If you want to continue carving (Option 1), do this now
  1. Run the two grep commands I gave above against combined.bin and paste their output here.
  2. If you get offsets, paste them exactly and I’ll give the dd carve command with the correct skip/count values and the 7z/lessmsi extraction commands. (I’ll also explain how to move any extracted driver folder into /mnt/c/Temp so you can copy it to your Macrium USB.)
If you want to do the Export-WindowsDriver approach (Option 2), tell me:
  • Do you have another Windows PC where you can run the Samsung EXE, or can you temporarily attach the NVMe to one? If yes, I’ll give the exact steps to run there and how to bring the result back to your rescue environment.
Finally — one small command to run now (optional)
If you’re curious and want one more quick scan locally before picking an option, run:
strings -a -n 8 /home/cosair/_combined.bin.extracted/* | egrep -i 'samsung|nvme|stornvme|iastor|.inf|.sys' || true
Paste the output (if any) and I’ll interpret it. If it’s empty, let’s pick Option 1 (I’ll guide the carve) or Option 2 (Export-WindowsDriver) — tell me which you prefer.
 

@ChatGPT


cosair@DESKTOP-1IUHAB1:~/_combined.bin.extracted$ grep -a -n $'\x50\x4b\x03\x04' .dec || true
rep -a -n $'\x4d\x5a' .dec || truegrep: .dec: No such file or directory
cosair@DESKTOP-1IUHAB1:~/_combined.bin.extracted$ grep -a -n $'\x4d\x5a' .dec || true
grep: .dec: No such file or directory
cosair@DESKTOP-1IUHAB1:~/_combined.bin.extracted$ strings -a -n 6 *.dec | egrep -i 'samsung|nvme|stornvme|iastor|.inf|.sys' || true
cosair@DESKTOP-1IUHAB1:~/_combined.bin.extracted$ grep -a -n $'\x50\x4b\x03\x04' /mnt/c/Temp/SamsungExtract/combined.bin || true
p -a -n $'\x4d\x5a' /mnt/c/Temp/SamsungExtract/combined.bin || truecosair@DESKTOP-1IUHAB1:~/_combined.bin.extracted$ gre
1:<?xml version="1.0" encoding="utf-8"?><BurnManifest xmlns="http://schemas.microsoft.com/wix/2008/Burn"><Log PathVariable="WixBundleLog" Prefix="Samsung_NVM_Express_Driver" Extension="log" /><RelatedBundle Id="{2C81F0BB-1891-4E83-B71A-5160BA33D985}" Action="Upgrade" /><Variable Id="InstallFolder" Value="[ProgramFiles6432Folder]Samsung" Type="string" Hidden="no" Persisted="no" /><Variable Id="InstallFolder2" Value="[WindowsVolume]Database" Type="string" Hidden="no" Persisted="no" /><Variable Id="InstallFor950Pro" Value="0" Type="numeric" Hidden="no" Persisted="yes" /><Variable Id="InstallFor960Pro" Value="0" Type="numeric" Hidden="no" Persisted="yes" /><Variable Id="InstallFor970Pro" Value="0" Type="numeric" Hidden="no" Persisted="yes" /><Variable Id="WixBundleName" Hidden="no" Persisted="yes" /><Variable Id="WixBundleOriginalSource" Hidden="no" Persisted="yes" /><Variable Id="WixBundleOriginalSourceFolder" Hidden="no" Persisted="yes" /><Variable Id="WixBundleLastUsedSource" Hidden="no" Persisted="yes" /><UX><Payload Id="WixExtendedBootstrapperApplication.RtfLicense" FilePath="wixextba.dll" FileSize="365056" Hash="9F10260B4E0AD03FF9FD0BF74A67C8EE9166DD18" Packaging="embedded" SourcePath="u0" /><Payload Id="pay4E55814D3465BD825A900D4E476A7FF5" FilePath="LanguageStrResourceDll.dll" FileSize="12800" Hash="6493DF4A2E80E4F63B40E3C38D054230DD1D2BA6" Packaging="embedded" SourcePath="u1" /><Payload Id="pay0BDF3F8E435D28361663B09228DB8D10" FilePath="bafunctions.dll" FileSize="118784" Hash="66508881D96783365E8B3621E8C429E6D20D7627" Packaging="embedded" SourcePath="u2" /><Payload Id="pay238E42762165CEDC4EA0F0A3251B6002" FilePath="LogoSide.png" FileSize="73240" Hash="C44B67E85D4E3A57C21376509951B91E5E048274" Packaging="embedded" SourcePath="u3" /><Payload Id="pay02C4439962C5537EAD143C98CA74A90C" FilePath="Samsung_Logo.png" FileSize="1932" Hash="C4A1945B4993C46099ACB527CBEAB5404368E539" Packaging="embedded" SourcePath="u4" /><Payload Id="pay22B5552D4B727F05823B5978B6FC175A" FilePath="x86\Uninstaller.bat" FileSize="1614" Hash="66615F6B570F467FC1032686E01E40883583BEBB" Packaging="embedded" SourcePath="u5" /><Payload Id="pay2A5C56CBDEA2EB7586D3F3CAC4FC7ED1" FilePath="x64\UninstallerRemoveRescan.bat" FileSize="617" Hash="F8F742773B2FE74CFD6B972019A02DAA85FD1E50" Packaging="embedded" SourcePath="u6" /><Payload Id="pay37D44CC96067E7467F68165214F1F3E4" FilePath="thm.wxl" FileSize="6546" Hash="B2684EE200043BC6701878DFD89C214754B73395" Packaging="embedded" SourcePath="u7" /><Payload Id="pay6EC8ED614A08C0C2814A1EFED57891BF" FilePath="x64\msvcr120.dll" FileSize="963232" Hash="62CB65A1D79E2C5ADA0C7BFC04C18693567C90D0" Packaging="embedded" SourcePath="u8" /><Payload Id="pay63EF8BBEE9F2C8FFD6A4F2E07807539C" FilePath="x86\SamsungFinder.exe" FileSize="72704" Hash="145C70117478EF095A9FBDEAF9FBF6F9DCBAE7B7" Packaging="embedded" SourcePath="u9" /><Payload Id="pay0D95A40934D4350B284AF9401A942682" FilePath="x86\msvcr120.dll" FileSize="970912" Hash="F19E9D8317161EDC7D3E963CC0FC46BD5E4A55A1" Packaging="embedded" SourcePath="u10" /><Payload Id="EULA-en_US" FilePath="1033\License.rtf" FileSize="39598" Hash="86DFB04B1E6B2005ADA603CB68AF787EE4A7005A" Packaging="embedded" SourcePath="u11" /><Payload Id="EULA-kr_KR" FilePath="1042\License.rtf" FileSize="107818" Hash="42EFEB7CB16395F24985484BB9C3ED3E8E35533F" Packaging="embedded" SourcePath="u12" /><Payload Id="EULA-de_DE" FilePath="1031\License.rtf" FileSize="45415" Hash="138F12A36801A6C8DC3FD8E18035501E6990D286" Packaging="embedded" SourcePath="u13" /><Payload Id="EULA-es_ES" FilePath="3082\License.rtf" FileSize="42121" Hash="0DDE63D195645396AE233E4C8B2345F088AD5E5F" Packaging="embedded" SourcePath="u14" /><Payload Id="EULA-fr_FR" FilePath="1036\License.rtf" FileSize="45905" Hash="8F96CBF48FD3FA7C8D5F7D1DFADCA935E76154B5" Packaging="embedded" SourcePath="u15" /><Payload Id="EULA-it_IT" FilePath="1040\License.rtf" FileSize="44009" Hash="66925580D38D03A1F9E62495CB14C13AB3D86B52" Packaging="embedded" SourcePath="u16" /><Payload Id="EULA-ja_JA" FilePath="1041\License.rtf" FileSize="76778" Hash="40C3A60A9D4229BEB5907CA2720E0B4AA646A47F" Packaging="embedded" SourcePath="u17" /><Payload Id="EULA-ru_RU" FilePath="1049\License.rtf" FileSize="101897" Hash="F7196E14032837816422A2FE72EA9173DADB471E" Packaging="embedded" SourcePath="u18" /><Payload Id="EULA-zh_CN" FilePath="2052\License.rtf" FileSize="66170" Hash="D6E779034A470B7191299DC5295CF0A38DCAED1B" Packaging="embedded" SourcePath="u19" /><Payload Id="EULA-pt_PT" FilePath="2070\License.rtf" FileSize="42864" Hash="03D695832B785F288B08AF66369E71F5DB61C26C" Packaging="embedded" SourcePath="u20" /><Payload Id="Licensefile" FilePath="license.txt" FileSize="1324" Hash="E76CF6925E4AEB8CA5893A4C50822A4F81EB0614" Packaging="embedded" SourcePath="u21" /><Payload Id="pay8D808CAB1BE0B77B63CFFC21BE0A7985" FilePath="thm.xml" FileSize="14066" Hash="5508AE5A30C0F02F1FF84CBD88759A9D591B6EA6" Packaging="embedded" SourcePath="u22" /><Payload Id="pay9197360B6F52E0411712FCC415C62EA4" FilePath="Logo.png" FileSize="880" Hash="7AC786C5C6A7AFFE7B318B9A8E5869586BECBC67" Packaging="embedded" SourcePath="u23" /><Payload Id="pay8D3AAAB4ADC107744F4D0A670E63B940" FilePath="license.rtf" FileSize="39598" Hash="86DFB04B1E6B2005ADA603CB68AF787EE4A7005A" Packaging="embedded" SourcePath="u24" /><Payload Id="payCE93F1637FCE9D49C985C1D29204F86D" FilePath="x64\SamsungFinder.exe" FileSize="78336" Hash="BE8D8164BF090823E891482B09171E5DBACD807B" Packaging="embedded" SourcePath="u25" /><Payload Id="payA72DAF1CACAA2F67306BDC28FE09FC2B" FilePath="x64\Uninstaller.bat" FileSize="1614" Hash="66615F6B570F467FC1032686E01E40883583BEBB" Packaging="embedded" SourcePath="u26" /><Payload Id="pay91E7308ABF3147BF5DB6B818F7C1ADB9" FilePath="x86\UninstallerRemoveRescan.bat" FileSize="617" Hash="F8F742773B2FE74CFD6B972019A02DAA85FD1E50" Packaging="embedded" SourcePath="u27" /><Payload Id="payAB1D07DC50674E4D2D7090EFD66F1A76" FilePath="x64\RepairUpdatePnP.bat" FileSize="2499" Hash="16AE256CD1F2817B4F2907F7C9CFC3EE5C8BB1C4" Packaging="embedded" SourcePath="u28" /><Payload Id="pay9FD591C172DF943EE76A211DBA110AA7" FilePath="x86\RepairUpdatePnP.bat" FileSize="2499" Hash="16AE256CD1F2817B4F2907F7C9CFC3EE5C8BB1C4" Packaging="embedded" SourcePath="u29" /><Payload Id="str-en_US" FilePath="1033\thm.wxl" FileSize="6546" Hash="B2684EE200043BC6701878DFD89C214754B73395" Packaging="embedded" SourcePath="u30" /><Payload Id="str-kr_KR" FilePath="1042\thm.wxl" FileSize="7082" Hash="51286741E1B2587F26F0A83FF898CFC0BC09EE86" Packaging="embedded" SourcePath="u31" /><Payload Id="str-de_DE" FilePath="1031\thm.wxl" FileSize="7245" Hash="BA6D1A7972C4060D24270EB71B424E7C95012772" Packaging="embedded" SourcePath="u32" /><Payload Id="str-es_ES" FilePath="3082\thm.wxl" FileSize="7016" Hash="D2F7B357C38F045492E5A083EE54E3AB58A3B86E" Packaging="embedded" SourcePath="u33" /><Payload Id="str-fr_FR" FilePath="1036\thm.wxl" FileSize="7177" Hash="4688E85751B8112B91CC12EB8B76623215A52AAB" Packaging="embedded" SourcePath="u34" /><Payload Id="str-it_IT" FilePath="1040\thm.wxl" FileSize="6987" Hash="88844B0B70F6A5CE17619D327CD4548480B6C859" Packaging="embedded" SourcePath="u35" /><Payload Id="str-ja_JA" FilePath="1041\thm.wxl" FileSize="8098" Hash="820AEAE32E44D8355A80410AF3F3508D9304EC17" Packaging="embedded" SourcePath="u36" /><Payload Id="str-ru_RU" FilePath="1049\thm.wxl" FileSize="9007" Hash="FC122450897392DA791B7CFA72632F5B99B643B2" Packaging="embedded" SourcePath="u37" /><Payload Id="str-zh_CN" FilePath="2052\thm.wxl" FileSize="6135" Hash="3C120776F9BE15C3E63550CC05EC7200D2DDB988" Packaging="embedded" SourcePath="u38" /><Payload Id="str-pt_PT" FilePath="2070\thm.wxl" FileSize="6957" Hash="AFD5D9577B7EE6D32DADE72033EB11A15BF28A63" Packaging="embedded" SourcePath="u39" /><Payload Id="ux018A3672B47BC33C533DBA884702200B" FilePath="BootstrapperApplicationData.xml" FileSize="9820" Hash="48E12E3EABA0F71BFC5CE7C19EC3134ADFE24080" Packaging="embedded" SourcePath="u40" /></UX><Container Id="WixAttachedContainer" FileSize="3025380" Hash="E0C8BA3BDE63836B6A7E63FAF6B315EEA4739A4D" FilePath="Samsung NVM Express Driver.exe" AttachedIndex="1" Attached="yes" Primary="yes" /><Payload Id="Setup64" FilePath="SamsungInstaller64.msi" FileSize="1212416" Hash="4B3066C4021ED54F784013AB0CECE1F17CCF829B" Packaging="embedded" SourcePath="a0" Container="WixAttachedContainer" /><Payload Id="Setup32" FilePath="SamsungInstaller32.msi" FileSize="819200" Hash="526AB42C1A0A218F8026A11F9524ACBFF7A0B761" Packaging="embedded" SourcePath="a1" Container="WixAttachedContainer" /><Payload Id="Setup32Samsung960Pro" FilePath="Samsung960ProInstaller32.msi" FileSize="819200" Hash="07711CF386EFCA3733380BD56A54F4EDA6B0B7A8" Packaging="embedded" SourcePath="a2" Container="WixAttachedContainer" /><Payload Id="Setup64Samsung960Pro" FilePath="Samsung960ProInstaller64.msi" FileSize="1212416" Hash="FE578D331AC661CA293711CE9A111CE438D7D6FC" Packaging="embedded" SourcePath="a3" Container="WixAttachedContainer" /><Payload Id="Setup32Samsung970Pro" FilePath="Samsung970ProInstaller32.msi" FileSize="819200" Hash="5C79214CBA555E85C69155A6F6314922A374A81A" Packaging="embedded" SourcePath="a4" Container="WixAttachedContainer" /><Payload Id="Setup64Samsung970Pro" FilePath="Samsung970ProInstaller64.msi" FileSize="1212416" Hash="7D11AFEEBDF730B613A81CEB08B9D5534E821DF2" Packaging="embedded" SourcePath="a5" Container="WixAttachedContainer" /><RollbackBoundary Id="WixDefaultBoundary" Vital="yes" /><Registration Id="{ff94c273-58d5-40b5-b03a-9bd41d5cff1e}" ExecutableName="Samsung NVM Express Driver.exe" PerMachine="yes" Tag="" Version="3.3.0.2003" ProviderKey="{ff94c273-58d5-40b5-b03a-9bd41d5cff1e}"><Arp Register="yes" DisplayName="Samsung NVM Express Driver" DisplayVersion="3.3.0.2003" Publisher="Samsung Electronics Co., Ltd" HelpLink="Mobile | TV | Home Electronics | Home Appliances | Samsung US | Samsung US" AboutUrl="http://www.samsung.com" UpdateUrl="http://www.samsung.com" DisableModify="yes" /></Registration><Chain DisableSystemRestore="yes"><MsiPackage Id="Setup64" Cache="yes" CacheId="{6D29AC99-C940-4FA7-AAD0-309C67F7301A}v3.3.0.2003" InstallSize="427696" Size="1212416" PerMachine="yes" Permanent="no" Vital="yes" RollbackBoundaryForward="WixDefaultBoundary" LogPathVariable="WixBundleLog_Setup64" RollbackLogPathVariable="WixBundleRollbackLog_Setup64" InstallCondition="InstallFor950Pro AND VersionNT64" ProductCode="{6D29AC99-C940-4FA7-AAD0-309C67F7301A}" Language="1033" Version="3.3.0.2003" DisplayInternalUI="no"><MsiProperty Id="ALLUSERS" Value="1" /><MsiProperty Id="ARPSYSTEMCOMPONENT" Value="1" /><MsiProperty Id="MSIFASTINSTALL" Value="7" /><MsiProperty Id="APPLICATIONFOLDER" Value="[InstallFolder]" /><MsiProperty Id="PAYLOADFOLDER" Value="[PayLoadSourceFolder]" /><Provides Key="{6D29AC99-C940-4FA7-AAD0-309C67F7301A}" Version="3.3.0.2003" DisplayName="Samsung NVM Express Driver 3.3.0.2003" /><RelatedPackage Id="{A2B8FBB1-4884-4AC7-B880-AE2491E1F473}" MaxVersion="3.3.0.2003" MaxInclusive="no" OnlyDetect="no" /><RelatedPackage Id="{A2B8FBB1-4884-4AC7-B880-AE2491E1F473}" MinVersion="3.3.0.2003" MinInclusive="no" OnlyDetect="yes" /><PayloadRef Id="Setup64" /></MsiPackage><MsiPackage Id="Setup32" Cache="yes" CacheId="{55A56351-BF8A-40E4-9F61-A0B9713F1CBC}v3.3.0.2003" InstallSize="372968" Size="819200" PerMachine="yes" Permanent="no" Vital="yes" LogPathVariable="WixBundleLog_Setup32" RollbackLogPathVariable="WixBundleRollbackLog_Setup32" InstallCondition="InstallFor950Pro AND NOT VersionNT64" ProductCode="{55A56351-BF8A-40E4-9F61-A0B9713F1CBC}" Language="1033" Version="3.3.0.2003" DisplayInternalUI="no"><MsiProperty Id="ALLUSERS" Value="1" /><MsiProperty Id="ARPSYSTEMCOMPONENT" Value="1" /><MsiProperty Id="MSIFASTINSTALL" Value="7" /><MsiProperty Id="APPLICATIONFOLDER" Value="[InstallFolder]" /><MsiProperty Id="PAYLOADFOLDER" Value="[PayLoadSourceFolder]" /><Provides Key="{55A56351-BF8A-40E4-9F61-A0B9713F1CBC}" Version="3.3.0.2003" DisplayName="Samsung NVM Express Driver 3.3.0.2003" /><RelatedPackage Id="{A2B8FBB1-4884-4AC7-B880-AE2491E1F473}" MaxVersion="3.3.0.2003" MaxInclusive="no" OnlyDetect="no" /><RelatedPackage Id="{A2B8FBB1-4884-4AC7-B880-AE2491E1F473}" MinVersion="3.3.0.2003" MinInclusive="no" OnlyDetect="yes" /><PayloadRef Id="Setup32" /></MsiPackage><MsiPackage Id="Setup32Samsung960Pro" Cache="yes" CacheId="{36AB6526-4CAC-4B6D-9B8C-F5DD4525A4D7}v3.3.0.2003" InstallSize="372968" Size="819200" PerMachine="yes" Permanent="no" Vital="yes" LogPathVariable="WixBundleLog_Setup32Samsung960Pro" RollbackLogPathVariable="WixBundleRollbackLog_Setup32Samsung960Pro" InstallCondition="InstallFor960Pro AND NOT VersionNT64" ProductCode="{36AB6526-4CAC-4B6D-9B8C-F5DD4525A4D7}" Language="1033" Version="3.3.0.2003" DisplayInternalUI="no"><MsiProperty Id="ALLUSERS" Value="1" /><MsiProperty Id="ARPSYSTEMCOMPONENT" Value="1" /><MsiProperty Id="MSIFASTINSTALL" Value="7" /><MsiProperty Id="APPLICATIONFOLDER" Value="[InstallFolder]" /><MsiProperty Id="PAYLOADFOLDER" Value="[PayLoadSourceFolder]" /><Provides Key="{36AB6526-4CAC-4B6D-9B8C-F5DD4525A4D7}" Version="3.3.0.2003" DisplayName="Samsung NVM Express Driver 3.3.0.2003" /><RelatedPackage Id="{1ECD0931-E1B1-4E41-902E-AEEA9E055301}" MaxVersion="3.3.0.2003" MaxInclusive="no" OnlyDetect="no" /><RelatedPackage Id="{1ECD0931-E1B1-4E41-902E-AEEA9E055301}" MinVersion="3.3.0.2003" MinInclusive="no" OnlyDetect="yes" /><PayloadRef Id="Setup32Samsung960Pro" /></MsiPackage><MsiPackage Id="Setup64Samsung960Pro" Cache="yes" CacheId="{DC753502-B4E6-4E0A-90C7-14A264853344}v3.3.0.2003" InstallSize="427696" Size="1212416" PerMachine="yes" Permanent="no" Vital="yes" LogPathVariable="WixBundleLog_Setup64Samsung960Pro" RollbackLogPathVariable="WixBundleRollbackLog_Setup64Samsung960Pro" InstallCondition="InstallFor960Pro AND VersionNT64" ProductCode="{DC753502-B4E6-4E0A-90C7-14A264853344}" Language="1033" Version="3.3.0.2003" DisplayInternalUI="no"><MsiProperty Id="ALLUSERS" Value="1" /><MsiProperty Id="ARPSYSTEMCOMPONENT" Value="1" /><MsiProperty Id="MSIFASTINSTALL" Value="7" /><MsiProperty Id="APPLICATIONFOLDER" Value="[InstallFolder]" /><MsiProperty Id="PAYLOADFOLDER" Value="[PayLoadSourceFolder]" /><Provides Key="{DC753502-B4E6-4E0A-90C7-14A264853344}" Version="3.3.0.2003" DisplayName="Samsung NVM Express Driver 3.3.0.2003" /><RelatedPackage Id="{1ECD0931-E1B1-4E41-902E-AEEA9E055301}" MaxVersion="3.3.0.2003" MaxInclusive="no" OnlyDetect="no" /><RelatedPackage Id="{1ECD0931-E1B1-4E41-902E-AEEA9E055301}" MinVersion="3.3.0.2003" MinInclusive="no" OnlyDetect="yes" /><PayloadRef Id="Setup64Samsung960Pro" /></MsiPackage><MsiPackage Id="Setup32Samsung970Pro" Cache="yes" CacheId="{39A44D96-7AEA-49C4-B1A0-DD9BC74C6413}v3.3.0.2003" InstallSize="372968" Size="819200" PerMachine="yes" Permanent="no" Vital="yes" LogPathVariable="WixBundleLog_Setup32Samsung970Pro" RollbackLogPathVariable="WixBundleRollbackLog_Setup32Samsung970Pro" InstallCondition="InstallFor970Pro AND NOT VersionNT64" ProductCode="{39A44D96-7AEA-49C4-B1A0-DD9BC74C6413}" Language="1033" Version="3.3.0.2003" DisplayInternalUI="no"><MsiProperty Id="ALLUSERS" Value="1" /><MsiProperty Id="ARPSYSTEMCOMPONENT" Value="1" /><MsiProperty Id="MSIFASTINSTALL" Value="7" /><MsiProperty Id="APPLICATIONFOLDER" Value="[InstallFolder]" /><MsiProperty Id="PAYLOADFOLDER" Value="[PayLoadSourceFolder]" /><Provides Key="{39A44D96-7AEA-49C4-B1A0-DD9BC74C6413}" Version="3.3.0.2003" DisplayName="Samsung NVM Express Driver 3.3.0.2003" /><RelatedPackage Id="{870DDEB2-2DBF-4D47-A2A2-C6A6C337A168}" MaxVersion="3.3.0.2003" MaxInclusive="no" OnlyDetect="no" /><RelatedPackage Id="{870DDEB2-2DBF-4D47-A2A2-C6A6C337A168}" MinVersion="3.3.0.2003" MinInclusive="no" OnlyDetect="yes" /><PayloadRef Id="Setup32Samsung970Pro" /></MsiPackage><MsiPackage Id="Setup64Samsung970Pro" Cache="yes" CacheId="{89D55DD5-FE94-497B-B5E5-91915D52DBF2}v3.3.0.2003" InstallSize="427696" Size="1212416" PerMachine="yes" Permanent="no" Vital="yes" RollbackBoundaryBackward="WixDefaultBoundary" LogPathVariable="WixBundleLog_Setup64Samsung970Pro" RollbackLogPathVariable="WixBundleRollbackLog_Setup64Samsung970Pro" InstallCondition="InstallFor970Pro AND VersionNT64" ProductCode="{89D55DD5-FE94-497B-B5E5-91915D52DBF2}" Language="1033" Version="3.3.0.2003" DisplayInternalUI="no"><MsiProperty Id="ALLUSERS" Value="1" /><MsiProperty Id="ARPSYSTEMCOMPONENT" Value="1" /><MsiProperty Id="MSIFASTINSTALL" Value="7" /><MsiProperty Id="APPLICATIONFOLDER" Value="[InstallFolder]" /><MsiProperty Id="PAYLOADFOLDER" Value="[PayLoadSourceFolder]" /><Provides Key="{89D55DD5-FE94-497B-B5E5-91915D52DBF2}" Version="3.3.0.2003" DisplayName="Samsung NVM Express Driver 3.3.0.2003" /><RelatedPackage Id="{870DDEB2-2DBF-4D47-A2A2-C6A6C337A168}" MaxVersion="3.3.0.2003" MaxInclusive="no" OnlyDetect="no" /><RelatedPackage Id="{870DDEB2-2DBF-4D47-A2A2-C6A6C337A168}" MinVersion="3.3.0.2003" MinInclusive="no" OnlyDetect="yes" /><PayloadRef Id="Setup64Samsung970Pro" /></MsiPackage></Chain></BurnManifest>MZ@ !L!This program cannot be run in DOS mode.
185:j:Y]UVtu|-t*u&h訏Yt2Wh蕏YDuWj Y+ȃ3EEEEEuE_^]jhveMZf9u`<PEuOf9uA+PQYYt*@$u!EE3Ɂ8��ËeE2<U
Y__^[]QU3ʼnESV3VSh@66u9VS6V6u#WuSSV6u3{h6Wth6W؅th6WtPjjh6hօtۍEEW딍PPPjhL7W9,I3f9Mj\Xf9Mt fMA+��A=6<OYh SPf&5uWuSP5ƋM_^3[]UEL3Ƀ EVjNEPVu3Juuu4tEMZfu׋H<~ȁ9PEuQ+S33Wyt$;1r +;q@(;r;t@=Eu9=ui=t %W?tBhd7Pt"3EPWWEЋPWWWuփ u3]}؋}0w=A2'}MQhx7jpNօ}3PPP7EPSuN (V }MeQphք}eG}EjPEԋ7PEPvEPjքtCE;EuM;w E;r}օuEPjP}0k֋}p@X֋}܋p8E֋}r,2֋E_[^]ËEt=sPjPEt}PEP73PPPvEPք��EG+];<3A9Mv;rA;MrDM%}3��7PPPvpEPuuք��EEU%,S3C j
290:ueYeuh(hYYh0h,YYuE'u,*E0Ëuj&Y[ËU*t d0@uPOYLjȅu2øMZf9uA<��8PEuf9HuۃxtvՃËUQ^}teEuM3Mk]ËU]jjjËUjj]áÃ=t3VW.1u*V0YuP3jYVY_^ËUQQSVW3ҋ<=tB΍YAu+FuBjPYYtm]RύQAu+ʀ?=AEFI;u^]h?Jh?;55YYjhXwe0"YeMW~VY;uM_3^|i]U;tPyY]ËU;tP^Y]ËUA+уV3;
Y_^[]UMZft3]ËH<3��9PEu f9Q]Pd5D$+d$SVW(衐3PeuEEdVD$u(L$D$3؋Dd$ȋd$Gȋ\$T$Dud$ȋD$r;T$r;Dv N+D$$3+D$؃ʋӋًȋ^h@d5D$l$l$+SVW1E3ʼnEPeuEEEEdËM3,WVU33D$}GET$ڃD$T$D$}GT$ڃD$T$u(L$D$3؋D$d$ȋd$G؋L$T$D$ud$ȋD$r;T$r;D$v N+D$$3+D$$My؃ʋӋًȋOu؃]^_̀@s sË3Ҁ33QL+ȃJQL+ȃ4̃=t7$,$Ã=t$XfftӍ$IU T$|$l$T$D$t<y$$T$,$$T$T$u\$\$UW=wwUfnp۹#σ+3offtftf#uf#DžEЃSf#3+#I#[DžD_Ut93t;DDžt Gufnf:cG@LBu_ø#fft#Ϻf#ufft@ft뽋3��كE8t3_̃=r_fnpۋT$#+o
820:11%1*10151C1g11112-282222223%323?3V3444444(5\5d5}5555556k6C7778k8888S999:}; 162 ::H:O:y=n>v>>>145559919C9U9g9y9999999-;s;;<<<3=B=P=m=u=======0>7>>>>z????L0R021r111242X2c2p2222g3|33333344445'5755566$6C6a666"7@778,888909c999!:}:;;;;_<i<<6====>>>>112A33\44444444Q5]5q5}55556"6?6O6[6j6n777858I8T88)99E::::;;<<L<]<e<u<<<<==S=~======>0>u>>>>>>P?????X/000=1z111222F334p4446O7j7777:;<=>>>>>>>6?;?M?k???<901122V345626R6r6667U777'8j888*9R9m9`3333333333334444 4$45,7\77777899::::\;;;; <@<t<<<<=9999999999999999999999999::::::: :$:(:,:0:4:8:<:@:D:H:L:P:T:X:\:`:d:h:l:p:t:x:|:::::::X;\;`;d;h;l;p;t;x;|;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;<<<<<<< <$<(<,<0<4<8<<<@<D<H<L<P< @<D<H<L<P<T<0$\0`0d0|00000000000000000000001P5T5X5\5`5d5h5777777777X9\9`9d9h9l9p9t9x9|999999999999999999999999999999999::::::: :$:(:,:0:4:8:<:@:D:H:L:P:T:X:\:`:d:h:l:p:t:x:|:::::::::::::::::::::::::::@333333333333344444$4(4,40444777777778888888 8$8(8,8084888<8@8D8H8L8P8T8X8\8`8d8h8l8p8t8x8|88888888888888888888888888888889999999 9$9(9,9094989<9@9P8P1T1X1\1`1d1h1l1p1t1x1|111111111h6l6p6t6`00000000000001111$1,141<1D1L1T1\1d1l1t1|111111111111111112222$2,242<2D2L2T2\2d2l2t2|222222222222222223333$3,343<3D3L3T3\3d3l3t3|333333333333333334444$4,444<4D4L4T4\4d4l4t4|444444444444444445555$5,545<5D5L5T5\5d5l5t5|555555555555555556666$6,646<6D6L6T6\6d6l6t6|666666666666666667777$7,747<7D7L7T7\7d7l7t7|77777777p111111111111222 2(20282@2H2P2X2`2h2p2x22222222222222222333 3(30383@3H3P3X3`3h3p3x33333333333333333444 4(40484@4H4P4X4`4h4p4x44444444444444444555 5(50585@5H5P5X5`5h5p5x55555555555555555666 6(60686@6H6P6X6`6h6p6x66666666666666666777 7(70787@7H7P7X7`7h7p7x77777777777777777888 8(80888@8H8P8X8`8h8p8x8888888882222<<D<L<T<\<d<l<t<|<<<<<<<<<<<<<<<<<==========>> >$>,>D>T>X>h>l>p>t>|>>>>>>>>>>>>??? ?8?H?L?\?`?d?h?p?????????????00,000@0D0H0P0h0x0|0000000000000111(1,10141<1T1d1h1x1|1111111111112222 28267,747X7l7t77777777788$8D8L8X8x88888888889949@9`9h9p9|9999999::$:,:@:H:\:d:l:t:x:|:::::::::::;,;0;8;@;H;L;P;X;l;;;;;;;;;;<<<4<8<T<X<h<<<<<<<<<<=(=H=P=T=p======>0>P>p>>>>>?0?P?\?x?????000000000 0$0(0,040<0D0L0T0\0d0l0t0|000000000000000001111$1,141<1D1L1T1\1d1l1t1|111111111111111112222$2,242<2D2L2T2X2`2d2l2p2233 404@4P4`4x44444449999999::::: :$:(:,:0:4:`❌::;(;H;d;;;;;;<<<MZ@ !L!This program cannot be run in DOS mode.
833:MZ@ !L!This program cannot be run in DOS mode.
863:jY]UVtu|Nt*u&h^Yt2Wh^YD\uWj Y+ȃ3\EEEEEuE_^]jh0teMZf9u`<PEuOf9uA+PQYYt*@$u!EE3X_^]h@hVøHHHHøU$SVjEt)3hVP5uȃu.]h]Y]UY]Uee\VWN@;t
XLhT]U\3ʼnESV3VShT:u9VSUV$u#@WuSSu3{h,UW`@th<UW`@؅thPUW`@tPjjh`Uhօt W\@딍PPPjhUw`W\@9,I3f9Mj\Xf9Mt fMA+��A=T<OYh SPfu@WuSPƋM_^3[H]UEL3Ƀ EVjNEPV@u3uuutEMZfu׋H<~ȁ9PEuQ+S33Wyt$;1r +;q@(;r;t@= Eu9=uit %W?tB hUP`@t"3EPWWEЋPWWWuwփ u3]}؋}0V=A2'}MQhVjp-օ}3PPP7EPSuN V }MeQphք}eG}EjPEԋ7PEPvEPjքtCE;EuM;w E;r}sօuEPjt@Pl@}0J֋}p@7֋}܋p8$֋}r,֋E_[^]ËEt=sPjt@Pd@Et}PEP73PPPvEPք��EG+];<3A9Mv;rA;MrDM%}3��7PPPvpEPuueք��EEU%,S3C j
952:uh5YeuhAhAYYhAhAYYuE'u,*E0Ëuj&Y/ËUe*t d0@u@P@OYAj@ȅu2øMZf9uA<��8PEuf9Huۃxt\A^}t3ʼnEeEPu\@M3ӟ]ËU]jjjËUjj]̡Ã=t3VW.-2u*V0YuPP73jYVY_^ËUQQSVW3ҋ<=tB΍YAu+FuBjPYYtm]RύAu+ʀ?=AEt7jPYYt0WuVuAEj0E9EY?uS)jYY3jY_^[]3PPPPPp̋UVtWPYuVY_^]ËUQ\3ʼnEVW~V\AY;uM_3^]U;tPyY]ËU;tP^Y]h{hl525'YYjhĨe0"YeM
Y_^[]UMZft3]ËH<3��9PEu f9Q]VD$u(L$D$3؋Dd$ȋd$Gȋ\$T$Dud$ȋD$r;T$r;Dv N+D$$3+D$؃ʋӋًȋ^had5D$l$l+SVW\1E3ʼnEPeuEEEEdËM3 WVU33D$}GET$ڃD$T$D$}GT$ڃD$T$u(L$D$3؋D$d$ȋd$G؋L$T$D$ud$ȋD$r;T$r;Dv N+D$$3+D$$My؃ʋӋًȋOu؃]^_̀@s sË3Ҁ33QL+ȃ QL+ȃ ̃=t7$,$Ã=t$XfftӍ$IU T$|$l$T$D$t<y$$T$,$$T$T$u\$\$UW=wwUfnp۹#σ+3offtftf#uf#DžEЃSf#3+#I#[DžD_Ut93t;DDžt Gufnf:cG@LBu_ø#fft#Ϻf#ufft@ft뽋3��كE8t3_̃=r_fnpۋT$#+o
Ikr|Nyt^=EXd^r5)'Vr%]TQ"ΥU?uBvxJAY_hnώp[*g;G{K@U-fI$~fRQVՆ pwPʥD$ζɼ5ؙe'ќB1[V$+կnZW0qL)΋}qΦ`\>f^TviE1"BkN;/"f-@4i4X$o.Zy~E7J[GNfwzvip[1tT8G@TQ3|PL<ݥv6TU1jQl=|I[*:R{ufʖt􂈧Iɠ̚*t7+`\NCL^3b Ecᓤ"UhVyb'7jN=#4V}["0Cye||AttUA+^qRSl)6v8-x7&@#"F0TGg84"<<UE۪qzI@$"ꋘQphwnlvDhmqI^.D;acS_M4KVq4̎@,4ءyؙў"'9Tg#eXD<0mѫeIz:;mw36Җ<8:>aN0\e9VwC-Ϣτ@zX0go~mcLY. c;ӇOFjd!;N2SUtxy-7hQ;ɪ܃f.ٶTLp{AHXǼG<AH(v#p0+B'UTTc ;QʍO$)U+T['FӜX#a9ek,O:}ŴBnF$ѥT3#*"2$a'n "ILj|LXN!0RXJBGC.B;SAZ#`6pn
eyd2O|)%~{xmPT2YW"ICĈIE8-6l3&̈́c)l*��eZ!TP^I\z=P[nA=Z'fsmlds6B^EaY6ly:ѣG(lnUy]ஷ5VNҕ+8~Fjm]q=aÜ}5es,\]djjRV*eo>fc~v ",6ޏSخaJ_'K\ԅ%T޽z x!BKBxضsa4W.bJCi%D*ohHCNn$RbOO1´zO{qU]70@Xѕ+T^pzRKh,;SN���AfrbBfL@!ecue9
1615:</WixLocalization>MZ@ !L!This program cannot be run in DOS mode.
2069:HH_艰HH9H(HtH!HLHzH(@SH0HHL$ AHHH\$(HtuHHKu HHH0[Ht H!H@SH@HD$ HHL$(pHtH#HLD$0HT$(HH\$0Htu9HtHH [H3H [HHHhHpHx AWH03HHHuN衺HtAuADd$(H#Hd$ AL3ҋHcu&N3OHHHHHtAL3ҋωl$(HD$ uMHFH#AH\$@Hl$HHt$PH|$XH0A_HHHhHpHx AWH@3HHHuM衹HtAuADHd$8Hd$0d$(Hd$ H#AL3ҋHcuM3XHGHHtHd$8Hd$0AL3ҋωl$(HD$ uLHEH#AH\$PHlB3H(E3APpH(HurJ7HHtH3H(H(Hu:JHYHtH3H(@SH 3HH3HOH7HoHHH [EH\Hl$Ht$WH 3HHH+ًHHH;HGHtHHtHH;rH\$0Hl$8Ht$@H _H\WH 3HHH;suHHtH;rH\$0H _H\Ht$DD$WATAUAVAWH@EDEum3MZfu[Lc@<LA8PEuKA@=t =t3(Av*3A9AxtT 6HHD$ LHt$(LHD$8H|$ H;rv3H9uH;rbHH3HH
3UtH [H\Ht$H|$UATAUAVAWHH@3HHMDH]H9@uH9HuDL5ITCiLHuH<H3��9PEu f9QHSH HHIH;
eW,MZ@ !L!This program cannot be run in DOS mode.
`@؃@=@uhpR@`@Yv34 =@ujj`@Y3hS@@$@5܃@@h@h@h@`@@>Ydjh(f3ۉ]dP@3t;u3F3F95@u
ā@f@f@f%@f-@ȁ@E@E��@́@��@Ā@@@@ԃ@=ԃ@}vjXk̀@h e@]U jt)@
t@_^]3Ã=@t3Vjj `@YYV|`@@@ujX^Ã&3^jhhf@Ue5@5`@։Eu`@YeYe5@։E5@։EEPEP5|`@P}u֣@u֣@E
6566:44.4y4~444444444444444444445`$1122 5$5|55<6@6\6`66 0000 0$00040@0D0P0T0MZ@ !L!This program cannot be run in DOS mode.
6900:}}utvKYtuVYYhHRtA8csmu9xu3x pHtQȴeRp豱E@RÐڮjhQ3ۋEHt8t3QhXvQUMyeVRQSqHHEsQÐhl9q9ujQuuPU�]Ë@u,}x]ujpYYt2jWYYt$HPQYYE3Ʌ��M3Ʌ��Mq@��Mq`Y_^[]ÐUMZfvcH<3��9PEu f9Q]Ëj733333eT3ۉU}zxErˉM9Jv7k};D7}Y};D}IkD0@E��EPRSW]]wUSVWjRhBQ_^[]%Q+t3jXMAE$0,Xa9] t&BE��+WHHXMjXej
7173:>VWǍVu8Ou _^`_^U)]鿭VjV语Y^qQYUQEPhp?jPth?uPtЋ]mscoree.dllCorExitProcessUYPh?^Ye=4<8}5T=P׋u؅5P׋u}}܃};rwjP9t;rg7PjP5T5P։E5P֋M9M9Eu띐;;Eu)4@t@tPV+YYEfYjhpC*YY3}j3Y!}3u;5
12559:0000000000000000000000000000000000000000000000000105000000000000}}MZ@ !L!This program cannot be run in DOS mode.
12587:H$8H_^]@USVATAWH$p&H+H9H3H%3LL$H3DCLDaHuDLL$0L&H7HH$&CLHL$0AH\$ tLHH0HH0LL$0LHrHHHHL$&LH\HL$`3A HLD$`3ID$` Aօu0S=At#F=BtHH03LlHH0LL$0LHKH2LHL$0AH\$ t&LHH0HH0LHL$0AH\$ t1LHH0Z(HH0DHH00L$&H_Ht HH$&EËH%H3RHĐ&A_A\^[]@UVATAVAWH$H+H5H3HHMLHL$P3AHE3LD$PIHD$E3HD$DHD$ ?s|$@hHD$DLL$@HHD$(HE3HH$D$DHD$ Hϋ+|$@H$@HD$Ld$0DCE3IHD$(HD$ L$TL$LD$PIH#L+B+Huu0HLL+B+HuthAIHDL|$ AIHAH$H$HH3HA_A^A\^]A3H3H\H|$3IDDHt2HD$(L+Ht E fEtfDHAzIf9AHtLH\H|$HI;w3øW%%%%%%%%%~%p%b%<%.%%r%d%%%%%%%%%%%%<%% %%%%%%%%%%t%f,y$ -L-H,HɃv%%9��pffHL$L\M3LT$L+MBeL%M;sfAMAM;uL$L\H%H(MZf9t38Hc;H
HMHȁ9PEuf9Au3��v+=9H(7H(2@SH H(F+H _øMZf9`t3Hc
12594:L;rAH(E;r3H\WH HH=\H4t"H+HHHt@$Ѓ3H\$0H _H��MZft3HcH<H3��9PEu f9Q%%%H\$ UHH H|&HeH2-+H;uoHMHEHE(+HD$@HtHLD$@HT$8HHL$8TH*HL$@BHHH [H(GH(H\WH HH=HHtH;rH\$0H _H\WH HH=xHHtH;rH\$0H _%J%<%.% %%%%%%%%%%|%n%`%:%,%%%%%%@UH HHHH ]@UH HH3Ɂ8��H ]@UH cH ]Fw.wwwvvvvvvZwFv.v~~~vvuuuuuuuxu~~|~@|d~V~L~D~ ~~}}}}}|}r}d}L}@}2}}||||||||||x|n|d|X|L|6|(||{|r~{{w{~{b{H{.{{zzwztzXz>z z
cosair@DESKTOP-1IUHAB1:~/_combined.bin.extracted$
 

Nice — that BurnManifest you pasted shows the MSI payloads are embedded (Setup64/Setup32, etc.) inside an attached Wix container, so the driver installer is indeed in combined.bin — good news. That means we can carve the embedded payload(s) out and extract the MSIs.
Two short choices now:
  • A — Continue with carving/extracting the embedded container (I’ll give exact commands). This will likely yield SamsungInstaller64.msi / SamsungInstaller32.msi that you can 7‑Zip/extract and get the .inf/.sys files.
  • B — Simpler fallback: run the Samsung EXE on any Windows machine that has an NVMe (or temporarily attach the NVMe), then run Export‑WindowsDriver to copy the installed INF/SYS to a USB. This is usually the least‑fragile route if the EXE was designed to unpack only when it sees the device.
If you want to continue with A (carve + extract), do these three quick discovery commands in WSL (paste each line, press Enter). They will print byte offsets where signatures/names occur — paste the outputs here.
cd /mnt/c/Temp/SamsungExtract

find byte offsets for zip/MSI and PE headers​

grep -a -b $'\x50\x4b\x03\x04' combined.bin || true
grep -a -b $'\x4d\x5a' combined.bin || true

find the text offset for the MSI filename referenced in the manifest​

grep -a -b 'SamsungInstaller64.msi' combined.bin || true
What I will look for in your reply
  • One or more offsets like "123456:PK..." (from the first command) or "833:MZ..." (from the second) and the offset for 'SamsungInstaller64.msi'. Paste those lines exactly.
How I’ll use that to carve
  • If the manifest gave a container FileSize (it did: WixAttachedContainer FileSize="3025380"), and we find the container start offset (for example OFFSET), we can carve that exact region into a file and try to extract it:

carve the attached container (replace OFFSET with the actual number)​

dd if=/mnt/c/Temp/SamsungExtract/combined.bin of=~/carved_container.bin bs=1 skip=OFFSET count=3025380 status=progress
Then test the carved file and extract any MSI inside:
file ~/carved_container.bin
7z x ~/carved_container.bin -o~/carved_extracted
If 7‑Zip extracts MSI(s), extract the MSI(s):
7z x ~/carved_extracted/SamsungInstaller64.msi -o~/msi_contents
find ~/msi_contents -iname '.inf' -o -iname '.sys' -print
Then copy the driver folder back to Windows (USB) so you can use DISM in your rescue environment:
cp -r ~/msi_contents /mnt/c/Temp/SamsungDriver

(then in Windows you can copy C:\Temp\SamsungDriver to USB)​

If grep shows multiple candidate MZ/PK offsets and you’re unsure which to carve, paste them here and I’ll pick the best one(s) and give the exact dd command(s) with counts. If none of the grep commands return anything useful, we’ll switch to the Export‑WindowsDriver fallback (Option B).
Which do you want to do now?
  • Run the three grep commands above and paste the output (recommended), or tell me you prefer the Export‑WindowsDriver route and I’ll give the exact PowerShell steps to run on a working Windows machine.
 

@ChatGPT


cosair@DESKTOP-1IUHAB1:~/_combined.bin.extracted$ cd /mnt/c/Temp/SamsungExtract
cosair@DESKTOP-1IUHAB1:/mnt/c/Temp/SamsungExtract$ grep -a -b $'\x50\x4b\x03\x04' combined.bin || true
rep -a -b $'\x4d\x5a' combined.bin || truecosair@DESKTOP-1IUHAB1:/mnt/c/Temp/SamsungExtract$ grep -a -b $'\x4d\x5a' combined.bin || true
0:<?xml version="1.0" encoding="utf-8"?><BurnManifest xmlns="http://schemas.microsoft.com/wix/2008/Burn"><Log PathVariable="WixBundleLog" Prefix="Samsung_NVM_Express_Driver" Extension="log" /><RelatedBundle Id="{2C81F0BB-1891-4E83-B71A-5160BA33D985}" Action="Upgrade" /><Variable Id="InstallFolder" Value="[ProgramFiles6432Folder]Samsung" Type="string" Hidden="no" Persisted="no" /><Variable Id="InstallFolder2" Value="[WindowsVolume]Database" Type="string" Hidden="no" Persisted="no" /><Variable Id="InstallFor950Pro" Value="0" Type="numeric" Hidden="no" Persisted="yes" /><Variable Id="InstallFor960Pro" Value="0" Type="numeric" Hidden="no" Persisted="yes" /><Variable Id="InstallFor970Pro" Value="0" Type="numeric" Hidden="no" Persisted="yes" /><Variable Id="WixBundleName" Hidden="no" Persisted="yes" /><Variable Id="WixBundleOriginalSource" Hidden="no" Persisted="yes" /><Variable Id="WixBundleOriginalSourceFolder" Hidden="no" Persisted="yes" /><Variable Id="WixBundleLastUsedSource" Hidden="no" Persisted="yes" /><UX><Payload Id="WixExtendedBootstrapperApplication.RtfLicense" FilePath="wixextba.dll" FileSize="365056" Hash="9F10260B4E0AD03FF9FD0BF74A67C8EE9166DD18" Packaging="embedded" SourcePath="u0" /><Payload Id="pay4E55814D3465BD825A900D4E476A7FF5" FilePath="LanguageStrResourceDll.dll" FileSize="12800" Hash="6493DF4A2E80E4F63B40E3C38D054230DD1D2BA6" Packaging="embedded" SourcePath="u1" /><Payload Id="pay0BDF3F8E435D28361663B09228DB8D10" FilePath="bafunctions.dll" FileSize="118784" Hash="66508881D96783365E8B3621E8C429E6D20D7627" Packaging="embedded" SourcePath="u2" /><Payload Id="pay238E42762165CEDC4EA0F0A3251B6002" FilePath="LogoSide.png" FileSize="73240" Hash="C44B67E85D4E3A57C21376509951B91E5E048274" Packaging="embedded" SourcePath="u3" /><Payload Id="pay02C4439962C5537EAD143C98CA74A90C" FilePath="Samsung_Logo.png" FileSize="1932" Hash="C4A1945B4993C46099ACB527CBEAB5404368E539" Packaging="embedded" SourcePath="u4" /><Payload Id="pay22B5552D4B727F05823B5978B6FC175A" FilePath="x86\Uninstaller.bat" FileSize="1614" Hash="66615F6B570F467FC1032686E01E40883583BEBB" Packaging="embedded" SourcePath="u5" /><Payload Id="pay2A5C56CBDEA2EB7586D3F3CAC4FC7ED1" FilePath="x64\UninstallerRemoveRescan.bat" FileSize="617" Hash="F8F742773B2FE74CFD6B972019A02DAA85FD1E50" Packaging="embedded" SourcePath="u6" /><Payload Id="pay37D44CC96067E7467F68165214F1F3E4" FilePath="thm.wxl" FileSize="6546" Hash="B2684EE200043BC6701878DFD89C214754B73395" Packaging="embedded" SourcePath="u7" /><Payload Id="pay6EC8ED614A08C0C2814A1EFED57891BF" FilePath="x64\msvcr120.dll" FileSize="963232" Hash="62CB65A1D79E2C5ADA0C7BFC04C18693567C90D0" Packaging="embedded" SourcePath="u8" /><Payload Id="pay63EF8BBEE9F2C8FFD6A4F2E07807539C" FilePath="x86\SamsungFinder.exe" FileSize="72704" Hash="145C70117478EF095A9FBDEAF9FBF6F9DCBAE7B7" Packaging="embedded" SourcePath="u9" /><Payload Id="pay0D95A40934D4350B284AF9401A942682" FilePath="x86\msvcr120.dll" FileSize="970912" Hash="F19E9D8317161EDC7D3E963CC0FC46BD5E4A55A1" Packaging="embedded" SourcePath="u10" /><Payload Id="EULA-en_US" FilePath="1033\License.rtf" FileSize="39598" Hash="86DFB04B1E6B2005ADA603CB68AF787EE4A7005A" Packaging="embedded" SourcePath="u11" /><Payload Id="EULA-kr_KR" FilePath="1042\License.rtf" FileSize="107818" Hash="42EFEB7CB16395F24985484BB9C3ED3E8E35533F" Packaging="embedded" SourcePath="u12" /><Payload Id="EULA-de_DE" FilePath="1031\License.rtf" FileSize="45415" Hash="138F12A36801A6C8DC3FD8E18035501E6990D286" Packaging="embedded" SourcePath="u13" /><Payload Id="EULA-es_ES" FilePath="3082\License.rtf" FileSize="42121" Hash="0DDE63D195645396AE233E4C8B2345F088AD5E5F" Packaging="embedded" SourcePath="u14" /><Payload Id="EULA-fr_FR" FilePath="1036\License.rtf" FileSize="45905" Hash="8F96CBF48FD3FA7C8D5F7D1DFADCA935E76154B5" Packaging="embedded" SourcePath="u15" /><Payload Id="EULA-it_IT" FilePath="1040\License.rtf" FileSize="44009" Hash="66925580D38D03A1F9E62495CB14C13AB3D86B52" Packaging="embedded" SourcePath="u16" /><Payload Id="EULA-ja_JA" FilePath="1041\License.rtf" FileSize="76778" Hash="40C3A60A9D4229BEB5907CA2720E0B4AA646A47F" Packaging="embedded" SourcePath="u17" /><Payload Id="EULA-ru_RU" FilePath="1049\License.rtf" FileSize="101897" Hash="F7196E14032837816422A2FE72EA9173DADB471E" Packaging="embedded" SourcePath="u18" /><Payload Id="EULA-zh_CN" FilePath="2052\License.rtf" FileSize="66170" Hash="D6E779034A470B7191299DC5295CF0A38DCAED1B" Packaging="embedded" SourcePath="u19" /><Payload Id="EULA-pt_PT" FilePath="2070\License.rtf" FileSize="42864" Hash="03D695832B785F288B08AF66369E71F5DB61C26C" Packaging="embedded" SourcePath="u20" /><Payload Id="Licensefile" FilePath="license.txt" FileSize="1324" Hash="E76CF6925E4AEB8CA5893A4C50822A4F81EB0614" Packaging="embedded" SourcePath="u21" /><Payload Id="pay8D808CAB1BE0B77B63CFFC21BE0A7985" FilePath="thm.xml" FileSize="14066" Hash="5508AE5A30C0F02F1FF84CBD88759A9D591B6EA6" Packaging="embedded" SourcePath="u22" /><Payload Id="pay9197360B6F52E0411712FCC415C62EA4" FilePath="Logo.png" FileSize="880" Hash="7AC786C5C6A7AFFE7B318B9A8E5869586BECBC67" Packaging="embedded" SourcePath="u23" /><Payload Id="pay8D3AAAB4ADC107744F4D0A670E63B940" FilePath="license.rtf" FileSize="39598" Hash="86DFB04B1E6B2005ADA603CB68AF787EE4A7005A" Packaging="embedded" SourcePath="u24" /><Payload Id="payCE93F1637FCE9D49C985C1D29204F86D" FilePath="x64\SamsungFinder.exe" FileSize="78336" Hash="BE8D8164BF090823E891482B09171E5DBACD807B" Packaging="embedded" SourcePath="u25" /><Payload Id="payA72DAF1CACAA2F67306BDC28FE09FC2B" FilePath="x64\Uninstaller.bat" FileSize="1614" Hash="66615F6B570F467FC1032686E01E40883583BEBB" Packaging="embedded" SourcePath="u26" /><Payload Id="pay91E7308ABF3147BF5DB6B818F7C1ADB9" FilePath="x86\UninstallerRemoveRescan.bat" FileSize="617" Hash="F8F742773B2FE74CFD6B972019A02DAA85FD1E50" Packaging="embedded" SourcePath="u27" /><Payload Id="payAB1D07DC50674E4D2D7090EFD66F1A76" FilePath="x64\RepairUpdatePnP.bat" FileSize="2499" Hash="16AE256CD1F2817B4F2907F7C9CFC3EE5C8BB1C4" Packaging="embedded" SourcePath="u28" /><Payload Id="pay9FD591C172DF943EE76A211DBA110AA7" FilePath="x86\RepairUpdatePnP.bat" FileSize="2499" Hash="16AE256CD1F2817B4F2907F7C9CFC3EE5C8BB1C4" Packaging="embedded" SourcePath="u29" /><Payload Id="str-en_US" FilePath="1033\thm.wxl" FileSize="6546" Hash="B2684EE200043BC6701878DFD89C214754B73395" Packaging="embedded" SourcePath="u30" /><Payload Id="str-kr_KR" FilePath="1042\thm.wxl" FileSize="7082" Hash="51286741E1B2587F26F0A83FF898CFC0BC09EE86" Packaging="embedded" SourcePath="u31" /><Payload Id="str-de_DE" FilePath="1031\thm.wxl" FileSize="7245" Hash="BA6D1A7972C4060D24270EB71B424E7C95012772" Packaging="embedded" SourcePath="u32" /><Payload Id="str-es_ES" FilePath="3082\thm.wxl" FileSize="7016" Hash="D2F7B357C38F045492E5A083EE54E3AB58A3B86E" Packaging="embedded" SourcePath="u33" /><Payload Id="str-fr_FR" FilePath="1036\thm.wxl" FileSize="7177" Hash="4688E85751B8112B91CC12EB8B76623215A52AAB" Packaging="embedded" SourcePath="u34" /><Payload Id="str-it_IT" FilePath="1040\thm.wxl" FileSize="6987" Hash="88844B0B70F6A5CE17619D327CD4548480B6C859" Packaging="embedded" SourcePath="u35" /><Payload Id="str-ja_JA" FilePath="1041\thm.wxl" FileSize="8098" Hash="820AEAE32E44D8355A80410AF3F3508D9304EC17" Packaging="embedded" SourcePath="u36" /><Payload Id="str-ru_RU" FilePath="1049\thm.wxl" FileSize="9007" Hash="FC122450897392DA791B7CFA72632F5B99B643B2" Packaging="embedded" SourcePath="u37" /><Payload Id="str-zh_CN" FilePath="2052\thm.wxl" FileSize="6135" Hash="3C120776F9BE15C3E63550CC05EC7200D2DDB988" Packaging="embedded" SourcePath="u38" /><Payload Id="str-pt_PT" FilePath="2070\thm.wxl" FileSize="6957" Hash="AFD5D9577B7EE6D32DADE72033EB11A15BF28A63" Packaging="embedded" SourcePath="u39" /><Payload Id="ux018A3672B47BC33C533DBA884702200B" FilePath="BootstrapperApplicationData.xml" FileSize="9820" Hash="48E12E3EABA0F71BFC5CE7C19EC3134ADFE24080" Packaging="embedded" SourcePath="u40" /></UX><Container Id="WixAttachedContainer" FileSize="3025380" Hash="E0C8BA3BDE63836B6A7E63FAF6B315EEA4739A4D" FilePath="Samsung NVM Express Driver.exe" AttachedIndex="1" Attached="yes" Primary="yes" /><Payload Id="Setup64" FilePath="SamsungInstaller64.msi" FileSize="1212416" Hash="4B3066C4021ED54F784013AB0CECE1F17CCF829B" Packaging="embedded" SourcePath="a0" Container="WixAttachedContainer" /><Payload Id="Setup32" FilePath="SamsungInstaller32.msi" FileSize="819200" Hash="526AB42C1A0A218F8026A11F9524ACBFF7A0B761" Packaging="embedded" SourcePath="a1" Container="WixAttachedContainer" /><Payload Id="Setup32Samsung960Pro" FilePath="Samsung960ProInstaller32.msi" FileSize="819200" Hash="07711CF386EFCA3733380BD56A54F4EDA6B0B7A8" Packaging="embedded" SourcePath="a2" Container="WixAttachedContainer" /><Payload Id="Setup64Samsung960Pro" FilePath="Samsung960ProInstaller64.msi" FileSize="1212416" Hash="FE578D331AC661CA293711CE9A111CE438D7D6FC" Packaging="embedded" SourcePath="a3" Container="WixAttachedContainer" /><Payload Id="Setup32Samsung970Pro" FilePath="Samsung970ProInstaller32.msi" FileSize="819200" Hash="5C79214CBA555E85C69155A6F6314922A374A81A" Packaging="embedded" SourcePath="a4" Container="WixAttachedContainer" /><Payload Id="Setup64Samsung970Pro" FilePath="Samsung970ProInstaller64.msi" FileSize="1212416" Hash="7D11AFEEBDF730B613A81CEB08B9D5534E821DF2" Packaging="embedded" SourcePath="a5" Container="WixAttachedContainer" /><RollbackBoundary Id="WixDefaultBoundary" Vital="yes" /><Registration Id="{ff94c273-58d5-40b5-b03a-9bd41d5cff1e}" ExecutableName="Samsung NVM Express Driver.exe" PerMachine="yes" Tag="" Version="3.3.0.2003" ProviderKey="{ff94c273-58d5-40b5-b03a-9bd41d5cff1e}"><Arp Register="yes" DisplayName="Samsung NVM Express Driver" DisplayVersion="3.3.0.2003" Publisher="Samsung Electronics Co., Ltd" HelpLink="Mobile | TV | Home Electronics | Home Appliances | Samsung US | Samsung US" AboutUrl="http://www.samsung.com" UpdateUrl="http://www.samsung.com" DisableModify="yes" /></Registration><Chain DisableSystemRestore="yes"><MsiPackage Id="Setup64" Cache="yes" CacheId="{6D29AC99-C940-4FA7-AAD0-309C67F7301A}v3.3.0.2003" InstallSize="427696" Size="1212416" PerMachine="yes" Permanent="no" Vital="yes" RollbackBoundaryForward="WixDefaultBoundary" LogPathVariable="WixBundleLog_Setup64" RollbackLogPathVariable="WixBundleRollbackLog_Setup64" InstallCondition="InstallFor950Pro AND VersionNT64" ProductCode="{6D29AC99-C940-4FA7-AAD0-309C67F7301A}" Language="1033" Version="3.3.0.2003" DisplayInternalUI="no"><MsiProperty Id="ALLUSERS" Value="1" /><MsiProperty Id="ARPSYSTEMCOMPONENT" Value="1" /><MsiProperty Id="MSIFASTINSTALL" Value="7" /><MsiProperty Id="APPLICATIONFOLDER" Value="[InstallFolder]" /><MsiProperty Id="PAYLOADFOLDER" Value="[PayLoadSourceFolder]" /><Provides Key="{6D29AC99-C940-4FA7-AAD0-309C67F7301A}" Version="3.3.0.2003" DisplayName="Samsung NVM Express Driver 3.3.0.2003" /><RelatedPackage Id="{A2B8FBB1-4884-4AC7-B880-AE2491E1F473}" MaxVersion="3.3.0.2003" MaxInclusive="no" OnlyDetect="no" /><RelatedPackage Id="{A2B8FBB1-4884-4AC7-B880-AE2491E1F473}" MinVersion="3.3.0.2003" MinInclusive="no" OnlyDetect="yes" /><PayloadRef Id="Setup64" /></MsiPackage><MsiPackage Id="Setup32" Cache="yes" CacheId="{55A56351-BF8A-40E4-9F61-A0B9713F1CBC}v3.3.0.2003" InstallSize="372968" Size="819200" PerMachine="yes" Permanent="no" Vital="yes" LogPathVariable="WixBundleLog_Setup32" RollbackLogPathVariable="WixBundleRollbackLog_Setup32" InstallCondition="InstallFor950Pro AND NOT VersionNT64" ProductCode="{55A56351-BF8A-40E4-9F61-A0B9713F1CBC}" Language="1033" Version="3.3.0.2003" DisplayInternalUI="no"><MsiProperty Id="ALLUSERS" Value="1" /><MsiProperty Id="ARPSYSTEMCOMPONENT" Value="1" /><MsiProperty Id="MSIFASTINSTALL" Value="7" /><MsiProperty Id="APPLICATIONFOLDER" Value="[InstallFolder]" /><MsiProperty Id="PAYLOADFOLDER" Value="[PayLoadSourceFolder]" /><Provides Key="{55A56351-BF8A-40E4-9F61-A0B9713F1CBC}" Version="3.3.0.2003" DisplayName="Samsung NVM Express Driver 3.3.0.2003" /><RelatedPackage Id="{A2B8FBB1-4884-4AC7-B880-AE2491E1F473}" MaxVersion="3.3.0.2003" MaxInclusive="no" OnlyDetect="no" /><RelatedPackage Id="{A2B8FBB1-4884-4AC7-B880-AE2491E1F473}" MinVersion="3.3.0.2003" MinInclusive="no" OnlyDetect="yes" /><PayloadRef Id="Setup32" /></MsiPackage><MsiPackage Id="Setup32Samsung960Pro" Cache="yes" CacheId="{36AB6526-4CAC-4B6D-9B8C-F5DD4525A4D7}v3.3.0.2003" InstallSize="372968" Size="819200" PerMachine="yes" Permanent="no" Vital="yes" LogPathVariable="WixBundleLog_Setup32Samsung960Pro" RollbackLogPathVariable="WixBundleRollbackLog_Setup32Samsung960Pro" InstallCondition="InstallFor960Pro AND NOT VersionNT64" ProductCode="{36AB6526-4CAC-4B6D-9B8C-F5DD4525A4D7}" Language="1033" Version="3.3.0.2003" DisplayInternalUI="no"><MsiProperty Id="ALLUSERS" Value="1" /><MsiProperty Id="ARPSYSTEMCOMPONENT" Value="1" /><MsiProperty Id="MSIFASTINSTALL" Value="7" /><MsiProperty Id="APPLICATIONFOLDER" Value="[InstallFolder]" /><MsiProperty Id="PAYLOADFOLDER" Value="[PayLoadSourceFolder]" /><Provides Key="{36AB6526-4CAC-4B6D-9B8C-F5DD4525A4D7}" Version="3.3.0.2003" DisplayName="Samsung NVM Express Driver 3.3.0.2003" /><RelatedPackage Id="{1ECD0931-E1B1-4E41-902E-AEEA9E055301}" MaxVersion="3.3.0.2003" MaxInclusive="no" OnlyDetect="no" /><RelatedPackage Id="{1ECD0931-E1B1-4E41-902E-AEEA9E055301}" MinVersion="3.3.0.2003" MinInclusive="no" OnlyDetect="yes" /><PayloadRef Id="Setup32Samsung960Pro" /></MsiPackage><MsiPackage Id="Setup64Samsung960Pro" Cache="yes" CacheId="{DC753502-B4E6-4E0A-90C7-14A264853344}v3.3.0.2003" InstallSize="427696" Size="1212416" PerMachine="yes" Permanent="no" Vital="yes" LogPathVariable="WixBundleLog_Setup64Samsung960Pro" RollbackLogPathVariable="WixBundleRollbackLog_Setup64Samsung960Pro" InstallCondition="InstallFor960Pro AND VersionNT64" ProductCode="{DC753502-B4E6-4E0A-90C7-14A264853344}" Language="1033" Version="3.3.0.2003" DisplayInternalUI="no"><MsiProperty Id="ALLUSERS" Value="1" /><MsiProperty Id="ARPSYSTEMCOMPONENT" Value="1" /><MsiProperty Id="MSIFASTINSTALL" Value="7" /><MsiProperty Id="APPLICATIONFOLDER" Value="[InstallFolder]" /><MsiProperty Id="PAYLOADFOLDER" Value="[PayLoadSourceFolder]" /><Provides Key="{DC753502-B4E6-4E0A-90C7-14A264853344}" Version="3.3.0.2003" DisplayName="Samsung NVM Express Driver 3.3.0.2003" /><RelatedPackage Id="{1ECD0931-E1B1-4E41-902E-AEEA9E055301}" MaxVersion="3.3.0.2003" MaxInclusive="no" OnlyDetect="no" /><RelatedPackage Id="{1ECD0931-E1B1-4E41-902E-AEEA9E055301}" MinVersion="3.3.0.2003" MinInclusive="no" OnlyDetect="yes" /><PayloadRef Id="Setup64Samsung960Pro" /></MsiPackage><MsiPackage Id="Setup32Samsung970Pro" Cache="yes" CacheId="{39A44D96-7AEA-49C4-B1A0-DD9BC74C6413}v3.3.0.2003" InstallSize="372968" Size="819200" PerMachine="yes" Permanent="no" Vital="yes" LogPathVariable="WixBundleLog_Setup32Samsung970Pro" RollbackLogPathVariable="WixBundleRollbackLog_Setup32Samsung970Pro" InstallCondition="InstallFor970Pro AND NOT VersionNT64" ProductCode="{39A44D96-7AEA-49C4-B1A0-DD9BC74C6413}" Language="1033" Version="3.3.0.2003" DisplayInternalUI="no"><MsiProperty Id="ALLUSERS" Value="1" /><MsiProperty Id="ARPSYSTEMCOMPONENT" Value="1" /><MsiProperty Id="MSIFASTINSTALL" Value="7" /><MsiProperty Id="APPLICATIONFOLDER" Value="[InstallFolder]" /><MsiProperty Id="PAYLOADFOLDER" Value="[PayLoadSourceFolder]" /><Provides Key="{39A44D96-7AEA-49C4-B1A0-DD9BC74C6413}" Version="3.3.0.2003" DisplayName="Samsung NVM Express Driver 3.3.0.2003" /><RelatedPackage Id="{870DDEB2-2DBF-4D47-A2A2-C6A6C337A168}" MaxVersion="3.3.0.2003" MaxInclusive="no" OnlyDetect="no" /><RelatedPackage Id="{870DDEB2-2DBF-4D47-A2A2-C6A6C337A168}" MinVersion="3.3.0.2003" MinInclusive="no" OnlyDetect="yes" /><PayloadRef Id="Setup32Samsung970Pro" /></MsiPackage><MsiPackage Id="Setup64Samsung970Pro" Cache="yes" CacheId="{89D55DD5-FE94-497B-B5E5-91915D52DBF2}v3.3.0.2003" InstallSize="427696" Size="1212416" PerMachine="yes" Permanent="no" Vital="yes" RollbackBoundaryBackward="WixDefaultBoundary" LogPathVariable="WixBundleLog_Setup64Samsung970Pro" RollbackLogPathVariable="WixBundleRollbackLog_Setup64Samsung970Pro" InstallCondition="InstallFor970Pro AND VersionNT64" ProductCode="{89D55DD5-FE94-497B-B5E5-91915D52DBF2}" Language="1033" Version="3.3.0.2003" DisplayInternalUI="no"><MsiProperty Id="ALLUSERS" Value="1" /><MsiProperty Id="ARPSYSTEMCOMPONENT" Value="1" /><MsiProperty Id="MSIFASTINSTALL" Value="7" /><MsiProperty Id="APPLICATIONFOLDER" Value="[InstallFolder]" /><MsiProperty Id="PAYLOADFOLDER" Value="[PayLoadSourceFolder]" /><Provides Key="{89D55DD5-FE94-497B-B5E5-91915D52DBF2}" Version="3.3.0.2003" DisplayName="Samsung NVM Express Driver 3.3.0.2003" /><RelatedPackage Id="{870DDEB2-2DBF-4D47-A2A2-C6A6C337A168}" MaxVersion="3.3.0.2003" MaxInclusive="no" OnlyDetect="no" /><RelatedPackage Id="{870DDEB2-2DBF-4D47-A2A2-C6A6C337A168}" MinVersion="3.3.0.2003" MinInclusive="no" OnlyDetect="yes" /><PayloadRef Id="Setup64Samsung970Pro" /></MsiPackage></Chain></BurnManifest>MZ@ !L!This program cannot be run in DOS mode.
125518:j:Y]UVtu|-t*u&h訏Yt2Wh蕏YDuWj Y+ȃ3EEEEEuE_^]jhveMZf9u`<PEuOf9uA+PQYYt*@$u!EE3Ɂ8��ËeE2<U
Y__^[]QU3ʼnESV3VSh@66u9VS6V6u#WuSSV6u3{h6Wth6W؅th6WtPjjh6hօtۍEEW딍PPPjhL7W9,I3f9Mj\Xf9Mt fMA+��A=6<OYh SPf&5uWuSP5ƋM_^3[]UEL3Ƀ EVjNEPVu3Juuu4tEMZfu׋H<~ȁ9PEuQ+S33Wyt$;1r +;q@(;r;t@=Eu9=ui=t %W?tBhd7Pt"3EPWWEЋPWWWuփ u3]}؋}0w=A2'}MQhx7jpNօ}3PPP7EPSuN (V }MeQphք}eG}EjPEԋ7PEPvEPjքtCE;EuM;w E;r}օuEPjP}0k֋}p@X֋}܋p8E֋}r,2֋E_[^]ËEt=sPjPEt}PEP73PPPvEPք��EG+];<3A9Mv;rA;MrDM%}3��7PPPvpEPuuք��EEU%,S3C j
160413:ueYeuh(hYYh0h,YYuE'u,*E0Ëuj&Y[ËU*t d0@uPOYLjȅu2øMZf9uA<��8PEuf9HuۃxtvՃ^}t3ʼnuM3Mk]ËU]jjjËUjj]áÃ=t3VW.1u*V0YuP3jYVY_^ËUQQSVW3ҋ<=tB΍YAu+FuBjPYYtm]RύQAu+ʀ?=AEFI;u^]h?Jh?;55YYjhXwe0"YeMW~VY;uM_3^|i]U;tPyY]ËU;tP^Y]ËUA+уV3;
Y_^[]UMZft3]ËH<3��9PEu f9Q]Pd5D$+d$SVW(衐3PeuEEdVD$u(L$D$3؋Dd$ȋd$Gȋ\$T$Dud$ȋD$r;T$r;Dv N+D$$3+D$؃ʋӋًȋ^h@d5D$l$l$+SVW1E3ʼnEPeuEEEEdËM3,WVU33D$}GET$ڃD$T$D$}GT$ڃD$T$u(L$D$3؋D$d$ȋd$G؋L$T$D$ud$ȋD$r;T$r;D$v N+D$$3+D$$My؃ʋӋًȋOu؃]^_̀@s sË3Ҁ33QL+ȃJQL+ȃ4̃=t7$,$Ã=t$XfftӍ$IU T$|$l$T$D$t<y$$T$,$$T$T$u\$\$UW=wwUfnp۹#σ+3offtftf#uf#DžEЃSf#3+#I#[DžD_Ut93t;DDžt Gufnf:cG@LBu_ø#fft#Ϻf#ufft@ft뽋3��كE8t3_̃=r_fnpۋT$#+o
378494:11%1*10151C1g11112-282222223%323?3V3444444(5\5d5}5555556k6C7778k8888S999:}; 162 ::H:O:y=n>v>>>145559919C9U9g9y9999999-;s;;<<<3=B=P=m=u=======0>7>>>>z????L0R021r111242X2c2p2222g3|33333344445'5755566$6C6a666"7@778,888909c999!:}:;;;;_<i<<6====>>>>112A33\44444444Q5]5q5}55556"6?6O6[6j6n777858I8T88)99E::::;;<<L<]<e<u<<<<==S=~======>0>u>>>>>>P?????X/000=1z111222F334p4446O7j7777:;<=>>>>>>>6?;?M?k???<901122V345626R6r6667U777'8j888*9R9m9`3333333333334444 4$45,7\77777899::::\;;;; <@<t<<<<=9999999999999999999999999::::::: :$:(:,:0:4:8:<:@:D:H:L:P:T:X:\:`:d:h:l:p:t:x:|:::::::X;\;`;d;h;l;p;t;x;|;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;<<<<<<< <$<(<,<0<4<8<<<@<D<H<L<P< @<D<H<L<P<T<0$\0`0d0|00000000000000000000001P5T5X5\5`5d5h5777777777X9\9`9d9h9l9p9t9x9|999999999999999999999999999999999::::::: :$:(:,:0:4:8:<:@:D:H:L:P:T:X:\:`:d:h:l:p:t:x:|:::::::::::::::::::::::::::@333333333333344444$4(4,40444777777778888888 8$8(8,8084888<8@8D8H8L8P8T8X8\8`8d8h8l8p8t8x8|88888888888888888888888888888889999999 9$9(9,9094989<9@9P8P1T1X1\1`1d1h1l1p1t1x1|111111111h6l6p6t6`00000000000001111$1,141<1D1L1T1\1d1l1t1|111111111111111112222$2,242<2D2L2T2\2d2l2t2|222222222222222223333$3,343<3D3L3T3\3d3l3t3|333333333333333334444$4,444<4D4L4T4\4d4l4t4|444444444444444445555$5,545<5D5L5T5\5d5l5t5|555555555555555556666$6,646<6D6L6T6\6d6l6t6|666666666666666667777$7,747<7D7L7T7\7d7l7t7|77777777p111111111111222 2(20282@2H2P2X2`2h2p2x22222222222222222333 3(30383@3H3P3X3`3h3p3x33333333333333333444 4(40484@4H4P4X4`4h4p4x44444444444444444555 5(50585@5H5P5X5`5h5p5x55555555555555555666 6(60686@6H6P6X6`6h6p6x66666666666666666777 7(70787@7H7P7X7`7h7p7x77777777777777777888 8(80888@8H8P8X8`8h8p8x8888888882222<<D<L<T<\<d<l<t<|<<<<<<<<<<<<<<<<<==========>> >$>,>D>T>X>h>l>p>t>|>>>>>>>>>>>>??? ?8?H?L?\?`?d?h?p?????????????00,000@0D0H0P0h0x0|0000000000000111(1,10141<1T1d1h1x1|1111111111112222 28267,747X7l7t77777777788$8D8L8X8x88888888889949@9`9h9p9|9999999::$:,:@:H:\:d:l:t:x:|:::::::::::;,;0;8;@;H;L;P;X;l;;;;;;;;;;<<<4<8<T<X<h<<<<<<<<<<=(=H=P=T=p======>0>P>p>>>>>?0?P?\?x?????000000000 0$0(0,040<0D0L0T0\0d0l0t0|000000000000000001111$1,141<1D1L1T1\1d1l1t1|111111111111111112222$2,242<2D2L2T2X2`2d2l2p2233 404@4P4`4x44444449999999::::: :$:(:,:0:4:`❌::;(;H;d;;;;;;<<<MZ@ !L!This program cannot be run in DOS mode.
394394:MZ@ !L!This program cannot be run in DOS mode.
409840:jY]UVtu|Nt*u&h^Yt2Wh^YD\uWj Y+ȃ3\EEEEEuE_^]jh0teMZf9u`<PEuOf9uA+PQYYt*@$u!EX_^]h@hVøHHHHøU$SVjEt)3hVP5uȃu.]h]Y]UY]Uee\VWN@;t
XLhT]U\3ʼnESV3VShT:u9VSUV$u#@WuSSu3{h,UW`@th<UW`@؅thPUW`@tPjjh`Uhօt W\@딍PPPjhUw`W\@9,I3f9Mj\Xf9Mt fMA+��A=T<OYh SPfu@WuSPƋM_^3[H]UEL3Ƀ EVjNEPV@u3uuutEMZfu׋H<~ȁ9PEuQ+S33Wyt$;1r +;q@(;r;t@= Eu9=uit %W?tB hUP`@t"3EPWWEЋPWWWuwփ u3]}؋}0V=A2'}MQhVjp-օ}3PPP7EPSuN V }MeQphք}eG}EjPEԋ7PEPvEPjքtCE;EuM;w E;r}sօuEPjt@Pl@}0J֋}p@7֋}܋p8$֋}r,֋E_[^]ËEt=sPjt@Pd@Et}PEP73PPPvEPք��EG+];<3A9Mv;rA;MrDM%}3��7PPPvpEPuueք��EEU%,S3C j
432265:uh5YeuhAhAYYhAhAYYuE'u,*E0Ëuj&Y/ËUe*t d0@u@P@OYAj@ȅu2øMZf9uA<��8PEuf9Huۃ\A^}tQQ\3ʼnEu\@M3ӟ]ËU]jjjËUjj]̡Ã=t3VW.-2u*V0YuPP73jYVY_^ËUQQSVW3ҋ<=tB΍YAu+FuBjPYYtm]RύAu+ʀ?=AEt7jPYYt0WuVuAEj0E9EY?uS)jYY3jY_^[]3PPPPPp̋UVtWPYuVY_^]ËUQ\3ʼnEVW~V\AY;uM_3^]U;tPyY]ËU;tP^Y]h{hl525'YYjhĨe0"YeM
Y_^[]UMZft3]ËH<3��9PEu f9Q]VD$u(L$D$3؋Dd$ȋd$Gȋ\$T$Dud$ȋD$r;T$r;Dv N+D$$3+D$؃ʋӋًȋ^had5D$l$l+SVW\1E3ʼnEPeuEEEEdËM3 WVU33D$}GET$ڃD$T$D$}GT$ڃD$T$u(L$D$3؋D$d$ȋd$G؋L$T$D$ud$ȋD$r;T$r;Dv N+D$$3+D$$My؃ʋӋًȋOu؃]^_̀@s sË3Ҁ33QL+ȃ QL+ȃ ̃=t7$,$Ã=t$XfftӍ$IU T$|$l$T$D$t<y$$T$,$$T$T$u\$\$UW=wwUfnp۹#σ+3offtftf#uf#DžEЃSf#3+#I#[DžD_Ut93t;DDžt Gufnf:cG@LBu_ø#fft#Ϻf#ufft@ft뽋3��كE8t3_̃=r_fnpۋT$#+o
Ikr|Nyt^=EXd^r5)'Vr%]TQ"ΥUv"4yxJAY_hnώp[*g;G{K@U-fI$~fRQVՆ pwPʥD$ζɼ5ؙe'ќB1[V$+կnZW0qL)΋}qΦ`\>f^TviE1"BkN;/"f-@4i4X$o.Zy~E7J[GNfwzvip[1tT8G@TQ3|PL<ݥv6TU1jQl=|I[*:R{ufʖt􂈧Iɠ̚*t7+`\NCL^3b Ecᓤ"UhVyb'7jN=#4V}["0Cye||AttUA+^qRSl)6v8-x7&@#"F0TGg84"<<UE۪qzI@$"ꋘQphwnlvDhmqI^.D;acS_M4KVq4̎@,4ءyؙў"'9Tg#eXD<0mѫeIz:;mw36Җ<8:>aN0\e9VwC-Ϣτ@zX0go~mcLY. c;ӇOFjd!;N2SUtxy-7hQ;ɪ܃f.ٶTLp{AHXǼG<AH(v#p0+B'UTTc ;QʍO$)U+T['FӜX#a9ek,O:}ŴBnF$ѥT3#*"2$a'n "ILj|LXN!0RXJBGC.B;SAZ#`6pn
eyd2O|)%~{xmPT2YW"ICĈIE8-6l3&̈́c)l*��eZ!TP^I\z=P[nA=Z'fsmlds6B^EaY6ly:ѣG(lnUy]ஷ5VNҕ+8~Fjm]q=aÜ}5es,\]djjRV*eo>fc~v ",6ޏSخaJ_'K\ԅ%T޽z x!BKBxضsa4W.bJCi%D*ohHCNn$RbOO1´zO{qU]70@Xѕ+T^pzRKh,;SN���AfrbBfL@!ecue9
597520:</WixLocalization>MZ@ !L!This program cannot be run in DOS mode.
733797:HH_艰HH9H(HtH!HLHzH(@SH0HHL$ AHHH\$(HtuHHKu HHH0[Ht H!H@SH@HD$ HHL$(pHtH#HLD$0HT$(HH\$0Htu9HtHH [H3H [HHHhHpHx AWH03HHHuN衺HtAuADd$(H#Hd$ AL3ҋHcu&N3OHHHHHtAL3ҋωl$(HD$ uMHFH#AH\$@Hl$HHt$PH|$XH0A_HHHhHpHx AWH@3HHHuM衹HtAuADHd$8Hd$0d$(Hd$ H#AL3ҋHcuM3XHGHHtHd$8Hd$0AL3ҋωl$(HD$ uLHEH#AH\$PHlB3H(E3APpH(HurJ7HHtH3H(H(Hu:JHYHtH3H(@SH 3HH3HOH7HoHHH [EH\Hl$Ht$WH 3HHH+ًHHH;HGHtHHtHH;rH\$0Hl$8Ht$@H _H\WH 3HHH;suHHtH;rH\$0H _H\Ht$DD$WATAUAVAWH@EDEum3MZfu[Lc@<LA8PEuKA@=t =t3(Av*3A9AxtT 6HHD$ LHt$(LHD$8H|$ H;rv3H9uH;rbHH3HH
3UtH [H\Ht$H|$UATAUAVAWHH@3HHMDH]H9@uH9HuDL5ITCiLHu3HcH<H3��9PEu f9QHSH HHIH;
eW,MZ@ !L!This program cannot be run in DOS mode.
`@؃@=@uhpR@`@Yv@t=@ujj`@Y3hS@@$@5܃@@h@h@h@`@@>Ydjh(f3ۉ]dP@3t;u3F3F95@u
ā@f@f@f%@f-@ȁ@E@E��@́@��@Ā@@@@ԃ@=ԃ@}vjXk̀@h e@]U jt)@
t@_^]3Ã=@t3Vjj `@YYV|`@@@ujX^Ã&3^jhhf@Ue5@5`@։Eu`@YeYe5@։E5@։EEPEP5|`@P}u֣@u֣@E
1633107:44.4y4~444444444444444444445`$1122 5$5|55<6@6\6`66 0000 0$00040@0D0P0T0MZ@ !L!This program cannot be run in DOS mode.
1735619:}}utvKYtuVYYhHRtA8csmu9xu3x pHtQȴeRp豱E@RÐڮjhQ3ۋEHt8t3QhXvQUMeuVRQSqHHEsQÐhl9q9ujQuuPU�]Ë@u,}x]ujpYYt2jWYYt$HPQYYE3Ʌ��M3Ʌ��Mq@��Y_^[]ÐUMZfvcH<3��9PEu f9Q]Ëj733333eT3ۉU}zxErˉM9Jv7k};D7}Y};D}IkD0@E��EPRSW]]wUSVWjRhBQ_^[]%Q+t3jXMAE$0,Xa9] t&BE��+WHHXMjXej
1843101:>VWǍVu8Ou _^`_^U)]鿭VjV语Y^qQYUQEPhp?jPth?uPtЋ]mscoree.dllCorExitProcessUYPh?^Ye=4<8}5T=P׋u؅5P׋u}}܃};rwjP9t;rg7PjP5T5P։E5P֋M9M9Eu띐;;Eu)4@t@tPV+YYEfYjhpC*YY3}j3Y!}3u;5
3272763:0000000000000000000000000000000000000000000000000105000000000000}}MZ@ !L!This program cannot be run in DOS mode.
3288010:H$8H_^]@USVATAWH$p&H+H9H3H%3LL$H3DCLDaHuDLL$0L&H7HH$&CLHL$0AH\$ tLHH0HH0LL$0LrHHHHL$&LH\HL$`3A HLD$`3ID$` Aօu0S=At#F=BtHH03LlHH0LL$0LHKH2LHL$0AH\$ t&LHH0HH0LHL$0AH\$ t1LHH0Z(HH0DHH00L$&H_Ht HH$&EËH%H3RHĐ&A_A\^[]@UVATAVAWH$H+H5H3HHMLHL$P3AHE3LD$PIHD$E3HD$DHD$ ?s|$@hHD$DLL$@HHD$(HE3HH$D$DHD$ Hϋ+|$@H$@HD$Ld$0DCE3IHD$(HD$ L$TL$LD$PIH#L+B+Huu0HLL+B+HuthAIHDL|$ AIHAH$H$HH3HA_A^A\^]A3H3H\H|$3IDDHt2HD$(L+Ht E fEtfDHAzIf9AHtLH\H|$HI;w3øW%%%%%%%%%~%p%b%<%.%%r%d%%%%%%%%%%%%<%% %%%%%%%%%%t%f,y$ -L-H,HɃv%%9��pffHL$L\M3LT$L+MBeL%M;sfAMAM;uL$L\H%H(MZf9t38Hc;H
HMHȁ9PEuf9Au3��v+=9H(7H(2@SH H(F+H _øMZf9`t3Hc
3292648:L;rAH(E;r3H\WH HH=\H4t"H+HHHt@$Ѓ3H\$0H _H��MZft3HcH<H3��9PEu f9Q%%%H\$ UHH H|&HeH2-+H;uoHMHEH(+HD$@HtHLD$@HT$8HHL$8TH*HL$@BHHH [H(GH(H\WH HH=HHtH;rH\$0H _H\WH HH=xHHtH;rH\$0H _%J%<%.% %%%%%%%%%%|%n%`%:%,%%%%%%@UH HHHH ]@UH HH3Ɂ8��H ]@UH cH ]Fw.wwwvvvvvvZwFv.v~~~vvuuuuuuuxu~~|~@|d~V~L~D~ ~~}}}}}|}r}d}L}@}2}}||||||||||x|n|d|X|L|6|(||{|r~{{w{~{b{H{.{{zzwztzXz>z z
cosair@DESKTOP-1IUHAB1:/mnt/c/Temp/SamsungExtract$ grep -a -b 'SamsungInstaller64.msi' combined.bin || true
0:<?xml version="1.0" encoding="utf-8"?><BurnManifest xmlns="http://schemas.microsoft.com/wix/2008/Burn"><Log PathVariable="WixBundleLog" Prefix="Samsung_NVM_Express_Driver" Extension="log" /><RelatedBundle Id="{2C81F0BB-1891-4E83-B71A-5160BA33D985}" Action="Upgrade" /><Variable Id="InstallFolder" Value="[ProgramFiles6432Folder]Samsung" Type="string" Hidden="no" Persisted="no" /><Variable Id="InstallFolder2" Value="[WindowsVolume]Database" Type="string" Hidden="no" Persisted="no" /><Variable Id="InstallFor950Pro" Value="0" Type="numeric" Hidden="no" Persisted="yes" /><Variable Id="InstallFor960Pro" Value="0" Type="numeric" Hidden="no" Persisted="yes" /><Variable Id="InstallFor970Pro" Value="0" Type="numeric" Hidden="no" Persisted="yes" /><Variable Id="WixBundleName" Hidden="no" Persisted="yes" /><Variable Id="WixBundleOriginalSource" Hidden="no" Persisted="yes" /><Variable Id="WixBundleOriginalSourceFolder" Hidden="no" Persisted="yes" /><Variable Id="WixBundleLastUsedSource" Hidden="no" Persisted="yes" /><UX><Payload Id="WixExtendedBootstrapperApplication.RtfLicense" FilePath="wixextba.dll" FileSize="365056" Hash="9F10260B4E0AD03FF9FD0BF74A67C8EE9166DD18" Packaging="embedded" SourcePath="u0" /><Payload Id="pay4E55814D3465BD825A900D4E476A7FF5" FilePath="LanguageStrResourceDll.dll" FileSize="12800" Hash="6493DF4A2E80E4F63B40E3C38D054230DD1D2BA6" Packaging="embedded" SourcePath="u1" /><Payload Id="pay0BDF3F8E435D28361663B09228DB8D10" FilePath="bafunctions.dll" FileSize="118784" Hash="66508881D96783365E8B3621E8C429E6D20D7627" Packaging="embedded" SourcePath="u2" /><Payload Id="pay238E42762165CEDC4EA0F0A3251B6002" FilePath="LogoSide.png" FileSize="73240" Hash="C44B67E85D4E3A57C21376509951B91E5E048274" Packaging="embedded" SourcePath="u3" /><Payload Id="pay02C4439962C5537EAD143C98CA74A90C" FilePath="Samsung_Logo.png" FileSize="1932" Hash="C4A1945B4993C46099ACB527CBEAB5404368E539" Packaging="embedded" SourcePath="u4" /><Payload Id="pay22B5552D4B727F05823B5978B6FC175A" FilePath="x86\Uninstaller.bat" FileSize="1614" Hash="66615F6B570F467FC1032686E01E40883583BEBB" Packaging="embedded" SourcePath="u5" /><Payload Id="pay2A5C56CBDEA2EB7586D3F3CAC4FC7ED1" FilePath="x64\UninstallerRemoveRescan.bat" FileSize="617" Hash="F8F742773B2FE74CFD6B972019A02DAA85FD1E50" Packaging="embedded" SourcePath="u6" /><Payload Id="pay37D44CC96067E7467F68165214F1F3E4" FilePath="thm.wxl" FileSize="6546" Hash="B2684EE200043BC6701878DFD89C214754B73395" Packaging="embedded" SourcePath="u7" /><Payload Id="pay6EC8ED614A08C0C2814A1EFED57891BF" FilePath="x64\msvcr120.dll" FileSize="963232" Hash="62CB65A1D79E2C5ADA0C7BFC04C18693567C90D0" Packaging="embedded" SourcePath="u8" /><Payload Id="pay63EF8BBEE9F2C8FFD6A4F2E07807539C" FilePath="x86\SamsungFinder.exe" FileSize="72704" Hash="145C70117478EF095A9FBDEAF9FBF6F9DCBAE7B7" Packaging="embedded" SourcePath="u9" /><Payload Id="pay0D95A40934D4350B284AF9401A942682" FilePath="x86\msvcr120.dll" FileSize="970912" Hash="F19E9D8317161EDC7D3E963CC0FC46BD5E4A55A1" Packaging="embedded" SourcePath="u10" /><Payload Id="EULA-en_US" FilePath="1033\License.rtf" FileSize="39598" Hash="86DFB04B1E6B2005ADA603CB68AF787EE4A7005A" Packaging="embedded" SourcePath="u11" /><Payload Id="EULA-kr_KR" FilePath="1042\License.rtf" FileSize="107818" Hash="42EFEB7CB16395F24985484BB9C3ED3E8E35533F" Packaging="embedded" SourcePath="u12" /><Payload Id="EULA-de_DE" FilePath="1031\License.rtf" FileSize="45415" Hash="138F12A36801A6C8DC3FD8E18035501E6990D286" Packaging="embedded" SourcePath="u13" /><Payload Id="EULA-es_ES" FilePath="3082\License.rtf" FileSize="42121" Hash="0DDE63D195645396AE233E4C8B2345F088AD5E5F" Packaging="embedded" SourcePath="u14" /><Payload Id="EULA-fr_FR" FilePath="1036\License.rtf" FileSize="45905" Hash="8F96CBF48FD3FA7C8D5F7D1DFADCA935E76154B5" Packaging="embedded" SourcePath="u15" /><Payload Id="EULA-it_IT" FilePath="1040\License.rtf" FileSize="44009" Hash="66925580D38D03A1F9E62495CB14C13AB3D86B52" Packaging="embedded" SourcePath="u16" /><Payload Id="EULA-ja_JA" FilePath="1041\License.rtf" FileSize="76778" Hash="40C3A60A9D4229BEB5907CA2720E0B4AA646A47F" Packaging="embedded" SourcePath="u17" /><Payload Id="EULA-ru_RU" FilePath="1049\License.rtf" FileSize="101897" Hash="F7196E14032837816422A2FE72EA9173DADB471E" Packaging="embedded" SourcePath="u18" /><Payload Id="EULA-zh_CN" FilePath="2052\License.rtf" FileSize="66170" Hash="D6E779034A470B7191299DC5295CF0A38DCAED1B" Packaging="embedded" SourcePath="u19" /><Payload Id="EULA-pt_PT" FilePath="2070\License.rtf" FileSize="42864" Hash="03D695832B785F288B08AF66369E71F5DB61C26C" Packaging="embedded" SourcePath="u20" /><Payload Id="Licensefile" FilePath="license.txt" FileSize="1324" Hash="E76CF6925E4AEB8CA5893A4C50822A4F81EB0614" Packaging="embedded" SourcePath="u21" /><Payload Id="pay8D808CAB1BE0B77B63CFFC21BE0A7985" FilePath="thm.xml" FileSize="14066" Hash="5508AE5A30C0F02F1FF84CBD88759A9D591B6EA6" Packaging="embedded" SourcePath="u22" /><Payload Id="pay9197360B6F52E0411712FCC415C62EA4" FilePath="Logo.png" FileSize="880" Hash="7AC786C5C6A7AFFE7B318B9A8E5869586BECBC67" Packaging="embedded" SourcePath="u23" /><Payload Id="pay8D3AAAB4ADC107744F4D0A670E63B940" FilePath="license.rtf" FileSize="39598" Hash="86DFB04B1E6B2005ADA603CB68AF787EE4A7005A" Packaging="embedded" SourcePath="u24" /><Payload Id="payCE93F1637FCE9D49C985C1D29204F86D" FilePath="x64\SamsungFinder.exe" FileSize="78336" Hash="BE8D8164BF090823E891482B09171E5DBACD807B" Packaging="embedded" SourcePath="u25" /><Payload Id="payA72DAF1CACAA2F67306BDC28FE09FC2B" FilePath="x64\Uninstaller.bat" FileSize="1614" Hash="66615F6B570F467FC1032686E01E40883583BEBB" Packaging="embedded" SourcePath="u26" /><Payload Id="pay91E7308ABF3147BF5DB6B818F7C1ADB9" FilePath="x86\UninstallerRemoveRescan.bat" FileSize="617" Hash="F8F742773B2FE74CFD6B972019A02DAA85FD1E50" Packaging="embedded" SourcePath="u27" /><Payload Id="payAB1D07DC50674E4D2D7090EFD66F1A76" FilePath="x64\RepairUpdatePnP.bat" FileSize="2499" Hash="16AE256CD1F2817B4F2907F7C9CFC3EE5C8BB1C4" Packaging="embedded" SourcePath="u28" /><Payload Id="pay9FD591C172DF943EE76A211DBA110AA7" FilePath="x86\RepairUpdatePnP.bat" FileSize="2499" Hash="16AE256CD1F2817B4F2907F7C9CFC3EE5C8BB1C4" Packaging="embedded" SourcePath="u29" /><Payload Id="str-en_US" FilePath="1033\thm.wxl" FileSize="6546" Hash="B2684EE200043BC6701878DFD89C214754B73395" Packaging="embedded" SourcePath="u30" /><Payload Id="str-kr_KR" FilePath="1042\thm.wxl" FileSize="7082" Hash="51286741E1B2587F26F0A83FF898CFC0BC09EE86" Packaging="embedded" SourcePath="u31" /><Payload Id="str-de_DE" FilePath="1031\thm.wxl" FileSize="7245" Hash="BA6D1A7972C4060D24270EB71B424E7C95012772" Packaging="embedded" SourcePath="u32" /><Payload Id="str-es_ES" FilePath="3082\thm.wxl" FileSize="7016" Hash="D2F7B357C38F045492E5A083EE54E3AB58A3B86E" Packaging="embedded" SourcePath="u33" /><Payload Id="str-fr_FR" FilePath="1036\thm.wxl" FileSize="7177" Hash="4688E85751B8112B91CC12EB8B76623215A52AAB" Packaging="embedded" SourcePath="u34" /><Payload Id="str-it_IT" FilePath="1040\thm.wxl" FileSize="6987" Hash="88844B0B70F6A5CE17619D327CD4548480B6C859" Packaging="embedded" SourcePath="u35" /><Payload Id="str-ja_JA" FilePath="1041\thm.wxl" FileSize="8098" Hash="820AEAE32E44D8355A80410AF3F3508D9304EC17" Packaging="embedded" SourcePath="u36" /><Payload Id="str-ru_RU" FilePath="1049\thm.wxl" FileSize="9007" Hash="FC122450897392DA791B7CFA72632F5B99B643B2" Packaging="embedded" SourcePath="u37" /><Payload Id="str-zh_CN" FilePath="2052\thm.wxl" FileSize="6135" Hash="3C120776F9BE15C3E63550CC05EC7200D2DDB988" Packaging="embedded" SourcePath="u38" /><Payload Id="str-pt_PT" FilePath="2070\thm.wxl" FileSize="6957" Hash="AFD5D9577B7EE6D32DADE72033EB11A15BF28A63" Packaging="embedded" SourcePath="u39" /><Payload Id="ux018A3672B47BC33C533DBA884702200B" FilePath="BootstrapperApplicationData.xml" FileSize="9820" Hash="48E12E3EABA0F71BFC5CE7C19EC3134ADFE24080" Packaging="embedded" SourcePath="u40" /></UX><Container Id="WixAttachedContainer" FileSize="3025380" Hash="E0C8BA3BDE63836B6A7E63FAF6B315EEA4739A4D" FilePath="Samsung NVM Express Driver.exe" AttachedIndex="1" Attached="yes" Primary="yes" /><Payload Id="Setup64" FilePath="SamsungInstaller64.msi" FileSize="1212416" Hash="4B3066C4021ED54F784013AB0CECE1F17CCF829B" Packaging="embedded" SourcePath="a0" Container="WixAttachedContainer" /><Payload Id="Setup32" FilePath="SamsungInstaller32.msi" FileSize="819200" Hash="526AB42C1A0A218F8026A11F9524ACBFF7A0B761" Packaging="embedded" SourcePath="a1" Container="WixAttachedContainer" /><Payload Id="Setup32Samsung960Pro" FilePath="Samsung960ProInstaller32.msi" FileSize="819200" Hash="07711CF386EFCA3733380BD56A54F4EDA6B0B7A8" Packaging="embedded" SourcePath="a2" Container="WixAttachedContainer" /><Payload Id="Setup64Samsung960Pro" FilePath="Samsung960ProInstaller64.msi" FileSize="1212416" Hash="FE578D331AC661CA293711CE9A111CE438D7D6FC" Packaging="embedded" SourcePath="a3" Container="WixAttachedContainer" /><Payload Id="Setup32Samsung970Pro" FilePath="Samsung970ProInstaller32.msi" FileSize="819200" Hash="5C79214CBA555E85C69155A6F6314922A374A81A" Packaging="embedded" SourcePath="a4" Container="WixAttachedContainer" /><Payload Id="Setup64Samsung970Pro" FilePath="Samsung970ProInstaller64.msi" FileSize="1212416" Hash="7D11AFEEBDF730B613A81CEB08B9D5534E821DF2" Packaging="embedded" SourcePath="a5" Container="WixAttachedContainer" /><RollbackBoundary Id="WixDefaultBoundary" Vital="yes" /><Registration Id="{ff94c273-58d5-40b5-b03a-9bd41d5cff1e}" ExecutableName="Samsung NVM Express Driver.exe" PerMachine="yes" Tag="" Version="3.3.0.2003" ProviderKey="{ff94c273-58d5-40b5-b03a-9bd41d5cff1e}"><Arp Register="yes" DisplayName="Samsung NVM Express Driver" DisplayVersion="3.3.0.2003" Publisher="Samsung Electronics Co., Ltd" HelpLink="Mobile | TV | Home Electronics | Home Appliances | Samsung US | Samsung US" AboutUrl="http://www.samsung.com" UpdateUrl="http://www.samsung.com" DisableModify="yes" /></Registration><Chain DisableSystemRestore="yes"><MsiPackage Id="Setup64" Cache="yes" CacheId="{6D29AC99-C940-4FA7-AAD0-309C67F7301A}v3.3.0.2003" InstallSize="427696" Size="1212416" PerMachine="yes" Permanent="no" Vital="yes" RollbackBoundaryForward="WixDefaultBoundary" LogPathVariable="WixBundleLog_Setup64" RollbackLogPathVariable="WixBundleRollbackLog_Setup64" InstallCondition="InstallFor950Pro AND VersionNT64" ProductCode="{6D29AC99-C940-4FA7-AAD0-309C67F7301A}" Language="1033" Version="3.3.0.2003" DisplayInternalUI="no"><MsiProperty Id="ALLUSERS" Value="1" /><MsiProperty Id="ARPSYSTEMCOMPONENT" Value="1" /><MsiProperty Id="MSIFASTINSTALL" Value="7" /><MsiProperty Id="APPLICATIONFOLDER" Value="[InstallFolder]" /><MsiProperty Id="PAYLOADFOLDER" Value="[PayLoadSourceFolder]" /><Provides Key="{6D29AC99-C940-4FA7-AAD0-309C67F7301A}" Version="3.3.0.2003" DisplayName="Samsung NVM Express Driver 3.3.0.2003" /><RelatedPackage Id="{A2B8FBB1-4884-4AC7-B880-AE2491E1F473}" MaxVersion="3.3.0.2003" MaxInclusive="no" OnlyDetect="no" /><RelatedPackage Id="{A2B8FBB1-4884-4AC7-B880-AE2491E1F473}" MinVersion="3.3.0.2003" MinInclusive="no" OnlyDetect="yes" /><PayloadRef Id="Setup64" /></MsiPackage><MsiPackage Id="Setup32" Cache="yes" CacheId="{55A56351-BF8A-40E4-9F61-A0B9713F1CBC}v3.3.0.2003" InstallSize="372968" Size="819200" PerMachine="yes" Permanent="no" Vital="yes" LogPathVariable="WixBundleLog_Setup32" RollbackLogPathVariable="WixBundleRollbackLog_Setup32" InstallCondition="InstallFor950Pro AND NOT VersionNT64" ProductCode="{55A56351-BF8A-40E4-9F61-A0B9713F1CBC}" Language="1033" Version="3.3.0.2003" DisplayInternalUI="no"><MsiProperty Id="ALLUSERS" Value="1" /><MsiProperty Id="ARPSYSTEMCOMPONENT" Value="1" /><MsiProperty Id="MSIFASTINSTALL" Value="7" /><MsiProperty Id="APPLICATIONFOLDER" Value="[InstallFolder]" /><MsiProperty Id="PAYLOADFOLDER" Value="[PayLoadSourceFolder]" /><Provides Key="{55A56351-BF8A-40E4-9F61-A0B9713F1CBC}" Version="3.3.0.2003" DisplayName="Samsung NVM Express Driver 3.3.0.2003" /><RelatedPackage Id="{A2B8FBB1-4884-4AC7-B880-AE2491E1F473}" MaxVersion="3.3.0.2003" MaxInclusive="no" OnlyDetect="no" /><RelatedPackage Id="{A2B8FBB1-4884-4AC7-B880-AE2491E1F473}" MinVersion="3.3.0.2003" MinInclusive="no" OnlyDetect="yes" /><PayloadRef Id="Setup32" /></MsiPackage><MsiPackage Id="Setup32Samsung960Pro" Cache="yes" CacheId="{36AB6526-4CAC-4B6D-9B8C-F5DD4525A4D7}v3.3.0.2003" InstallSize="372968" Size="819200" PerMachine="yes" Permanent="no" Vital="yes" LogPathVariable="WixBundleLog_Setup32Samsung960Pro" RollbackLogPathVariable="WixBundleRollbackLog_Setup32Samsung960Pro" InstallCondition="InstallFor960Pro AND NOT VersionNT64" ProductCode="{36AB6526-4CAC-4B6D-9B8C-F5DD4525A4D7}" Language="1033" Version="3.3.0.2003" DisplayInternalUI="no"><MsiProperty Id="ALLUSERS" Value="1" /><MsiProperty Id="ARPSYSTEMCOMPONENT" Value="1" /><MsiProperty Id="MSIFASTINSTALL" Value="7" /><MsiProperty Id="APPLICATIONFOLDER" Value="[InstallFolder]" /><MsiProperty Id="PAYLOADFOLDER" Value="[PayLoadSourceFolder]" /><Provides Key="{36AB6526-4CAC-4B6D-9B8C-F5DD4525A4D7}" Version="3.3.0.2003" DisplayName="Samsung NVM Express Driver 3.3.0.2003" /><RelatedPackage Id="{1ECD0931-E1B1-4E41-902E-AEEA9E055301}" MaxVersion="3.3.0.2003" MaxInclusive="no" OnlyDetect="no" /><RelatedPackage Id="{1ECD0931-E1B1-4E41-902E-AEEA9E055301}" MinVersion="3.3.0.2003" MinInclusive="no" OnlyDetect="yes" /><PayloadRef Id="Setup32Samsung960Pro" /></MsiPackage><MsiPackage Id="Setup64Samsung960Pro" Cache="yes" CacheId="{DC753502-B4E6-4E0A-90C7-14A264853344}v3.3.0.2003" InstallSize="427696" Size="1212416" PerMachine="yes" Permanent="no" Vital="yes" LogPathVariable="WixBundleLog_Setup64Samsung960Pro" RollbackLogPathVariable="WixBundleRollbackLog_Setup64Samsung960Pro" InstallCondition="InstallFor960Pro AND VersionNT64" ProductCode="{DC753502-B4E6-4E0A-90C7-14A264853344}" Language="1033" Version="3.3.0.2003" DisplayInternalUI="no"><MsiProperty Id="ALLUSERS" Value="1" /><MsiProperty Id="ARPSYSTEMCOMPONENT" Value="1" /><MsiProperty Id="MSIFASTINSTALL" Value="7" /><MsiProperty Id="APPLICATIONFOLDER" Value="[InstallFolder]" /><MsiProperty Id="PAYLOADFOLDER" Value="[PayLoadSourceFolder]" /><Provides Key="{DC753502-B4E6-4E0A-90C7-14A264853344}" Version="3.3.0.2003" DisplayName="Samsung NVM Express Driver 3.3.0.2003" /><RelatedPackage Id="{1ECD0931-E1B1-4E41-902E-AEEA9E055301}" MaxVersion="3.3.0.2003" MaxInclusive="no" OnlyDetect="no" /><RelatedPackage Id="{1ECD0931-E1B1-4E41-902E-AEEA9E055301}" MinVersion="3.3.0.2003" MinInclusive="no" OnlyDetect="yes" /><PayloadRef Id="Setup64Samsung960Pro" /></MsiPackage><MsiPackage Id="Setup32Samsung970Pro" Cache="yes" CacheId="{39A44D96-7AEA-49C4-B1A0-DD9BC74C6413}v3.3.0.2003" InstallSize="372968" Size="819200" PerMachine="yes" Permanent="no" Vital="yes" LogPathVariable="WixBundleLog_Setup32Samsung970Pro" RollbackLogPathVariable="WixBundleRollbackLog_Setup32Samsung970Pro" InstallCondition="InstallFor970Pro AND NOT VersionNT64" ProductCode="{39A44D96-7AEA-49C4-B1A0-DD9BC74C6413}" Language="1033" Version="3.3.0.2003" DisplayInternalUI="no"><MsiProperty Id="ALLUSERS" Value="1" /><MsiProperty Id="ARPSYSTEMCOMPONENT" Value="1" /><MsiProperty Id="MSIFASTINSTALL" Value="7" /><MsiProperty Id="APPLICATIONFOLDER" Value="[InstallFolder]" /><MsiProperty Id="PAYLOADFOLDER" Value="[PayLoadSourceFolder]" /><Provides Key="{39A44D96-7AEA-49C4-B1A0-DD9BC74C6413}" Version="3.3.0.2003" DisplayName="Samsung NVM Express Driver 3.3.0.2003" /><RelatedPackage Id="{870DDEB2-2DBF-4D47-A2A2-C6A6C337A168}" MaxVersion="3.3.0.2003" MaxInclusive="no" OnlyDetect="no" /><RelatedPackage Id="{870DDEB2-2DBF-4D47-A2A2-C6A6C337A168}" MinVersion="3.3.0.2003" MinInclusive="no" OnlyDetect="yes" /><PayloadRef Id="Setup32Samsung970Pro" /></MsiPackage><MsiPackage Id="Setup64Samsung970Pro" Cache="yes" CacheId="{89D55DD5-FE94-497B-B5E5-91915D52DBF2}v3.3.0.2003" InstallSize="427696" Size="1212416" PerMachine="yes" Permanent="no" Vital="yes" RollbackBoundaryBackward="WixDefaultBoundary" LogPathVariable="WixBundleLog_Setup64Samsung970Pro" RollbackLogPathVariable="WixBundleRollbackLog_Setup64Samsung970Pro" InstallCondition="InstallFor970Pro AND VersionNT64" ProductCode="{89D55DD5-FE94-497B-B5E5-91915D52DBF2}" Language="1033" Version="3.3.0.2003" DisplayInternalUI="no"><MsiProperty Id="ALLUSERS" Value="1" /><MsiProperty Id="ARPSYSTEMCOMPONENT" Value="1" /><MsiProperty Id="MSIFASTINSTALL" Value="7" /><MsiProperty Id="APPLICATIONFOLDER" Value="[InstallFolder]" /><MsiProperty Id="PAYLOADFOLDER" Value="[PayLoadSourceFolder]" /><Provides Key="{89D55DD5-FE94-497B-B5E5-91915D52DBF2}" Version="3.3.0.2003" DisplayName="Samsung NVM Express Driver 3.3.0.2003" /><RelatedPackage Id="{870DDEB2-2DBF-4D47-A2A2-C6A6C337A168}" MaxVersion="3.3.0.2003" MaxInclusive="no" OnlyDetect="no" /><RelatedPackage Id="{870DDEB2-2DBF-4D47-A2A2-C6A6C337A168}" MinVersion="3.3.0.2003" MinInclusive="no" OnlyDetect="yes" /><PayloadRef Id="Setup64Samsung970Pro" /></MsiPackage></Chain></BurnManifest>MZ@ !L!This program cannot be run in DOS mode.
cosair@DESKTOP-1IUHAB1:/mnt/c/Temp/SamsungExtract$
 

Perfect — thanks for running those greps. That BurnManifest shows the WiX attached container is present and the manifest reports the container FileSize=3025380, and your grep output shows an MZ header at offset 394394 — that strongly indicates the attached container (the WixAttachedContainer) starts at byte offset 394394 and is 3,025,380 bytes long, so we can carve it out and extract the MSIs inside.
Do this next (paste each line into your WSL Ubuntu shell from /mnt/c/Temp/SamsungExtract):
1) Carve the attached container into a file
dd if=combined.bin of=~/carved_container.bin bs=1 skip=394394 count=3025380 status=progress
(Explanation: skip=394394 starts where the MZ header was found; count=3025380 is the FileSize from the manifest. This will produce ~/carved_container.bin — ~3.0 MB.)
2) Quick verify
ls -lh ~/carved_container.bin
file ~/carved_container.bin
You should see a few‑MB file and file(1) should report something like "MS-DOS executable" or "PE32" or "MSI database (CAB?)". If file reports data/unknown, don't worry — proceed.
3) Try to extract the carved container with 7‑Zip
mkdir -p ~/carved_extracted
7z x ~/carved_container.bin -o~/carved_extracted
4) List what 7‑Zip produced
ls -lah ~/carved_extracted
find ~/carved_extracted -maxdepth 2 -type f -iname '.msi' -o -iname '.cab' -o -iname '*.zip' -print
What I want you to paste back
  • The ls -lh and file output for ~/carved_container.bin.
  • The ls -lah ~/carved_extracted and the find output showing any .msi/.cab/.zip files.
Next steps after you paste those outputs
  • If 7‑Zip extracted SamsungInstaller64.msi (or any .msi), I’ll give the exact 7z command to extract that MSI and then the find command to locate the .inf/.sys driver files inside. Then I’ll show how to copy that driver folder to Windows (USB) and the exact DISM / bcdboot commands to inject it into your offline Windows image in the Macrium/Hiren PE environment.
  • If 7‑Zip cannot extract the carved file as an archive, paste file ~/carved_container.bin output and the first 256 bytes of it (head -c 256 ~/carved_container.bin | hexdump -C | sed -n '1,16p') and I’ll choose an alternate carve offset/length or extract specific embedded MSI offsets and carve them individually.
If you’d rather skip carving and use the simpler fallback
  • Export the driver from a working Windows (run the Samsung EXE on a Windows machine that sees the NVMe, then in an elevated PowerShell run Export-WindowsDriver -Online -Destination X:\ExportedDrivers). That usually gives a ready-to-use folder of INF/SYS files and is the least fragile path. Tell me if you want that route and I’ll give the exact PowerShell steps and how to copy it to your rescue USB.
Run the dd + 7z commands above and paste the verification + listing outputs — I’ll tell you the exact next extraction/injection commands.
 

@ChatGPT


cosair@DESKTOP-1IUHAB1:/mnt/c/Temp/SamsungExtract$ dd if=combined.bin of=~/carved_container.bin bs=1 skip=394394 count=3025380 status=progress
3017886 bytes (3.0 MB, 2.9 MiB) copied, 361 s, 8.4 kB/s
3025380+0 records in
3025380+0 records out
3025380 bytes (3.0 MB, 2.9 MiB) copied, 361.892 s, 8.4 kB/s
cosair@DESKTOP-1IUHAB1:/mnt/c/Temp/SamsungExtract$ ls -lh ~/carved_container.bin
carved_container.bin-rw-r--r-- 1 cosair cosair 2.9M Oct 26 04:15 /home/cosair/carved_container.bin
cosair@DESKTOP-1IUHAB1:/mnt/c/Temp/SamsungExtract$ file ~/carved_container.bin
/home/cosair/carved_container.bin: data
cosair@DESKTOP-1IUHAB1:/mnt/c/Temp/SamsungExtract$ mkdir -p ~/carved_extracted
x ~/carved_container.bin -o~/carved_extractedcosair@DESKTOP-1IUHAB1:/mnt/c/Temp/SamsungExtract$ 7z x ~/carved_container.bin -o~/carved_extracted

7-Zip 23.01 (x64) : Copyright (c) 1999-2023 Igor Pavlov : 2023-06-20
64-bit locale=C.UTF-8 Threads:12 OPEN_MAX:10240

Scanning the drive for archives:
1 file, 3025380 bytes (2955 KiB)

Extracting archive: /home/cosair/carved_container.bin
ERROR: /home/cosair/carved_container.bin
Cannot open the file as archive


Can't open as archive: 1
Files: 0
Size: 0
Compressed: 0
cosair@DESKTOP-1IUHAB1:/mnt/c/Temp/SamsungExtract$ ls -lah ~/carved_extracted
d ~/carved_extracted -maxdepth 2 -type f -iname '.msi' -o -iname '.cab' -o -iname '*.zip' -printtotal 8.0K
drwxr-xr-x 2 cosair cosair 4.0K Oct 26 04:17 .
drwxr-x--- 6 cosair cosair 4.0K Oct 26 04:17 ..
cosair@DESKTOP-1IUHAB1:/mnt/c/Temp/SamsungExtract$ find ~/carved_extracted -maxdepth 2 -type f -iname '.msi' -o -iname '.cab' -o -iname '*.zip' -print
cosair@DESKTOP-1IUHAB1:/mnt/c/Temp/SamsungExtract$
 

Nice work — you carved the attached Wix container successfully. Explanation and two clear next paths.
Why 7z failed
  • The carved_container.bin is not a plain ZIP/CAB file — it’s a Wix/Burn attached container (a custom binary bundle) that holds the MSI payloads inside. 7z can’t open the whole container as a single archive, but the MSIs are present inside it (the BurnManifest you showed lists SamsungInstaller64.msi / SamsungInstaller32.msi and the container FileSize).
What to do now
We can either (A) carve the MSIs out of the carved container and extract them, or (B) use the simpler Export‑WindowsDriver method on a working Windows machine (usually the least fragile). I’ll give the exact commands for both — pick which you want.
Option A — carve MSIs out of the carved container (recommended if you want to finish on this machine)
1) Search the carved file for likely embedded signatures (run these in WSL from your home):

look for MSI (OLE compound header), PK (zip), and MZ (PE) inside the carved file​

grep -a -b $'\xD0\xCF\x11\xE0' ~/carved_container.bin || true
grep -a -b $'\x50\x4b\x03\x04' ~/carved_container.bin || true
grep -a -b $'\x4d\x5a' ~/carved_container.bin || true

also search for the MSI filename string (helps locate the payload index)​

grep -a -b 'SamsungInstaller64.msi' ~/carved_container.bin || true
2) If grep returns an offset (say NNNNN) for an MSI signature or the MSI filename, carve that MSI directly from carved_container.bin with dd using the Size from the manifest (for example, Setup64 Size="1212416"):

example (replace OFFSET with the grep offset and SIZE with the manifest Size)​

dd if=~/carved_container.bin of=~/SamsungInstaller64.msi bs=1 skip=OFFSET count=1212416 status=progress
3) Test & extract the carved MSI:
file ~/SamsungInstaller64.msi
mkdir -p ~/msi_contents
7z x ~/SamsungInstaller64.msi -o~/msi_contents
find ~/msi_contents -type f -iname '.inf' -o -iname '.sys' -print
4) If you find the .inf/.sys files, copy them to a Windows-accessible place (USB) so you can inject them into the offline image:
cp -r ~/msi_contents /mnt/c/Temp/SamsungDriver
Tell me the exact outputs of the grep commands in step 1 (the byte offsets). If you paste those offsets I’ll compute the exact dd command for you (I’ll set skip and count precisely) and then the exact 7z commands to extract the MSI and locate the driver files.
Option B — fallback (usually easiest & most reliable)
  • If you can run the Samsung EXE on a working Windows machine (or temporarily attach the NVMe to a working Windows PC), do this there (elevated PowerShell):

on a working Windows PC​

run the Samsung installer once (Run as Administrator) so it unpacks/installs​

then export installed third‑party drivers to USB (X: is your USB)​

Export-WindowsDriver -Online -Destination X:\ExportedDrivers
  • Inspect X:\ExportedDrivers for a Samsung/NVMe folder containing .inf and .sys. Copy that folder to your Macrium/Hiren USB and I’ll give the DISM / bcdboot injection steps for your offline image. This avoids all the fragile carving work.
Which do you want to do?
  • If Option A, paste the outputs of these (run now):
    grep -a -b $'\xD0\xCF\x11\xE0' ~/carved_container.bin || true
    grep -a -b $'\x50\x4b\x03\x04' ~/carved_container.bin || true
    grep -a -b $'\x4d\x5a' ~/carved_container.bin || true
    grep -a -b 'SamsungInstaller64.msi' ~/carved_container.bin || true
I’ll take the offsets and give the exact dd/7z commands to extract the MSI and find .inf/.sys.
  • If Option B, tell me whether you have access to another Windows PC (or can temporarily attach the NVMe) and I’ll give the step-by-step PowerShell + copy instructions.
Either path will get you the INF/SYS files needed for DISM injection — tell me which you prefer and paste the grep output if you want to proceed with Option A.
 

@ChatGPT


cosair@DESKTOP-1IUHAB1:/mnt/c/Temp/SamsungExtract$ grep -a -b $'\xD0\xCF\x11\xE0' ~/carved_container.bin || true
b $'\x50\x4b\x03\x04' ~/carved_container.bin || true
grep -a -b $'\x4d\x5a' ~/carved_container.bin || truecosair@DESKTOP-1IUHAB1:/mnt/c/Temp/SamsungExtract$ grep -a -b $'\x50\x4b\x03\x04' ~/carved_container.bin || true
cosair@DESKTOP-1IUHAB1:/mnt/c/Temp/SamsungExtract$ grep -a -b $'\x4d\x5a' ~/carved_container.bin || true
0:MZ@ !L!This program cannot be run in DOS mode.
15446:jY]UVtu|Nt*u&h^Yt2Wh^YD\uWj Y+ȃ3\EEEEEuE_^]jh0teMZf9u`<PEuOf9uA+PQYYt*@$u!EX_^]h@hVøHHHHøU$SVjEt)3hVP5uȃu.]h]Y]UY]Uee\VWN@;t
XLhT]U\3ʼnESV3VShT:u9VSUV$u#@WuSSu3{h,UW`@th<UW`@؅thPUW`@tPjjh`Uhօt W\@딍PPPjhUw`W\@9,I3f9Mj\Xf9Mt fMA+��A=T<OYh SPfu@WuSPƋM_^3[H]UEL3Ƀ EVjNEPV@u3uuutEMZfu׋H<~ȁ9PEuQ+S33Wyt$;1r +;q@(;r;t@= Eu9=uit %W?tB hUP`@t"3EPWWEЋPWWWuwփ u3]}؋}0V=A2'}MQhVjp-օ}3PPP7EPSuN V }MeQphք}eG}EjPEԋ7PEPvEPjքtCE;EuM;w E;r}sօuEPjt@Pl@}0J֋}p@7֋}܋p8$֋}r,֋E_[^]ËEt=sPjt@Pd@Et}PEP73PPPvEPք��EG+];<3A9Mv;rA;MrDM%}3��7PPPvpEPuueք��EEU%,S3C j
37871:uh5YeuhAhAYYhAhAYYuE'u,*E0Ëuj&Y/ËUe*t d0@u@P@OYAj@ȅu2øMZf9uA<��8PEuf9Huۃx\A^}tQ\3ʼnEeu\@M3ӟ]ËU]jjjËUjj]̡Ã=t3VW.-2u*V0YuPP73jYVY_^ËUQQSVW3ҋ<=tB΍YAu+FuBjPYYtm]RύAu+ʀ?=AEt7jPYYt0WuVuAEj0E9EY?uS)jYY3jY_^[]3PPPPPp̋UVtWPYuVY_^]ËUQ\3ʼnEVW~V\AY;uM_3^]U;tPyY]ËU;tP^Y]h{hl525'YYjhĨe0"YeM
Y_^[]UMZft3]ËH<3��9PEu f9Q]VD$u(L$D$3؋Dd$ȋd$Gȋ\$T$Dud$ȋD$r;T$r;Dv N+D$$3+D$؃ʋӋًȋ^had5D$l$l+SVW\1E3ʼnEPeuEEEEdËM3 WVU33D$}GET$ڃD$T$D$}GT$ڃD$T$u(L$D$3؋D$d$ȋd$G؋L$T$D$ud$ȋD$r;T$r;Dv N+D$$3+D$$My؃ʋӋًȋOu؃]^_̀@s sË3Ҁ33QL+ȃ QL+ȃ ̃=t7$,$Ã=t$XfftӍ$IU T$|$l$T$D$t<y$$T$,$$T$T$u\$\$UW=wwUfnp۹#σ+3offtftf#uf#DžEЃSf#3+#I#[DžD_Ut93t;DDžt Gufnf:cG@LBu_ø#fft#Ϻf#ufft@ft뽋3��كE8t3_̃=r_fnpۋT$#+o
Ikr|Nyt^=EXd^r5)'Vr%]TQ"ΥUv"4yxJAY_hnώp[*g;G{K@U-fI$~fRQVՆ pwPʥD$ζɼ5ؙe'ќB1[V$+կnZW0qL)΋}qΦ`\>f^TviE1"BkN;/"f-@4i4X$o.Zy~E7J[GNfwzvip[1tT8G@TQ3|PL<ݥv6TU1jQl=|I[*:R{ufʖt􂈧Iɠ̚*t7+`\NCL^3b Ecᓤ"UhVyb'7jN=#4V}["0Cye||AttUA+^qRSl)6v8-x7&@#"F0TGg84"<<UE۪qzI@$"ꋘQphwnlvDhmqI^.D;acS_M4KVq4̎@,4ءyؙў"'9Tg#eXD<0mѫeIz:;mw36Җ<8:>aN0\e9VwC-Ϣτ@zX0go~mcLY. c;ӇOFjd!;N2SUtxy-7hQ;ɪ܃f.ٶTLp{AHXǼG<AH(v#p0+B'UTTc ;QʍO$)U+T['FӜX#a9ek,O:}ŴBnF$ѥT3#*"2$a'n "ILj|LXN!0RXJBGC.B;SAZ#`6pn
eyd2O|)%~{xmPT2YW"ICĈIE8-6l3&̈́c)l*��eZ!TP^I\z=P[nA=Z'fsmlds6B^EaY6ly:ѣG(lnUy]ஷ5VNҕ+8~Fjm]q=aÜ}5es,\]djjRV*eo>fc~v ",6ޏSخaJ_'K\ԅ%T޽z x!BKBxضsa4W.bJCi%D*ohHCNn$RbOO1´zO{qU]70@Xѕ+T^pzRKh,;SN���AfrbBfL@!ecue9
203126:</WixLocalization>MZ@ !L!This program cannot be run in DOS mode.
339403:HH_艰HH9H(HtH!HLHzH(@SH0HHL$ AHHH\$(HtuHHKu HHH0[Ht H!H@SH@HD$ HHL$(pHtH#HLD$0HT$(HH\$0Htu9HtHH [H3H [HHHhHpHx AWH03HHHuN衺HtAuADd$(H#Hd$ AL3ҋHcu&N3OHHHHHtAL3ҋωl$(HD$ uMHFH#AH\$@Hl$HHt$PH|$XH0A_HHHhHpHx AWH@3HHHuM衹HtAuADHd$8Hd$0d$(Hd$ H#AL3ҋHcuM3XHGHHtHd$8Hd$0AL3ҋωl$(HD$ uLHEH#AH\$PHlB3H(E3APpH(HurJ7HHtH3H(H(Hu:JHYHtH3H(@SH 3HH3HOH7HoHHH [EH\Hl$Ht$WH 3HHH+ًHHH;HGHtHHtHH;rH\$0Hl$8Ht$@H _H\WH 3HHH;suHHtH;rH\$0H _H\Ht$DD$WATAUAVAWH@EDEum3MZfu[Lc@<LA8PEuKA@=t =t3(Av*3A9AxtT 6HHD$ LHt$(LHD$8H|$ H;rv3H9uH;rbHH3HH
3UtH [H\Ht$H|$UATAUAVAWHH@3HHMDH]H9@uH9HuDL5ITCiLHuHcH<H3��9PEu f9QHSH HHIH;
eW,MZ@ !L!This program cannot be run in DOS mode.
`@؃@=@uhpR@`@Yv@t=@ujj`@Y3hS@@$@5܃@@h@h@h@`@@>Ydjh(f3ۉ]dP@3t;u3F3F95@u
ā@f@f@f%@f-@ȁ@E@E��@́@��@Ā@@@@ԃ@=ԃ@}vjXk̀@h e@]U jt)@
t@_^]3Ã=@t3Vjj `@YYV|`@@@ujX^Ã&3^jhhf@Ue5@5`@։Eu`@YeYe5@։E5@։EEPEP5|`@P}u֣@u֣@E
1238713:44.4y4~444444444444444444445`$1122 5$5|55<6@6\6`66 0000 0$00040@0D0P0T0MZ@ !L!This program cannot be run in DOS mode.
1341225:}}utvKYtuVYYhHRtA8csmu9xu3x pHtQȴeRp豱E@RÐڮjhQ3ۋEHt8t3QhXvQUMeuVRQSqHHEsQÐhl9q9ujQuuPU�]Ë@u,}x]ujpYYt2jWYYt$HPQYYE3Ʌ��M3Ʌ��Mq@��Y_^[]ÐUMZfvcH<3��9PEu f9Q]Ëj733333eT3ۉU}zxErˉM9Jv7k};D7}Y};D}IkD0@E��EPRSW]]wUSVWjRhBQ_^[]%Q+t3jXMAE$0,Xa9] t&BE��+WHHXMjXej
1448707:>VWǍVu8Ou _^`_^U)]鿭VjV语Y^qQYUQEPhp?jPth?uPtЋ]mscoree.dllCorExitProcessUYPh?^Ye=4<8}5T=P׋u؅5P׋u}}܃};rwjP9t;rg7PjP5T5P։E5P֋M9M9Eu띐;;Eu)4@t@tPV+YYEfYjhpC*YY3}j3Y!}3u;5
2878369:0000000000000000000000000000000000000000000000000105000000000000}}MZ@ !L!This program cannot be run in DOS mode.
2893616:H$8H_^]@USVATAWH$p&H+H9H3H%3LL$H3DCLDaHuDLL$0L&H7HH$&CLHL$0AH\$ tLHH0HH0LL$0LrHHHHL$&LH\HL$`3A HLD$`3ID$` Aօu0S=At#F=BtHH03LlHH0LL$0LHKH2LHL$0AH\$ t&LHH0HH0LHL$0AH\$ t1LHH0Z(HH0DHH00L$&H_Ht HH$&EËH%H3RHĐ&A_A\^[]@UVATAVAWH$H+H5H3HHMLHL$P3AHE3LD$PIHD$E3HD$DHD$ ?s|$@hHD$DLL$@HHD$(HE3HH$D$DHD$ Hϋ+|$@H$@HD$Ld$0DCE3IHD$(HD$ L$TL$LD$PIH#L+B+Huu0HLL+B+HuthAIHDL|$ AIHAH$H$HH3HA_A^A\^]A3H3H\H|$3IDDHt2HD$(L+Ht E fEtfDHAzIf9AHtLH\H|$HI;w3øW%%%%%%%%%~%p%b%<%.%%r%d%%%%%%%%%%%%<%% %%%%%%%%%%t%f,y$ -L-H,HɃv%%9��pffHL$L\M3LT$L+MBeL%M;sfAMAM;uL$L\H%H(MZf9t38Hc;H
HMHȁ9PEuf9Au3��v+=9H(7H(2@SH H(F+H _øMZf9`t3Hc
2898254:L;rAH(E;r3H\WH HH=\H4t"H+HHHt@$Ѓ3H\$0H _H��MZft3HcH<H3��9PEu f9Q%%%H\$ UHH H|&HeH2-+H;uoHMHEH(+HD$@HtHLD$@HT$8HHL$8TH*HL$@BHHH [H(GH(H\WH HH=HHtH;rH\$0H _H\WH HH=xHHtH;rH\$0H _%J%<%.% %%%%%%%%%%|%n%`%:%,%%%%%%@UH HHHH ]@UH HH3Ɂ8��H ]@UH cH ]Fw.wwwvvvvvvZwFv.v~~~vvuuuuuuuxu~~|~@|d~V~L~D~ ~~}}}}}|}r}d}L}@}2}}||||||||||x|n|d|X|L|6|(||{|r~{{w{~{b{H{.{{zzwztzXz>z z
cosair@DESKTOP-1IUHAB1:/mnt/c/Temp/SamsungExtract$ grep -a -b 'SamsungInstaller64.msi' ~/carved_container.bin || true
cosair@DESKTOP-1IUHAB1:/mnt/c/Temp/SamsungExtract$
 

Nice work — the carved container is there and the manifest/grep show multiple PE (MZ) blobs inside it. We can try two things now:
  • Try to extract the MSI payloads out of the carved container (we’ll attempt automated extraction inside WSL first). This usually works but can be fiddly because the MSIs are bundled inside PE resource data.
  • Or, the simpler, most reliable fallback is to run the Samsung EXE on a working Windows machine (or temporarily attach the NVMe to one) and run Export‑WindowsDriver to get the INF/SYS files directly. I’ll show both — pick which you want to try.
If you want to continue carving/extracting here (Option A)
Run these commands in WSL (you already have carved_container.bin in your home):
1) Try binwalk auto‑extraction (first, quick and often effective)
cd ~
binwalk -e carved_container.bin

then list results (if binwalk created a folder)​

ls -la _carved_container.bin.extracted 2>/dev/null || true
If binwalk found anything, list the nested files and post the listing. If not, continue.
2) Try dumping PE resources (extract embedded resource blobs)
sudo apt update
sudo apt install -y icoutils # provides wrestool and dumpres
mkdir -p ~/carved_resources
wrestool -x -a carved_container.bin -o ~/carved_resources
This will extract resource entries (RCDATA, BIN resources, etc.) into ~/carved_resources. They often contain the embedded MSI/CAB/ZIP payloads.
3) Inspect the extracted resource files for archive/installer signatures
cd ~/carved_resources

look for PK (zip), OLE (MSI), or MZ​

grep -a -n $'\x50\x4b\x03\x04' || true
grep -a -n $'\xD0\xCF\x11\xE0'
|| true
grep -a -n $'\x4d\x5a' * || true

and search for MSI filename strings​

strings * | egrep -i 'samsung|Installer|Setup64|.msi|.cab' || true
4) If you find a resource file that contains a PK or MSI header at offset X (the grep prints filename:offset), carve that resource out to an actual .msi and extract it:

example (replace resourcefile and OFFSET and SIZE with what you find)​

dd if=resourcefile of=~/SamsungInstaller64.msi bs=1 skip=OFFSET count=SIZE status=progress
7z x ~/SamsungInstaller64.msi -o~/msi_contents
find ~/msi_contents -type f -iname '.inf' -o -iname '.sys' -print
If any of the above finds .inf/.sys, copy that folder to Windows so you can use it in Macrium/Hiren:
cp -r ~/msi_contents /mnt/c/Temp/SamsungDriver
Tell me the output from either binwalk (step 1) or the wrestool step (list of files in ~/carved_resources and any grep hits). Paste those listings and I’ll give the exact dd carving offset/count and the 7z commands.
If you prefer the reliable fallback (Option B — Export from working Windows)
This is usually faster and less error‑prone. On a working Windows PC (or one you can temporarily attach the NVMe to), run as Administrator:
1) Run the Samsung installer once (Run as Administrator). Even if it only unpacks, that’s fine.
2) Open an elevated PowerShell and run:
Export-WindowsDriver -Online -Destination X:\ExportedDrivers
(where X: is a USB stick)
3) Inspect X:\ExportedDrivers for a Samsung or NVMe driver folder (should contain .inf and .sys). Copy that folder to the Macrium/Hiren USB. I will then give the exact DISM / pnputil / bcdboot commands you need to inject the driver into your offline Windows image and rebuild the UEFI boot entries.
Which do you want to try?
  • Continue carving here (I’ll walk you through binwalk/wrestool carving and exact dd offsets), or
  • Use Export-WindowsDriver on a working Windows machine (I’ll give the exact PowerShell + copy steps)?
If Option A, post the outputs of:
  • binwalk -e carved_container.bin (the terminal output), and/or
  • ls -la ~/carved_resources and the grep results after running wrestool.
If Option B, tell me whether you have another Windows PC available (or can temporarily attach the NVMe) and I’ll give the exact export and copy steps.
 

@ChatGPT


cosair@DESKTOP-1IUHAB1:~$
cosair@DESKTOP-1IUHAB1:~$ ls -la _carved_container.bin.extracted 2>/dev/null || true
total 8668
drwxr-xr-x 2 cosair cosair 4096 Oct 26 04:30 .
drwxr-x--- 7 cosair cosair 4096 Oct 26 04:30 ..
-rw-r--r-- 1 cosair cosair 3144 Oct 26 04:30 1D1F0
-rw-r--r-- 1 cosair cosair 2906100 Oct 26 04:30 1D1F0.zlib
-rw-r--r-- 1 cosair cosair 193738 Oct 26 04:30 1DC60
-rw-r--r-- 1 cosair cosair 2903428 Oct 26 04:30 1DC60.zlib
-rw-r--r-- 1 cosair cosair 16448 Oct 26 04:30 2F00E
-rw-r--r-- 1 cosair cosair 2832854 Oct 26 04:30 2F00E.zlib
cosair@DESKTOP-1IUHAB1:~$
cosair@DESKTOP-1IUHAB1:~$
cosair@DESKTOP-1IUHAB1:~$
cosair@DESKTOP-1IUHAB1:~$ sudo apt update
install -y icoutils # provides wrestool and dumpres
mkdir -p ~/carved_resources
wrestool -x -a carved_container.bin -o ~/carved_resources[sudo] password for cosair:

Sorry, try again.
[sudo] password for cosair:
Sorry, try again.
[sudo] password for cosair:
Hit:1 Index of /ubuntu noble InRelease
Get:2 Index of /ubuntu noble-updates InRelease [126 kB]
Get:3 Index of /ubuntu noble-security InRelease [126 kB]
Get:4 Index of /ubuntu noble-backports InRelease [126 kB]
Get:5 Index of /ubuntu noble-updates/main amd64 Components [175 kB]
Get:6 Index of /ubuntu noble-updates/universe amd64 Components [378 kB]
Get:7 Index of /ubuntu noble-security/main amd64 Components [21.5 kB]
Get:8 Index of /ubuntu noble-security/universe amd64 Components [52.3 kB]
Get:9 Index of /ubuntu noble-updates/restricted amd64 Components [212 B]
Get:10 Index of /ubuntu noble-updates/multiverse amd64 Components [940 B]
Get:11 Index of /ubuntu noble-backports/main amd64 Components [7124 B]
Get:12 Index of /ubuntu noble-backports/universe amd64 Components [11.0 kB]
Get:13 Index of /ubuntu noble-backports/restricted amd64 Components [212 B]
Get:14 Index of /ubuntu noble-backports/multiverse amd64 Components [212 B]
Get:15 Index of /ubuntu noble-security/restricted amd64 Components [212 B]
Get:16 Index of /ubuntu noble-security/multiverse amd64 Components [208 B]
Fetched 1025 kB in 2s (490 kB/s)
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
46 packages can be upgraded. Run 'apt list --upgradable' to see them.
cosair@DESKTOP-1IUHAB1:~$
cosair@DESKTOP-1IUHAB1:~$
cosair@DESKTOP-1IUHAB1:~$ cd ~/carved_resources
-bash: cd: /home/cosair/carved_resources: No such file or directory
cosair@DESKTOP-1IUHAB1:~$
cosair@DESKTOP-1IUHAB1:~$
cosair@DESKTOP-1IUHAB1:~$ grep -a -n $'\x50\x4b\x03\x04' || true
a -n $'\xD0\xCF\x11\xE0' || true
grep -a -n $'\x4d\x5a' * || true
 

Good — you don’t need sudo or wrestool right now. The carved container was auto‑extracted into ~/ _carved_container.bin.extracted and those big .zlib pieces (1D1F0.zlib, 1DC60.zlib, 2F00E.zlib) very likely contain the MSI payloads. Let’s decompress those blobs (no sudo required) and search the results for PK/MZ/MSI headers.
Run these commands (paste each line, press Enter) from your home prompt:
cd ~/ _carved_container.bin.extracted

decompress every .zlib into a .dec file (shows status)​

for f in *.zlib; do
out="${f%.zlib}.dec"
echo "Processing: $f -> $out"
python3 -c "import zlib,sys;data=open(sys.argv[1],'rb').read();open(sys.argv[2],'wb').write(zlib.decompress(data));print('wrote',sys.argv[2])" "$f" "$out" \
&& echo " OK -> $out" || echo " FAILED -> $f"
done
When that finishes, inspect the decompressed files:

file type summary​

file *.dec

look for ZIP/MSI/PE signatures and show a head + some strings for each .dec​

for g in *.dec; do
echo "=== $g ==="
head -c 64 "$g" | hexdump -C
strings -a -n 8 "$g" | sed -n '1,50p'
done

search recursively for .msi/.cab/.inf/.sys in case 7z already produced something​

find . -type f ( -iname '.msi' -o -iname '.cab' -o -iname '.inf' -o -iname '.sys' ) -print
What to paste back here
  • The lines printed by the decompression loop (OK/FAILED).
  • The full output of file *.dec.
  • The first blocks from the for g in *.dec loop (you can paste everything; I’ll scan for MZ/PK/.inf/.sys).
If you find a file where file reports "Zip" or "MS-DOS executable (MZ)" or the strings show ".msi" or "PK", tell me which .dec it is and I’ll give the exact 7z/dd commands to extract the MSI and then extract INF/SYS from it. This is the same flow we used earlier when decompressing the first set of blobs. fileciteturn1file8turn2file8
If the decompress loop fails (FAILED) for any file
  • Paste the FAILED lines and the error text (if any). We can retry a single-file verbose test or carve that particular piece differently.
If you prefer to skip carving and use the easier fallback
  • You can run the Samsung EXE on any working Windows machine (or temporarily attach the NVMe to one) and run in elevated PowerShell:
    Export-WindowsDriver -Online -Destination X:\ExportedDrivers
    That will give you a ready folder with the INF/SYS files to copy straight into your rescue environment. I can provide those exact PowerShell steps again if you want that route.
Run the decompress + inspect commands above and paste the outputs — I’ll take it from there and give the exact extraction / DISM injection steps.
 

@ChatGPT

The Ubuntu window seems to be stuck after I invoked:

grep -a -n $'\x50\x4b\x03\x04' || true
a -n $'\xD0\xCF\x11\xE0' || true
grep -a -n $'\x4d\x5a' * || true

....the command line never came back, what do I do?
 

You’re not stuck — the shell is waiting because the grep line you pasted was malformed and grep was reading stdin (so it looked like it “hung”). Do this now:
1) Abort the running grep
  • Press Ctrl+C in the Ubuntu window. That will return the prompt.
2) Why it hung (brief)
  • You pasted something like: grep -a -n $'…' || true a -n $'…' …
  • When grep has no filename arguments it reads from stdin and waits for input — so it appears to hang. (That’s why the prompt never returned.)
3) Confirm you’re back and where you are
Paste and run:
Ctrl+C
pwd
ls -la
(If Ctrl+C already returned you a prompt, skip the first Ctrl+C line.)
4) Run the correct, safe greps (they won’t hang)
These search carved_container.bin (or the extracted folder) for PK/MZ/MSI signatures and will return immediately:
cd /mnt/c/Temp/SamsungExtract

search the original combined.bin for PK / MZ / MSI filename (these will print offsets)​

grep -a -b $'\x50\x4b\x03\x04' combined.bin || true
grep -a -b $'\x4d\x5a' combined.bin || true
grep -a -b 'SamsungInstaller64.msi' combined.bin || true
If you want to search the smaller carved container instead:
cd ~
grep -a -b $'\x50\x4b\x03\x04' carved_container.bin || true
grep -a -b $'\x4d\x5a' carved_container.bin || true
grep -a -b 'SamsungInstaller64.msi' carved_container.bin || true
5) Next (if grep returns offsets)
  • If you get offsets (lines like "394394:…"), paste them here and I’ll give the exact dd carve command to extract the MSI and the 7z commands to unpack it. That’s the path we were using to get the .msi and then the .inf/.sys files.
6) If you want to continue with the decompression/extraction we used earlier
  • Use the decompression loop (runs per-file and prints OK/FAILED) — paste and run this from the directory that contains the .zlib pieces (for example ~/ _carved_container.bin.extracted):
cd ~/ _carved_container.bin.extracted
for f in *.zlib; do
out="${f%.zlib}.dec"
echo "Processing: $f -> $out"
python3 -c "import zlib,sys;data=open(sys.argv[1],'rb').read();open(sys.argv[2],'wb').write(zlib.decompress(data))" "$f" "$out" && echo " OK -> $out" || echo " FAILED -> $f"
done
Then inspect:
file .dec
for g in
.dec; do echo "=== $g ==="; head -c 64 "$g" | hexdump -C; strings -a -n 8 "$g" | sed -n '1,30p'; done
That flow is what finds PK / MZ headers or MSI filenames inside the decompressed blobs.
7) If anything blocks or a command seems to “hang” again
  • Press Ctrl+C, paste the exact command you ran and the last line(s) of output, and I’ll tell you what happened and the fix.
If you want, press Ctrl+C now, run the three safe grep commands in step 4 and paste their output — I’ll pick the exact dd carve or extraction command next.
 

@ChatGPT


cosair@DESKTOP-1IUHAB1:~$ pwd
/home/cosair
cosair@DESKTOP-1IUHAB1:~$ ls -la
total 6360
drwxr-x--- 7 cosair cosair 4096 Oct 26 04:30 .
drwxr-xr-x 3 root root 4096 Oct 26 00:34 ..
-rw-r--r-- 1 cosair cosair 220 Oct 26 00:34 .bash_logout
-rw-r--r-- 1 cosair cosair 3771 Oct 26 00:34 .bashrc
drwx------ 2 cosair cosair 4096 Oct 26 00:34 .cache
drwxr-xr-x 3 cosair cosair 4096 Oct 26 00:45 .config
-rw-rw-r-- 1 cosair cosair 0 Oct 26 00:34 .motd_shown
-rw-r--r-- 1 cosair cosair 807 Oct 26 00:34 .profile
-rw-r--r-- 1 cosair cosair 0 Oct 26 00:39 .sudo_as_admin_successful
drwxr-xr-x 2 cosair cosair 4096 Oct 26 04:30 _carved_container.bin.extracted
drwxr-xr-x 2 cosair cosair 4096 Oct 26 03:44 _combined.bin.extracted
-rw-r--r-- 1 cosair cosair 3025380 Oct 26 04:15 carved_container.bin
drwxr-xr-x 2 cosair cosair 4096 Oct 26 04:17 carved_extracted
-rwxr-xr-x 1 cosair cosair 3440464 Oct 26 00:52 combined.bin
-rwxr-xr-x 1 cosair cosair 356 Oct 26 03:36 decompress.sh
cosair@DESKTOP-1IUHAB1:~$ cd /mnt/c/Temp/SamsungExtract
cosair@DESKTOP-1IUHAB1:/mnt/c/Temp/SamsungExtract$
cosair@DESKTOP-1IUHAB1:/mnt/c/Temp/SamsungExtract$
cosair@DESKTOP-1IUHAB1:/mnt/c/Temp/SamsungExtract$ grep -a -b $'\x50\x4b\x03\x04' combined.bin || true
rep -a -b $'\x4d\x5a' combined.bin || true
grep -a -b 'SamsungInstaller64.msi' combined.bin || true
If you want to search the smaller carved container instead:
cd ~
grep -a -b $'\x50\x4b\x03\x04' carved_container.bin || true
grep -a -b $'\x4d\x5a' carved_container.bin || true
grep -a -b 'SamsungInstaller64.msi' carved_container.bin || truecosair@DESKTOP-1IUHAB1:/mnt/c/Temp/SamsungExtract$ grep -a -b $'\x4d\x5a' combined.bin || true
0:<?xml version="1.0" encoding="utf-8"?><BurnManifest xmlns="http://schemas.microsoft.com/wix/2008/Burn"><Log PathVariable="WixBundleLog" Prefix="Samsung_NVM_Express_Driver" Extension="log" /><RelatedBundle Id="{2C81F0BB-1891-4E83-B71A-5160BA33D985}" Action="Upgrade" /><Variable Id="InstallFolder" Value="[ProgramFiles6432Folder]Samsung" Type="string" Hidden="no" Persisted="no" /><Variable Id="InstallFolder2" Value="[WindowsVolume]Database" Type="string" Hidden="no" Persisted="no" /><Variable Id="InstallFor950Pro" Value="0" Type="numeric" Hidden="no" Persisted="yes" /><Variable Id="InstallFor960Pro" Value="0" Type="numeric" Hidden="no" Persisted="yes" /><Variable Id="InstallFor970Pro" Value="0" Type="numeric" Hidden="no" Persisted="yes" /><Variable Id="WixBundleName" Hidden="no" Persisted="yes" /><Variable Id="WixBundleOriginalSource" Hidden="no" Persisted="yes" /><Variable Id="WixBundleOriginalSourceFolder" Hidden="no" Persisted="yes" /><Variable Id="WixBundleLastUsedSource" Hidden="no" Persisted="yes" /><UX><Payload Id="WixExtendedBootstrapperApplication.RtfLicense" FilePath="wixextba.dll" FileSize="365056" Hash="9F10260B4E0AD03FF9FD0BF74A67C8EE9166DD18" Packaging="embedded" SourcePath="u0" /><Payload Id="pay4E55814D3465BD825A900D4E476A7FF5" FilePath="LanguageStrResourceDll.dll" FileSize="12800" Hash="6493DF4A2E80E4F63B40E3C38D054230DD1D2BA6" Packaging="embedded" SourcePath="u1" /><Payload Id="pay0BDF3F8E435D28361663B09228DB8D10" FilePath="bafunctions.dll" FileSize="118784" Hash="66508881D96783365E8B3621E8C429E6D20D7627" Packaging="embedded" SourcePath="u2" /><Payload Id="pay238E42762165CEDC4EA0F0A3251B6002" FilePath="LogoSide.png" FileSize="73240" Hash="C44B67E85D4E3A57C21376509951B91E5E048274" Packaging="embedded" SourcePath="u3" /><Payload Id="pay02C4439962C5537EAD143C98CA74A90C" FilePath="Samsung_Logo.png" FileSize="1932" Hash="C4A1945B4993C46099ACB527CBEAB5404368E539" Packaging="embedded" SourcePath="u4" /><Payload Id="pay22B5552D4B727F05823B5978B6FC175A" FilePath="x86\Uninstaller.bat" FileSize="1614" Hash="66615F6B570F467FC1032686E01E40883583BEBB" Packaging="embedded" SourcePath="u5" /><Payload Id="pay2A5C56CBDEA2EB7586D3F3CAC4FC7ED1" FilePath="x64\UninstallerRemoveRescan.bat" FileSize="617" Hash="F8F742773B2FE74CFD6B972019A02DAA85FD1E50" Packaging="embedded" SourcePath="u6" /><Payload Id="pay37D44CC96067E7467F68165214F1F3E4" FilePath="thm.wxl" FileSize="6546" Hash="B2684EE200043BC6701878DFD89C214754B73395" Packaging="embedded" SourcePath="u7" /><Payload Id="pay6EC8ED614A08C0C2814A1EFED57891BF" FilePath="x64\msvcr120.dll" FileSize="963232" Hash="62CB65A1D79E2C5ADA0C7BFC04C18693567C90D0" Packaging="embedded" SourcePath="u8" /><Payload Id="pay63EF8BBEE9F2C8FFD6A4F2E07807539C" FilePath="x86\SamsungFinder.exe" FileSize="72704" Hash="145C70117478EF095A9FBDEAF9FBF6F9DCBAE7B7" Packaging="embedded" SourcePath="u9" /><Payload Id="pay0D95A40934D4350B284AF9401A942682" FilePath="x86\msvcr120.dll" FileSize="970912" Hash="F19E9D8317161EDC7D3E963CC0FC46BD5E4A55A1" Packaging="embedded" SourcePath="u10" /><Payload Id="EULA-en_US" FilePath="1033\License.rtf" FileSize="39598" Hash="86DFB04B1E6B2005ADA603CB68AF787EE4A7005A" Packaging="embedded" SourcePath="u11" /><Payload Id="EULA-kr_KR" FilePath="1042\License.rtf" FileSize="107818" Hash="42EFEB7CB16395F24985484BB9C3ED3E8E35533F" Packaging="embedded" SourcePath="u12" /><Payload Id="EULA-de_DE" FilePath="1031\License.rtf" FileSize="45415" Hash="138F12A36801A6C8DC3FD8E18035501E6990D286" Packaging="embedded" SourcePath="u13" /><Payload Id="EULA-es_ES" FilePath="3082\License.rtf" FileSize="42121" Hash="0DDE63D195645396AE233E4C8B2345F088AD5E5F" Packaging="embedded" SourcePath="u14" /><Payload Id="EULA-fr_FR" FilePath="1036\License.rtf" FileSize="45905" Hash="8F96CBF48FD3FA7C8D5F7D1DFADCA935E76154B5" Packaging="embedded" SourcePath="u15" /><Payload Id="EULA-it_IT" FilePath="1040\License.rtf" FileSize="44009" Hash="66925580D38D03A1F9E62495CB14C13AB3D86B52" Packaging="embedded" SourcePath="u16" /><Payload Id="EULA-ja_JA" FilePath="1041\License.rtf" FileSize="76778" Hash="40C3A60A9D4229BEB5907CA2720E0B4AA646A47F" Packaging="embedded" SourcePath="u17" /><Payload Id="EULA-ru_RU" FilePath="1049\License.rtf" FileSize="101897" Hash="F7196E14032837816422A2FE72EA9173DADB471E" Packaging="embedded" SourcePath="u18" /><Payload Id="EULA-zh_CN" FilePath="2052\License.rtf" FileSize="66170" Hash="D6E779034A470B7191299DC5295CF0A38DCAED1B" Packaging="embedded" SourcePath="u19" /><Payload Id="EULA-pt_PT" FilePath="2070\License.rtf" FileSize="42864" Hash="03D695832B785F288B08AF66369E71F5DB61C26C" Packaging="embedded" SourcePath="u20" /><Payload Id="Licensefile" FilePath="license.txt" FileSize="1324" Hash="E76CF6925E4AEB8CA5893A4C50822A4F81EB0614" Packaging="embedded" SourcePath="u21" /><Payload Id="pay8D808CAB1BE0B77B63CFFC21BE0A7985" FilePath="thm.xml" FileSize="14066" Hash="5508AE5A30C0F02F1FF84CBD88759A9D591B6EA6" Packaging="embedded" SourcePath="u22" /><Payload Id="pay9197360B6F52E0411712FCC415C62EA4" FilePath="Logo.png" FileSize="880" Hash="7AC786C5C6A7AFFE7B318B9A8E5869586BECBC67" Packaging="embedded" SourcePath="u23" /><Payload Id="pay8D3AAAB4ADC107744F4D0A670E63B940" FilePath="license.rtf" FileSize="39598" Hash="86DFB04B1E6B2005ADA603CB68AF787EE4A7005A" Packaging="embedded" SourcePath="u24" /><Payload Id="payCE93F1637FCE9D49C985C1D29204F86D" FilePath="x64\SamsungFinder.exe" FileSize="78336" Hash="BE8D8164BF090823E891482B09171E5DBACD807B" Packaging="embedded" SourcePath="u25" /><Payload Id="payA72DAF1CACAA2F67306BDC28FE09FC2B" FilePath="x64\Uninstaller.bat" FileSize="1614" Hash="66615F6B570F467FC1032686E01E40883583BEBB" Packaging="embedded" SourcePath="u26" /><Payload Id="pay91E7308ABF3147BF5DB6B818F7C1ADB9" FilePath="x86\UninstallerRemoveRescan.bat" FileSize="617" Hash="F8F742773B2FE74CFD6B972019A02DAA85FD1E50" Packaging="embedded" SourcePath="u27" /><Payload Id="payAB1D07DC50674E4D2D7090EFD66F1A76" FilePath="x64\RepairUpdatePnP.bat" FileSize="2499" Hash="16AE256CD1F2817B4F2907F7C9CFC3EE5C8BB1C4" Packaging="embedded" SourcePath="u28" /><Payload Id="pay9FD591C172DF943EE76A211DBA110AA7" FilePath="x86\RepairUpdatePnP.bat" FileSize="2499" Hash="16AE256CD1F2817B4F2907F7C9CFC3EE5C8BB1C4" Packaging="embedded" SourcePath="u29" /><Payload Id="str-en_US" FilePath="1033\thm.wxl" FileSize="6546" Hash="B2684EE200043BC6701878DFD89C214754B73395" Packaging="embedded" SourcePath="u30" /><Payload Id="str-kr_KR" FilePath="1042\thm.wxl" FileSize="7082" Hash="51286741E1B2587F26F0A83FF898CFC0BC09EE86" Packaging="embedded" SourcePath="u31" /><Payload Id="str-de_DE" FilePath="1031\thm.wxl" FileSize="7245" Hash="BA6D1A7972C4060D24270EB71B424E7C95012772" Packaging="embedded" SourcePath="u32" /><Payload Id="str-es_ES" FilePath="3082\thm.wxl" FileSize="7016" Hash="D2F7B357C38F045492E5A083EE54E3AB58A3B86E" Packaging="embedded" SourcePath="u33" /><Payload Id="str-fr_FR" FilePath="1036\thm.wxl" FileSize="7177" Hash="4688E85751B8112B91CC12EB8B76623215A52AAB" Packaging="embedded" SourcePath="u34" /><Payload Id="str-it_IT" FilePath="1040\thm.wxl" FileSize="6987" Hash="88844B0B70F6A5CE17619D327CD4548480B6C859" Packaging="embedded" SourcePath="u35" /><Payload Id="str-ja_JA" FilePath="1041\thm.wxl" FileSize="8098" Hash="820AEAE32E44D8355A80410AF3F3508D9304EC17" Packaging="embedded" SourcePath="u36" /><Payload Id="str-ru_RU" FilePath="1049\thm.wxl" FileSize="9007" Hash="FC122450897392DA791B7CFA72632F5B99B643B2" Packaging="embedded" SourcePath="u37" /><Payload Id="str-zh_CN" FilePath="2052\thm.wxl" FileSize="6135" Hash="3C120776F9BE15C3E63550CC05EC7200D2DDB988" Packaging="embedded" SourcePath="u38" /><Payload Id="str-pt_PT" FilePath="2070\thm.wxl" FileSize="6957" Hash="AFD5D9577B7EE6D32DADE72033EB11A15BF28A63" Packaging="embedded" SourcePath="u39" /><Payload Id="ux018A3672B47BC33C533DBA884702200B" FilePath="BootstrapperApplicationData.xml" FileSize="9820" Hash="48E12E3EABA0F71BFC5CE7C19EC3134ADFE24080" Packaging="embedded" SourcePath="u40" /></UX><Container Id="WixAttachedContainer" FileSize="3025380" Hash="E0C8BA3BDE63836B6A7E63FAF6B315EEA4739A4D" FilePath="Samsung NVM Express Driver.exe" AttachedIndex="1" Attached="yes" Primary="yes" /><Payload Id="Setup64" FilePath="SamsungInstaller64.msi" FileSize="1212416" Hash="4B3066C4021ED54F784013AB0CECE1F17CCF829B" Packaging="embedded" SourcePath="a0" Container="WixAttachedContainer" /><Payload Id="Setup32" FilePath="SamsungInstaller32.msi" FileSize="819200" Hash="526AB42C1A0A218F8026A11F9524ACBFF7A0B761" Packaging="embedded" SourcePath="a1" Container="WixAttachedContainer" /><Payload Id="Setup32Samsung960Pro" FilePath="Samsung960ProInstaller32.msi" FileSize="819200" Hash="07711CF386EFCA3733380BD56A54F4EDA6B0B7A8" Packaging="embedded" SourcePath="a2" Container="WixAttachedContainer" /><Payload Id="Setup64Samsung960Pro" FilePath="Samsung960ProInstaller64.msi" FileSize="1212416" Hash="FE578D331AC661CA293711CE9A111CE438D7D6FC" Packaging="embedded" SourcePath="a3" Container="WixAttachedContainer" /><Payload Id="Setup32Samsung970Pro" FilePath="Samsung970ProInstaller32.msi" FileSize="819200" Hash="5C79214CBA555E85C69155A6F6314922A374A81A" Packaging="embedded" SourcePath="a4" Container="WixAttachedContainer" /><Payload Id="Setup64Samsung970Pro" FilePath="Samsung970ProInstaller64.msi" FileSize="1212416" Hash="7D11AFEEBDF730B613A81CEB08B9D5534E821DF2" Packaging="embedded" SourcePath="a5" Container="WixAttachedContainer" /><RollbackBoundary Id="WixDefaultBoundary" Vital="yes" /><Registration Id="{ff94c273-58d5-40b5-b03a-9bd41d5cff1e}" ExecutableName="Samsung NVM Express Driver.exe" PerMachine="yes" Tag="" Version="3.3.0.2003" ProviderKey="{ff94c273-58d5-40b5-b03a-9bd41d5cff1e}"><Arp Register="yes" DisplayName="Samsung NVM Express Driver" DisplayVersion="3.3.0.2003" Publisher="Samsung Electronics Co., Ltd" HelpLink="Mobile | TV | Home Electronics | Home Appliances | Samsung US | Samsung US" AboutUrl="http://www.samsung.com" UpdateUrl="http://www.samsung.com" DisableModify="yes" /></Registration><Chain DisableSystemRestore="yes"><MsiPackage Id="Setup64" Cache="yes" CacheId="{6D29AC99-C940-4FA7-AAD0-309C67F7301A}v3.3.0.2003" InstallSize="427696" Size="1212416" PerMachine="yes" Permanent="no" Vital="yes" RollbackBoundaryForward="WixDefaultBoundary" LogPathVariable="WixBundleLog_Setup64" RollbackLogPathVariable="WixBundleRollbackLog_Setup64" InstallCondition="InstallFor950Pro AND VersionNT64" ProductCode="{6D29AC99-C940-4FA7-AAD0-309C67F7301A}" Language="1033" Version="3.3.0.2003" DisplayInternalUI="no"><MsiProperty Id="ALLUSERS" Value="1" /><MsiProperty Id="ARPSYSTEMCOMPONENT" Value="1" /><MsiProperty Id="MSIFASTINSTALL" Value="7" /><MsiProperty Id="APPLICATIONFOLDER" Value="[InstallFolder]" /><MsiProperty Id="PAYLOADFOLDER" Value="[PayLoadSourceFolder]" /><Provides Key="{6D29AC99-C940-4FA7-AAD0-309C67F7301A}" Version="3.3.0.2003" DisplayName="Samsung NVM Express Driver 3.3.0.2003" /><RelatedPackage Id="{A2B8FBB1-4884-4AC7-B880-AE2491E1F473}" MaxVersion="3.3.0.2003" MaxInclusive="no" OnlyDetect="no" /><RelatedPackage Id="{A2B8FBB1-4884-4AC7-B880-AE2491E1F473}" MinVersion="3.3.0.2003" MinInclusive="no" OnlyDetect="yes" /><PayloadRef Id="Setup64" /></MsiPackage><MsiPackage Id="Setup32" Cache="yes" CacheId="{55A56351-BF8A-40E4-9F61-A0B9713F1CBC}v3.3.0.2003" InstallSize="372968" Size="819200" PerMachine="yes" Permanent="no" Vital="yes" LogPathVariable="WixBundleLog_Setup32" RollbackLogPathVariable="WixBundleRollbackLog_Setup32" InstallCondition="InstallFor950Pro AND NOT VersionNT64" ProductCode="{55A56351-BF8A-40E4-9F61-A0B9713F1CBC}" Language="1033" Version="3.3.0.2003" DisplayInternalUI="no"><MsiProperty Id="ALLUSERS" Value="1" /><MsiProperty Id="ARPSYSTEMCOMPONENT" Value="1" /><MsiProperty Id="MSIFASTINSTALL" Value="7" /><MsiProperty Id="APPLICATIONFOLDER" Value="[InstallFolder]" /><MsiProperty Id="PAYLOADFOLDER" Value="[PayLoadSourceFolder]" /><Provides Key="{55A56351-BF8A-40E4-9F61-A0B9713F1CBC}" Version="3.3.0.2003" DisplayName="Samsung NVM Express Driver 3.3.0.2003" /><RelatedPackage Id="{A2B8FBB1-4884-4AC7-B880-AE2491E1F473}" MaxVersion="3.3.0.2003" MaxInclusive="no" OnlyDetect="no" /><RelatedPackage Id="{A2B8FBB1-4884-4AC7-B880-AE2491E1F473}" MinVersion="3.3.0.2003" MinInclusive="no" OnlyDetect="yes" /><PayloadRef Id="Setup32" /></MsiPackage><MsiPackage Id="Setup32Samsung960Pro" Cache="yes" CacheId="{36AB6526-4CAC-4B6D-9B8C-F5DD4525A4D7}v3.3.0.2003" InstallSize="372968" Size="819200" PerMachine="yes" Permanent="no" Vital="yes" LogPathVariable="WixBundleLog_Setup32Samsung960Pro" RollbackLogPathVariable="WixBundleRollbackLog_Setup32Samsung960Pro" InstallCondition="InstallFor960Pro AND NOT VersionNT64" ProductCode="{36AB6526-4CAC-4B6D-9B8C-F5DD4525A4D7}" Language="1033" Version="3.3.0.2003" DisplayInternalUI="no"><MsiProperty Id="ALLUSERS" Value="1" /><MsiProperty Id="ARPSYSTEMCOMPONENT" Value="1" /><MsiProperty Id="MSIFASTINSTALL" Value="7" /><MsiProperty Id="APPLICATIONFOLDER" Value="[InstallFolder]" /><MsiProperty Id="PAYLOADFOLDER" Value="[PayLoadSourceFolder]" /><Provides Key="{36AB6526-4CAC-4B6D-9B8C-F5DD4525A4D7}" Version="3.3.0.2003" DisplayName="Samsung NVM Express Driver 3.3.0.2003" /><RelatedPackage Id="{1ECD0931-E1B1-4E41-902E-AEEA9E055301}" MaxVersion="3.3.0.2003" MaxInclusive="no" OnlyDetect="no" /><RelatedPackage Id="{1ECD0931-E1B1-4E41-902E-AEEA9E055301}" MinVersion="3.3.0.2003" MinInclusive="no" OnlyDetect="yes" /><PayloadRef Id="Setup32Samsung960Pro" /></MsiPackage><MsiPackage Id="Setup64Samsung960Pro" Cache="yes" CacheId="{DC753502-B4E6-4E0A-90C7-14A264853344}v3.3.0.2003" InstallSize="427696" Size="1212416" PerMachine="yes" Permanent="no" Vital="yes" LogPathVariable="WixBundleLog_Setup64Samsung960Pro" RollbackLogPathVariable="WixBundleRollbackLog_Setup64Samsung960Pro" InstallCondition="InstallFor960Pro AND VersionNT64" ProductCode="{DC753502-B4E6-4E0A-90C7-14A264853344}" Language="1033" Version="3.3.0.2003" DisplayInternalUI="no"><MsiProperty Id="ALLUSERS" Value="1" /><MsiProperty Id="ARPSYSTEMCOMPONENT" Value="1" /><MsiProperty Id="MSIFASTINSTALL" Value="7" /><MsiProperty Id="APPLICATIONFOLDER" Value="[InstallFolder]" /><MsiProperty Id="PAYLOADFOLDER" Value="[PayLoadSourceFolder]" /><Provides Key="{DC753502-B4E6-4E0A-90C7-14A264853344}" Version="3.3.0.2003" DisplayName="Samsung NVM Express Driver 3.3.0.2003" /><RelatedPackage Id="{1ECD0931-E1B1-4E41-902E-AEEA9E055301}" MaxVersion="3.3.0.2003" MaxInclusive="no" OnlyDetect="no" /><RelatedPackage Id="{1ECD0931-E1B1-4E41-902E-AEEA9E055301}" MinVersion="3.3.0.2003" MinInclusive="no" OnlyDetect="yes" /><PayloadRef Id="Setup64Samsung960Pro" /></MsiPackage><MsiPackage Id="Setup32Samsung970Pro" Cache="yes" CacheId="{39A44D96-7AEA-49C4-B1A0-DD9BC74C6413}v3.3.0.2003" InstallSize="372968" Size="819200" PerMachine="yes" Permanent="no" Vital="yes" LogPathVariable="WixBundleLog_Setup32Samsung970Pro" RollbackLogPathVariable="WixBundleRollbackLog_Setup32Samsung970Pro" InstallCondition="InstallFor970Pro AND NOT VersionNT64" ProductCode="{39A44D96-7AEA-49C4-B1A0-DD9BC74C6413}" Language="1033" Version="3.3.0.2003" DisplayInternalUI="no"><MsiProperty Id="ALLUSERS" Value="1" /><MsiProperty Id="ARPSYSTEMCOMPONENT" Value="1" /><MsiProperty Id="MSIFASTINSTALL" Value="7" /><MsiProperty Id="APPLICATIONFOLDER" Value="[InstallFolder]" /><MsiProperty Id="PAYLOADFOLDER" Value="[PayLoadSourceFolder]" /><Provides Key="{39A44D96-7AEA-49C4-B1A0-DD9BC74C6413}" Version="3.3.0.2003" DisplayName="Samsung NVM Express Driver 3.3.0.2003" /><RelatedPackage Id="{870DDEB2-2DBF-4D47-A2A2-C6A6C337A168}" MaxVersion="3.3.0.2003" MaxInclusive="no" OnlyDetect="no" /><RelatedPackage Id="{870DDEB2-2DBF-4D47-A2A2-C6A6C337A168}" MinVersion="3.3.0.2003" MinInclusive="no" OnlyDetect="yes" /><PayloadRef Id="Setup32Samsung970Pro" /></MsiPackage><MsiPackage Id="Setup64Samsung970Pro" Cache="yes" CacheId="{89D55DD5-FE94-497B-B5E5-91915D52DBF2}v3.3.0.2003" InstallSize="427696" Size="1212416" PerMachine="yes" Permanent="no" Vital="yes" RollbackBoundaryBackward="WixDefaultBoundary" LogPathVariable="WixBundleLog_Setup64Samsung970Pro" RollbackLogPathVariable="WixBundleRollbackLog_Setup64Samsung970Pro" InstallCondition="InstallFor970Pro AND VersionNT64" ProductCode="{89D55DD5-FE94-497B-B5E5-91915D52DBF2}" Language="1033" Version="3.3.0.2003" DisplayInternalUI="no"><MsiProperty Id="ALLUSERS" Value="1" /><MsiProperty Id="ARPSYSTEMCOMPONENT" Value="1" /><MsiProperty Id="MSIFASTINSTALL" Value="7" /><MsiProperty Id="APPLICATIONFOLDER" Value="[InstallFolder]" /><MsiProperty Id="PAYLOADFOLDER" Value="[PayLoadSourceFolder]" /><Provides Key="{89D55DD5-FE94-497B-B5E5-91915D52DBF2}" Version="3.3.0.2003" DisplayName="Samsung NVM Express Driver 3.3.0.2003" /><RelatedPackage Id="{870DDEB2-2DBF-4D47-A2A2-C6A6C337A168}" MaxVersion="3.3.0.2003" MaxInclusive="no" OnlyDetect="no" /><RelatedPackage Id="{870DDEB2-2DBF-4D47-A2A2-C6A6C337A168}" MinVersion="3.3.0.2003" MinInclusive="no" OnlyDetect="yes" /><PayloadRef Id="Setup64Samsung970Pro" /></MsiPackage></Chain></BurnManifest>MZ@ !L!This program cannot be run in DOS mode.
125518:j:Y]UVtu|-t*u&h訏Yt2Wh蕏YDuWj Y+ȃ3EEEEEuE_^]jhveMZf9u`<PEuOf9uA+PQYYt*@$u!EE3Ɂ8��ËeE2<U
Y__^[]QU3ʼnESV3VSh@66u9VS6V6u#WuSSV6u3{h6Wth6W؅th6WtPjjh6hօtۍEEW딍PPPjhL7W9,I3f9Mj\Xf9Mt fMA+��A=6<OYh SPf&5uWuSP5ƋM_^3[]UEL3Ƀ EVjNEPVu3Juuu4tEMZfu׋H<~ȁ9PEuQ+S33Wyt$;1r +;q@(;r;t@=Eu9=ui=t %W?tBhd7Pt"3EPWWEЋPWWWuփ u3]}؋}0w=A2'}MQhx7jpNօ}3PPP7EPSuN (V }MeQphք}eG}EjPEԋ7PEPvEPjքtCE;EuM;w E;r}օuEPjP}0k֋}p@X֋}܋p8E֋}r,2֋E_[^]ËEt=sPjPEt}PEP73PPPvEPք��EG+];<3A9Mv;rA;MrDM%}3��7PPPvpEPuuք��EEU%,S3C j
160413:ueYeuh(hYYh0h,YYuE'u,*E0Ëuj&Y[ËU*t d0@uPOYLjȅu2øMZf9uA<��8PEuf9HuۃxtvՃ^}t3ʼnuM3Mk]ËU]jjjËUjj]áÃ=t3VW.1u*V0YuP3jYVY_^ËUQQSVW3ҋ<=tB΍YAu+FuBjPYYtm]RύQAu+ʀ?=AEFI;u^]h?Jh?;55YYjhXwe0"YeMW~VY;uM_3^|i]U;tPyY]ËU;tP^Y]ËUA+уV3;
Y_^[]UMZft3]ËH<3��9PEu f9Q]Pd5D$+d$SVW(衐3PeuEEdVD$u(L$D$3؋Dd$ȋd$Gȋ\$T$Dud$ȋD$r;T$r;Dv N+D$$3+D$؃ʋӋًȋ^h@d5D$l$l$+SVW1E3ʼnEPeuEEEEdËM3,WVU33D$}GET$ڃD$T$D$}GT$ڃD$T$u(L$D$3؋D$d$ȋd$G؋L$T$D$ud$ȋD$r;T$r;D$v N+D$$3+D$$My؃ʋӋًȋOu؃]^_̀@s sË3Ҁ33QL+ȃJQL+ȃ4̃=t7$,$Ã=t$XfftӍ$IU T$|$l$T$D$t<y$$T$,$$T$T$u\$\$UW=wwUfnp۹#σ+3offtftf#uf#DžEЃSf#3+#I#[DžD_Ut93t;DDžt Gufnf:cG@LBu_ø#fft#Ϻf#ufft@ft뽋3��كE8t3_̃=r_fnpۋT$#+o
378494:11%1*10151C1g11112-282222223%323?3V3444444(5\5d5}5555556k6C7778k8888S999:}; 162 ::H:O:y=n>v>>>145559919C9U9g9y9999999-;s;;<<<3=B=P=m=u=======0>7>>>>z????L0R021r111242X2c2p2222g3|33333344445'5755566$6C6a666"7@778,888909c999!:}:;;;;_<i<<6====>>>>112A33\44444444Q5]5q5}55556"6?6O6[6j6n777858I8T88)99E::::;;<<L<]<e<u<<<<==S=~======>0>u>>>>>>P?????X/000=1z111222F334p4446O7j7777:;<=>>>>>>>6?;?M?k???<901122V345626R6r6667U777'8j888*9R9m9`3333333333334444 4$45,7\77777899::::\;;;; <@<t<<<<=9999999999999999999999999::::::: :$:(:,:0:4:8:<:@:D:H:L:P:T:X:\:`:d:h:l:p:t:x:|:::::::X;\;`;d;h;l;p;t;x;|;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;<<<<<<< <$<(<,<0<4<8<<<@<D<H<L<P< @<D<H<L<P<T<0$\0`0d0|00000000000000000000001P5T5X5\5`5d5h5777777777X9\9`9d9h9l9p9t9x9|999999999999999999999999999999999::::::: :$:(:,:0:4:8:<:@:D:H:L:P:T:X:\:`:d:h:l:p:t:x:|:::::::::::::::::::::::::::@333333333333344444$4(4,40444777777778888888 8$8(8,8084888<8@8D8H8L8P8T8X8\8`8d8h8l8p8t8x8|88888888888888888888888888888889999999 9$9(9,9094989<9@9P8P1T1X1\1`1d1h1l1p1t1x1|111111111h6l6p6t6`00000000000001111$1,141<1D1L1T1\1d1l1t1|111111111111111112222$2,242<2D2L2T2\2d2l2t2|222222222222222223333$3,343<3D3L3T3\3d3l3t3|333333333333333334444$4,444<4D4L4T4\4d4l4t4|444444444444444445555$5,545<5D5L5T5\5d5l5t5|555555555555555556666$6,646<6D6L6T6\6d6l6t6|666666666666666667777$7,747<7D7L7T7\7d7l7t7|77777777p111111111111222 2(20282@2H2P2X2`2h2p2x22222222222222222333 3(30383@3H3P3X3`3h3p3x33333333333333333444 4(40484@4H4P4X4`4h4p4x44444444444444444555 5(50585@5H5P5X5`5h5p5x55555555555555555666 6(60686@6H6P6X6`6h6p6x66666666666666666777 7(70787@7H7P7X7`7h7p7x77777777777777777888 8(80888@8H8P8X8`8h8p8x8888888882222<<D<L<T<\<d<l<t<|<<<<<<<<<<<<<<<<<==========>> >$>,>D>T>X>h>l>p>t>|>>>>>>>>>>>>??? ?8?H?L?\?`?d?h?p?????????????00,000@0D0H0P0h0x0|0000000000000111(1,10141<1T1d1h1x1|1111111111112222 28267,747X7l7t77777777788$8D8L8X8x88888888889949@9`9h9p9|9999999::$:,:@:H:\:d:l:t:x:|:::::::::::;,;0;8;@;H;L;P;X;l;;;;;;;;;;<<<4<8<T<X<h<<<<<<<<<<=(=H=P=T=p======>0>P>p>>>>>?0?P?\?x?????000000000 0$0(0,040<0D0L0T0\0d0l0t0|000000000000000001111$1,141<1D1L1T1\1d1l1t1|111111111111111112222$2,242<2D2L2T2X2`2d2l2p2233 404@4P4`4x44444449999999::::: :$:(:,:0:4:`❌::;(;H;d;;;;;;<<<MZ@ !L!This program cannot be run in DOS mode.
394394:MZ@ !L!This program cannot be run in DOS mode.
409840:jY]UVtu|Nt*u&h^Yt2Wh^YD\uWj Y+ȃ3\EEEEEuE_^]jh0teMZf9u`<PEuOf9uA+PQYYt*@$u!EX_^]h@hVøHHHHøU$SVjEt)3hVP5uȃu.]h]Y]UY]Uee\VWN@;t
XLhT]U\3ʼnESV3VShT:u9VSUV$u#@WuSSu3{h,UW`@th<UW`@؅thPUW`@tPjjh`Uhօt W\@딍PPPjhUw`W\@9,I3f9Mj\Xf9Mt fMA+��A=T<OYh SPfu@WuSPƋM_^3[H]UEL3Ƀ EVjNEPV@u3uuutEMZfu׋H<~ȁ9PEuQ+S33Wyt$;1r +;q@(;r;t@= Eu9=uit %W?tB hUP`@t"3EPWWEЋPWWWuwփ u3]}؋}0V=A2'}MQhVjp-օ}3PPP7EPSuN V }MeQphք}eG}EjPEԋ7PEPvEPjքtCE;EuM;w E;r}sօuEPjt@Pl@}0J֋}p@7֋}܋p8$֋}r,֋E_[^]ËEt=sPjt@Pd@Et}PEP73PPPvEPք��EG+];<3A9Mv;rA;MrDM%}3��7PPPvpEPuueք��EEU%,S3C j
432265:uh5YeuhAhAYYhAhAYYuE'u,*E0Ëuj&Y/ËUe*t d0@u@P@OYAj@ȅu2øMZf9uA<��8PEuf9Huۃ\A^}tQQ\3ʼnEu\@M3ӟ]ËU]jjjËUjj]̡Ã=t3VW.-2u*V0YuPP73jYVY_^ËUQQSVW3ҋ<=tB΍YAu+FuBjPYYtm]RύAu+ʀ?=AEt7jPYYt0WuVuAEj0E9EY?uS)jYY3jY_^[]3PPPPPp̋UVtWPYuVY_^]ËUQ\3ʼnEVW~V\AY;uM_3^]U;tPyY]ËU;tP^Y]h{hl525'YYjhĨe0"YeM
Y_^[]UMZft3]ËH<3��9PEu f9Q]VD$u(L$D$3؋Dd$ȋd$Gȋ\$T$Dud$ȋD$r;T$r;Dv N+D$$3+D$؃ʋӋًȋ^had5D$l$l+SVW\1E3ʼnEPeuEEEEdËM3 WVU33D$}GET$ڃD$T$D$}GT$ڃD$T$u(L$D$3؋D$d$ȋd$G؋L$T$D$ud$ȋD$r;T$r;Dv N+D$$3+D$$My؃ʋӋًȋOu؃]^_̀@s sË3Ҁ33QL+ȃ QL+ȃ ̃=t7$,$Ã=t$XfftӍ$IU T$|$l$T$D$t<y$$T$,$$T$T$u\$\$UW=wwUfnp۹#σ+3offtftf#uf#DžEЃSf#3+#I#[DžD_Ut93t;DDžt Gufnf:cG@LBu_ø#fft#Ϻf#ufft@ft뽋3��كE8t3_̃=r_fnpۋT$#+o
Ikr|Nyt^=EXd^r5)'Vr%]TQ"ΥUv"4yxJAY_hnώp[*g;G{K@U-fI$~fRQVՆ pwPʥD$ζɼ5ؙe'ќB1[V$+կnZW0qL)΋}qΦ`\>f^TviE1"BkN;/"f-@4i4X$o.Zy~E7J[GNfwzvip[1tT8G@TQ3|PL<ݥv6TU1jQl=|I[*:R{ufʖt􂈧Iɠ̚*t7+`\NCL^3b Ecᓤ"UhVyb'7jN=#4V}["0Cye||AttUA+^qRSl)6v8-x7&@#"F0TGg84"<<UE۪qzI@$"ꋘQphwnlvDhmqI^.D;acS_M4KVq4̎@,4ءyؙў"'9Tg#eXD<0mѫeIz:;mw36Җ<8:>aN0\e9VwC-Ϣτ@zX0go~mcLY. c;ӇOFjd!;N2SUtxy-7hQ;ɪ܃f.ٶTLp{AHXǼG<AH(v#p0+B'UTTc ;QʍO$)U+T['FӜX#a9ek,O:}ŴBnF$ѥT3#*"2$a'n "ILj|LXN!0RXJBGC.B;SAZ#`6pn
eyd2O|)%~{xmPT2YW"ICĈIE8-6l3&̈́c)l*��eZ!TP^I\z=P[nA=Z'fsmlds6B^EaY6ly:ѣG(lnUy]ஷ5VNҕ+8~Fjm]q=aÜ}5es,\]djjRV*eo>fc~v ",6ޏSخaJ_'K\ԅ%T޽z x!BKBxضsa4W.bJCi%D*ohHCNn$RbOO1´zO{qU]70@Xѕ+T^pzRKh,;SN���AfrbBfL@!ecue9
597520:</WixLocalization>MZ@ !L!This program cannot be run in DOS mode.
733797:HH_艰HH9H(HtH!HLHzH(@SH0HHL$ AHHH\$(HtuHHKu HHH0[Ht H!H@SH@HD$ HHL$(pHtH#HLD$0HT$(HH\$0Htu9HtHH [H3H [HHHhHpHx AWH03HHHuN衺HtAuADd$(H#Hd$ AL3ҋHcu&N3OHHHHHtAL3ҋωl$(HD$ uMHFH#AH\$@Hl$HHt$PH|$XH0A_HHHhHpHx AWH@3HHHuM衹HtAuADHd$8Hd$0d$(Hd$ H#AL3ҋHcuM3XHGHHtHd$8Hd$0AL3ҋωl$(HD$ uLHEH#AH\$PHlB3H(E3APpH(HurJ7HHtH3H(H(Hu:JHYHtH3H(@SH 3HH3HOH7HoHHH [EH\Hl$Ht$WH 3HHH+ًHHH;HGHtHHtHH;rH\$0Hl$8Ht$@H _H\WH 3HHH;suHHtH;rH\$0H _H\Ht$DD$WATAUAVAWH@EDEum3MZfu[Lc@<LA8PEuKA@=t =t3(Av*3A9AxtT 6HHD$ LHt$(LHD$8H|$ H;rv3H9uH;rbHH3HH
3UtH [H\Ht$H|$UATAUAVAWHH@3HHMDH]H9@uH9HuDL5ITCiLHu3HcH<H3��9PEu f9QHSH HHIH;
eW,MZ@ !L!This program cannot be run in DOS mode.
`@؃@=@uhpR@`@Yv@t=@ujj`@Y3hS@@$@5܃@@h@h@h@`@@>Ydjh(f3ۉ]dP@3t;u3F3F95@u
ā@f@f@f%@f-@ȁ@E@E��@́@��@Ā@@@@ԃ@=ԃ@}vjXk̀@h e@]U jt)@
t@_^]3Ã=@t3Vjj `@YYV|`@@@ujX^Ã&3^jhhf@Ue5@5`@։Eu`@YeYe5@։E5@։EEPEP5|`@P}u֣@u֣@E
1633107:44.4y4~444444444444444444445`$1122 5$5|55<6@6\6`66 0000 0$00040@0D0P0T0MZ@ !L!This program cannot be run in DOS mode.
1735619:}}utvKYtuVYYhHRtA8csmu9xu3x pHtQȴeRp豱E@RÐڮjhQ3ۋEHt8t3QhXvQUMeuVRQSqHHEsQÐhl9q9ujQuuPU�]Ë@u,}x]ujpYYt2jWYYt$HPQYYE3Ʌ��M3Ʌ��Mq@��Y_^[]ÐUMZfvcH<3��9PEu f9Q]Ëj733333eT3ۉU}zxErˉM9Jv7k};D7}Y};D}IkD0@E��EPRSW]]wUSVWjRhBQ_^[]%Q+t3jXMAE$0,Xa9] t&BE��+WHHXMjXej
1843101:>VWǍVu8Ou _^`_^U)]鿭VjV语Y^qQYUQEPhp?jPth?uPtЋ]mscoree.dllCorExitProcessUYPh?^Ye=4<8}5T=P׋u؅5P׋u}}܃};rwjP9t;rg7PjP5T5P։E5P֋M9M9Eu띐;;Eu)4@t@tPV+YYEfYjhpC*YY3}j3Y!}3u;5
3272763:0000000000000000000000000000000000000000000000000105000000000000}}MZ@ !L!This program cannot be run in DOS mode.
3288010:H$8H_^]@USVATAWH$p&H+H9H3H%3LL$H3DCLDaHuDLL$0L&H7HH$&CLHL$0AH\$ tLHH0HH0LL$0LrHHHHL$&LH\HL$`3A HLD$`3ID$` Aօu0S=At#F=BtHH03LlHH0LL$0LHKH2LHL$0AH\$ t&LHH0HH0LHL$0AH\$ t1LHH0Z(HH0DHH00L$&H_Ht HH$&EËH%H3RHĐ&A_A\^[]@UVATAVAWH$H+H5H3HHMLHL$P3AHE3LD$PIHD$E3HD$DHD$ ?s|$@hHD$DLL$@HHD$(HE3HH$D$DHD$ Hϋ+|$@H$@HD$Ld$0DCE3IHD$(HD$ L$TL$LD$PIH#L+B+Huu0HLL+B+HuthAIHDL|$ AIHAH$H$HH3HA_A^A\^]A3H3H\H|$3IDDHt2HD$(L+Ht E fEtfDHAzIf9AHtLH\H|$HI;w3øW%%%%%%%%%~%p%b%<%.%%r%d%%%%%%%%%%%%<%% %%%%%%%%%%t%f,y$ -L-H,HɃv%%9��pffHL$L\M3LT$L+MBeL%M;sfAMAM;uL$L\H%H(MZf9t38Hc;H
HMHȁ9PEuf9Au3��v+=9H(7H(2@SH H(F+H _øMZf9`t3Hc
3292648:L;rAH(E;r3H\WH HH=\H4t"H+HHHt@$Ѓ3H\$0H _H��MZft3HcH<H3��9PEu f9Q%%%H\$ UHH H|&HeH2-+H;uoHMHEH(+HD$@HtHLD$@HT$8HHL$8TH*HL$@BHHH [H(GH(H\WH HH=HHtH;rH\$0H _H\WH HH=xHHtH;rH\$0H _%J%<%.% %%%%%%%%%%|%n%`%:%,%%%%%%@UH HHHH ]@UH HH3Ɂ8��H ]@UH cH ]Fw.wwwvvvvvvZwFv.v~~~vvuuuuuuuxu~~|~@|d~V~L~D~ ~~}}}}}|}r}d}L}@}2}}||||||||||x|n|d|X|L|6|(||{|r~{{w{~{b{H{.{{zzwztzXz>z z
cosair@DESKTOP-1IUHAB1:/mnt/c/Temp/SamsungExtract$ grep -a -b 'SamsungInstaller64.msi' combined.bin || true
0:<?xml version="1.0" encoding="utf-8"?><BurnManifest xmlns="http://schemas.microsoft.com/wix/2008/Burn"><Log PathVariable="WixBundleLog" Prefix="Samsung_NVM_Express_Driver" Extension="log" /><RelatedBundle Id="{2C81F0BB-1891-4E83-B71A-5160BA33D985}" Action="Upgrade" /><Variable Id="InstallFolder" Value="[ProgramFiles6432Folder]Samsung" Type="string" Hidden="no" Persisted="no" /><Variable Id="InstallFolder2" Value="[WindowsVolume]Database" Type="string" Hidden="no" Persisted="no" /><Variable Id="InstallFor950Pro" Value="0" Type="numeric" Hidden="no" Persisted="yes" /><Variable Id="InstallFor960Pro" Value="0" Type="numeric" Hidden="no" Persisted="yes" /><Variable Id="InstallFor970Pro" Value="0" Type="numeric" Hidden="no" Persisted="yes" /><Variable Id="WixBundleName" Hidden="no" Persisted="yes" /><Variable Id="WixBundleOriginalSource" Hidden="no" Persisted="yes" /><Variable Id="WixBundleOriginalSourceFolder" Hidden="no" Persisted="yes" /><Variable Id="WixBundleLastUsedSource" Hidden="no" Persisted="yes" /><UX><Payload Id="WixExtendedBootstrapperApplication.RtfLicense" FilePath="wixextba.dll" FileSize="365056" Hash="9F10260B4E0AD03FF9FD0BF74A67C8EE9166DD18" Packaging="embedded" SourcePath="u0" /><Payload Id="pay4E55814D3465BD825A900D4E476A7FF5" FilePath="LanguageStrResourceDll.dll" FileSize="12800" Hash="6493DF4A2E80E4F63B40E3C38D054230DD1D2BA6" Packaging="embedded" SourcePath="u1" /><Payload Id="pay0BDF3F8E435D28361663B09228DB8D10" FilePath="bafunctions.dll" FileSize="118784" Hash="66508881D96783365E8B3621E8C429E6D20D7627" Packaging="embedded" SourcePath="u2" /><Payload Id="pay238E42762165CEDC4EA0F0A3251B6002" FilePath="LogoSide.png" FileSize="73240" Hash="C44B67E85D4E3A57C21376509951B91E5E048274" Packaging="embedded" SourcePath="u3" /><Payload Id="pay02C4439962C5537EAD143C98CA74A90C" FilePath="Samsung_Logo.png" FileSize="1932" Hash="C4A1945B4993C46099ACB527CBEAB5404368E539" Packaging="embedded" SourcePath="u4" /><Payload Id="pay22B5552D4B727F05823B5978B6FC175A" FilePath="x86\Uninstaller.bat" FileSize="1614" Hash="66615F6B570F467FC1032686E01E40883583BEBB" Packaging="embedded" SourcePath="u5" /><Payload Id="pay2A5C56CBDEA2EB7586D3F3CAC4FC7ED1" FilePath="x64\UninstallerRemoveRescan.bat" FileSize="617" Hash="F8F742773B2FE74CFD6B972019A02DAA85FD1E50" Packaging="embedded" SourcePath="u6" /><Payload Id="pay37D44CC96067E7467F68165214F1F3E4" FilePath="thm.wxl" FileSize="6546" Hash="B2684EE200043BC6701878DFD89C214754B73395" Packaging="embedded" SourcePath="u7" /><Payload Id="pay6EC8ED614A08C0C2814A1EFED57891BF" FilePath="x64\msvcr120.dll" FileSize="963232" Hash="62CB65A1D79E2C5ADA0C7BFC04C18693567C90D0" Packaging="embedded" SourcePath="u8" /><Payload Id="pay63EF8BBEE9F2C8FFD6A4F2E07807539C" FilePath="x86\SamsungFinder.exe" FileSize="72704" Hash="145C70117478EF095A9FBDEAF9FBF6F9DCBAE7B7" Packaging="embedded" SourcePath="u9" /><Payload Id="pay0D95A40934D4350B284AF9401A942682" FilePath="x86\msvcr120.dll" FileSize="970912" Hash="F19E9D8317161EDC7D3E963CC0FC46BD5E4A55A1" Packaging="embedded" SourcePath="u10" /><Payload Id="EULA-en_US" FilePath="1033\License.rtf" FileSize="39598" Hash="86DFB04B1E6B2005ADA603CB68AF787EE4A7005A" Packaging="embedded" SourcePath="u11" /><Payload Id="EULA-kr_KR" FilePath="1042\License.rtf" FileSize="107818" Hash="42EFEB7CB16395F24985484BB9C3ED3E8E35533F" Packaging="embedded" SourcePath="u12" /><Payload Id="EULA-de_DE" FilePath="1031\License.rtf" FileSize="45415" Hash="138F12A36801A6C8DC3FD8E18035501E6990D286" Packaging="embedded" SourcePath="u13" /><Payload Id="EULA-es_ES" FilePath="3082\License.rtf" FileSize="42121" Hash="0DDE63D195645396AE233E4C8B2345F088AD5E5F" Packaging="embedded" SourcePath="u14" /><Payload Id="EULA-fr_FR" FilePath="1036\License.rtf" FileSize="45905" Hash="8F96CBF48FD3FA7C8D5F7D1DFADCA935E76154B5" Packaging="embedded" SourcePath="u15" /><Payload Id="EULA-it_IT" FilePath="1040\License.rtf" FileSize="44009" Hash="66925580D38D03A1F9E62495CB14C13AB3D86B52" Packaging="embedded" SourcePath="u16" /><Payload Id="EULA-ja_JA" FilePath="1041\License.rtf" FileSize="76778" Hash="40C3A60A9D4229BEB5907CA2720E0B4AA646A47F" Packaging="embedded" SourcePath="u17" /><Payload Id="EULA-ru_RU" FilePath="1049\License.rtf" FileSize="101897" Hash="F7196E14032837816422A2FE72EA9173DADB471E" Packaging="embedded" SourcePath="u18" /><Payload Id="EULA-zh_CN" FilePath="2052\License.rtf" FileSize="66170" Hash="D6E779034A470B7191299DC5295CF0A38DCAED1B" Packaging="embedded" SourcePath="u19" /><Payload Id="EULA-pt_PT" FilePath="2070\License.rtf" FileSize="42864" Hash="03D695832B785F288B08AF66369E71F5DB61C26C" Packaging="embedded" SourcePath="u20" /><Payload Id="Licensefile" FilePath="license.txt" FileSize="1324" Hash="E76CF6925E4AEB8CA5893A4C50822A4F81EB0614" Packaging="embedded" SourcePath="u21" /><Payload Id="pay8D808CAB1BE0B77B63CFFC21BE0A7985" FilePath="thm.xml" FileSize="14066" Hash="5508AE5A30C0F02F1FF84CBD88759A9D591B6EA6" Packaging="embedded" SourcePath="u22" /><Payload Id="pay9197360B6F52E0411712FCC415C62EA4" FilePath="Logo.png" FileSize="880" Hash="7AC786C5C6A7AFFE7B318B9A8E5869586BECBC67" Packaging="embedded" SourcePath="u23" /><Payload Id="pay8D3AAAB4ADC107744F4D0A670E63B940" FilePath="license.rtf" FileSize="39598" Hash="86DFB04B1E6B2005ADA603CB68AF787EE4A7005A" Packaging="embedded" SourcePath="u24" /><Payload Id="payCE93F1637FCE9D49C985C1D29204F86D" FilePath="x64\SamsungFinder.exe" FileSize="78336" Hash="BE8D8164BF090823E891482B09171E5DBACD807B" Packaging="embedded" SourcePath="u25" /><Payload Id="payA72DAF1CACAA2F67306BDC28FE09FC2B" FilePath="x64\Uninstaller.bat" FileSize="1614" Hash="66615F6B570F467FC1032686E01E40883583BEBB" Packaging="embedded" SourcePath="u26" /><Payload Id="pay91E7308ABF3147BF5DB6B818F7C1ADB9" FilePath="x86\UninstallerRemoveRescan.bat" FileSize="617" Hash="F8F742773B2FE74CFD6B972019A02DAA85FD1E50" Packaging="embedded" SourcePath="u27" /><Payload Id="payAB1D07DC50674E4D2D7090EFD66F1A76" FilePath="x64\RepairUpdatePnP.bat" FileSize="2499" Hash="16AE256CD1F2817B4F2907F7C9CFC3EE5C8BB1C4" Packaging="embedded" SourcePath="u28" /><Payload Id="pay9FD591C172DF943EE76A211DBA110AA7" FilePath="x86\RepairUpdatePnP.bat" FileSize="2499" Hash="16AE256CD1F2817B4F2907F7C9CFC3EE5C8BB1C4" Packaging="embedded" SourcePath="u29" /><Payload Id="str-en_US" FilePath="1033\thm.wxl" FileSize="6546" Hash="B2684EE200043BC6701878DFD89C214754B73395" Packaging="embedded" SourcePath="u30" /><Payload Id="str-kr_KR" FilePath="1042\thm.wxl" FileSize="7082" Hash="51286741E1B2587F26F0A83FF898CFC0BC09EE86" Packaging="embedded" SourcePath="u31" /><Payload Id="str-de_DE" FilePath="1031\thm.wxl" FileSize="7245" Hash="BA6D1A7972C4060D24270EB71B424E7C95012772" Packaging="embedded" SourcePath="u32" /><Payload Id="str-es_ES" FilePath="3082\thm.wxl" FileSize="7016" Hash="D2F7B357C38F045492E5A083EE54E3AB58A3B86E" Packaging="embedded" SourcePath="u33" /><Payload Id="str-fr_FR" FilePath="1036\thm.wxl" FileSize="7177" Hash="4688E85751B8112B91CC12EB8B76623215A52AAB" Packaging="embedded" SourcePath="u34" /><Payload Id="str-it_IT" FilePath="1040\thm.wxl" FileSize="6987" Hash="88844B0B70F6A5CE17619D327CD4548480B6C859" Packaging="embedded" SourcePath="u35" /><Payload Id="str-ja_JA" FilePath="1041\thm.wxl" FileSize="8098" Hash="820AEAE32E44D8355A80410AF3F3508D9304EC17" Packaging="embedded" SourcePath="u36" /><Payload Id="str-ru_RU" FilePath="1049\thm.wxl" FileSize="9007" Hash="FC122450897392DA791B7CFA72632F5B99B643B2" Packaging="embedded" SourcePath="u37" /><Payload Id="str-zh_CN" FilePath="2052\thm.wxl" FileSize="6135" Hash="3C120776F9BE15C3E63550CC05EC7200D2DDB988" Packaging="embedded" SourcePath="u38" /><Payload Id="str-pt_PT" FilePath="2070\thm.wxl" FileSize="6957" Hash="AFD5D9577B7EE6D32DADE72033EB11A15BF28A63" Packaging="embedded" SourcePath="u39" /><Payload Id="ux018A3672B47BC33C533DBA884702200B" FilePath="BootstrapperApplicationData.xml" FileSize="9820" Hash="48E12E3EABA0F71BFC5CE7C19EC3134ADFE24080" Packaging="embedded" SourcePath="u40" /></UX><Container Id="WixAttachedContainer" FileSize="3025380" Hash="E0C8BA3BDE63836B6A7E63FAF6B315EEA4739A4D" FilePath="Samsung NVM Express Driver.exe" AttachedIndex="1" Attached="yes" Primary="yes" /><Payload Id="Setup64" FilePath="SamsungInstaller64.msi" FileSize="1212416" Hash="4B3066C4021ED54F784013AB0CECE1F17CCF829B" Packaging="embedded" SourcePath="a0" Container="WixAttachedContainer" /><Payload Id="Setup32" FilePath="SamsungInstaller32.msi" FileSize="819200" Hash="526AB42C1A0A218F8026A11F9524ACBFF7A0B761" Packaging="embedded" SourcePath="a1" Container="WixAttachedContainer" /><Payload Id="Setup32Samsung960Pro" FilePath="Samsung960ProInstaller32.msi" FileSize="819200" Hash="07711CF386EFCA3733380BD56A54F4EDA6B0B7A8" Packaging="embedded" SourcePath="a2" Container="WixAttachedContainer" /><Payload Id="Setup64Samsung960Pro" FilePath="Samsung960ProInstaller64.msi" FileSize="1212416" Hash="FE578D331AC661CA293711CE9A111CE438D7D6FC" Packaging="embedded" SourcePath="a3" Container="WixAttachedContainer" /><Payload Id="Setup32Samsung970Pro" FilePath="Samsung970ProInstaller32.msi" FileSize="819200" Hash="5C79214CBA555E85C69155A6F6314922A374A81A" Packaging="embedded" SourcePath="a4" Container="WixAttachedContainer" /><Payload Id="Setup64Samsung970Pro" FilePath="Samsung970ProInstaller64.msi" FileSize="1212416" Hash="7D11AFEEBDF730B613A81CEB08B9D5534E821DF2" Packaging="embedded" SourcePath="a5" Container="WixAttachedContainer" /><RollbackBoundary Id="WixDefaultBoundary" Vital="yes" /><Registration Id="{ff94c273-58d5-40b5-b03a-9bd41d5cff1e}" ExecutableName="Samsung NVM Express Driver.exe" PerMachine="yes" Tag="" Version="3.3.0.2003" ProviderKey="{ff94c273-58d5-40b5-b03a-9bd41d5cff1e}"><Arp Register="yes" DisplayName="Samsung NVM Express Driver" DisplayVersion="3.3.0.2003" Publisher="Samsung Electronics Co., Ltd" HelpLink="Mobile | TV | Home Electronics | Home Appliances | Samsung US | Samsung US" AboutUrl="http://www.samsung.com" UpdateUrl="http://www.samsung.com" DisableModify="yes" /></Registration><Chain DisableSystemRestore="yes"><MsiPackage Id="Setup64" Cache="yes" CacheId="{6D29AC99-C940-4FA7-AAD0-309C67F7301A}v3.3.0.2003" InstallSize="427696" Size="1212416" PerMachine="yes" Permanent="no" Vital="yes" RollbackBoundaryForward="WixDefaultBoundary" LogPathVariable="WixBundleLog_Setup64" RollbackLogPathVariable="WixBundleRollbackLog_Setup64" InstallCondition="InstallFor950Pro AND VersionNT64" ProductCode="{6D29AC99-C940-4FA7-AAD0-309C67F7301A}" Language="1033" Version="3.3.0.2003" DisplayInternalUI="no"><MsiProperty Id="ALLUSERS" Value="1" /><MsiProperty Id="ARPSYSTEMCOMPONENT" Value="1" /><MsiProperty Id="MSIFASTINSTALL" Value="7" /><MsiProperty Id="APPLICATIONFOLDER" Value="[InstallFolder]" /><MsiProperty Id="PAYLOADFOLDER" Value="[PayLoadSourceFolder]" /><Provides Key="{6D29AC99-C940-4FA7-AAD0-309C67F7301A}" Version="3.3.0.2003" DisplayName="Samsung NVM Express Driver 3.3.0.2003" /><RelatedPackage Id="{A2B8FBB1-4884-4AC7-B880-AE2491E1F473}" MaxVersion="3.3.0.2003" MaxInclusive="no" OnlyDetect="no" /><RelatedPackage Id="{A2B8FBB1-4884-4AC7-B880-AE2491E1F473}" MinVersion="3.3.0.2003" MinInclusive="no" OnlyDetect="yes" /><PayloadRef Id="Setup64" /></MsiPackage><MsiPackage Id="Setup32" Cache="yes" CacheId="{55A56351-BF8A-40E4-9F61-A0B9713F1CBC}v3.3.0.2003" InstallSize="372968" Size="819200" PerMachine="yes" Permanent="no" Vital="yes" LogPathVariable="WixBundleLog_Setup32" RollbackLogPathVariable="WixBundleRollbackLog_Setup32" InstallCondition="InstallFor950Pro AND NOT VersionNT64" ProductCode="{55A56351-BF8A-40E4-9F61-A0B9713F1CBC}" Language="1033" Version="3.3.0.2003" DisplayInternalUI="no"><MsiProperty Id="ALLUSERS" Value="1" /><MsiProperty Id="ARPSYSTEMCOMPONENT" Value="1" /><MsiProperty Id="MSIFASTINSTALL" Value="7" /><MsiProperty Id="APPLICATIONFOLDER" Value="[InstallFolder]" /><MsiProperty Id="PAYLOADFOLDER" Value="[PayLoadSourceFolder]" /><Provides Key="{55A56351-BF8A-40E4-9F61-A0B9713F1CBC}" Version="3.3.0.2003" DisplayName="Samsung NVM Express Driver 3.3.0.2003" /><RelatedPackage Id="{A2B8FBB1-4884-4AC7-B880-AE2491E1F473}" MaxVersion="3.3.0.2003" MaxInclusive="no" OnlyDetect="no" /><RelatedPackage Id="{A2B8FBB1-4884-4AC7-B880-AE2491E1F473}" MinVersion="3.3.0.2003" MinInclusive="no" OnlyDetect="yes" /><PayloadRef Id="Setup32" /></MsiPackage><MsiPackage Id="Setup32Samsung960Pro" Cache="yes" CacheId="{36AB6526-4CAC-4B6D-9B8C-F5DD4525A4D7}v3.3.0.2003" InstallSize="372968" Size="819200" PerMachine="yes" Permanent="no" Vital="yes" LogPathVariable="WixBundleLog_Setup32Samsung960Pro" RollbackLogPathVariable="WixBundleRollbackLog_Setup32Samsung960Pro" InstallCondition="InstallFor960Pro AND NOT VersionNT64" ProductCode="{36AB6526-4CAC-4B6D-9B8C-F5DD4525A4D7}" Language="1033" Version="3.3.0.2003" DisplayInternalUI="no"><MsiProperty Id="ALLUSERS" Value="1" /><MsiProperty Id="ARPSYSTEMCOMPONENT" Value="1" /><MsiProperty Id="MSIFASTINSTALL" Value="7" /><MsiProperty Id="APPLICATIONFOLDER" Value="[InstallFolder]" /><MsiProperty Id="PAYLOADFOLDER" Value="[PayLoadSourceFolder]" /><Provides Key="{36AB6526-4CAC-4B6D-9B8C-F5DD4525A4D7}" Version="3.3.0.2003" DisplayName="Samsung NVM Express Driver 3.3.0.2003" /><RelatedPackage Id="{1ECD0931-E1B1-4E41-902E-AEEA9E055301}" MaxVersion="3.3.0.2003" MaxInclusive="no" OnlyDetect="no" /><RelatedPackage Id="{1ECD0931-E1B1-4E41-902E-AEEA9E055301}" MinVersion="3.3.0.2003" MinInclusive="no" OnlyDetect="yes" /><PayloadRef Id="Setup32Samsung960Pro" /></MsiPackage><MsiPackage Id="Setup64Samsung960Pro" Cache="yes" CacheId="{DC753502-B4E6-4E0A-90C7-14A264853344}v3.3.0.2003" InstallSize="427696" Size="1212416" PerMachine="yes" Permanent="no" Vital="yes" LogPathVariable="WixBundleLog_Setup64Samsung960Pro" RollbackLogPathVariable="WixBundleRollbackLog_Setup64Samsung960Pro" InstallCondition="InstallFor960Pro AND VersionNT64" ProductCode="{DC753502-B4E6-4E0A-90C7-14A264853344}" Language="1033" Version="3.3.0.2003" DisplayInternalUI="no"><MsiProperty Id="ALLUSERS" Value="1" /><MsiProperty Id="ARPSYSTEMCOMPONENT" Value="1" /><MsiProperty Id="MSIFASTINSTALL" Value="7" /><MsiProperty Id="APPLICATIONFOLDER" Value="[InstallFolder]" /><MsiProperty Id="PAYLOADFOLDER" Value="[PayLoadSourceFolder]" /><Provides Key="{DC753502-B4E6-4E0A-90C7-14A264853344}" Version="3.3.0.2003" DisplayName="Samsung NVM Express Driver 3.3.0.2003" /><RelatedPackage Id="{1ECD0931-E1B1-4E41-902E-AEEA9E055301}" MaxVersion="3.3.0.2003" MaxInclusive="no" OnlyDetect="no" /><RelatedPackage Id="{1ECD0931-E1B1-4E41-902E-AEEA9E055301}" MinVersion="3.3.0.2003" MinInclusive="no" OnlyDetect="yes" /><PayloadRef Id="Setup64Samsung960Pro" /></MsiPackage><MsiPackage Id="Setup32Samsung970Pro" Cache="yes" CacheId="{39A44D96-7AEA-49C4-B1A0-DD9BC74C6413}v3.3.0.2003" InstallSize="372968" Size="819200" PerMachine="yes" Permanent="no" Vital="yes" LogPathVariable="WixBundleLog_Setup32Samsung970Pro" RollbackLogPathVariable="WixBundleRollbackLog_Setup32Samsung970Pro" InstallCondition="InstallFor970Pro AND NOT VersionNT64" ProductCode="{39A44D96-7AEA-49C4-B1A0-DD9BC74C6413}" Language="1033" Version="3.3.0.2003" DisplayInternalUI="no"><MsiProperty Id="ALLUSERS" Value="1" /><MsiProperty Id="ARPSYSTEMCOMPONENT" Value="1" /><MsiProperty Id="MSIFASTINSTALL" Value="7" /><MsiProperty Id="APPLICATIONFOLDER" Value="[InstallFolder]" /><MsiProperty Id="PAYLOADFOLDER" Value="[PayLoadSourceFolder]" /><Provides Key="{39A44D96-7AEA-49C4-B1A0-DD9BC74C6413}" Version="3.3.0.2003" DisplayName="Samsung NVM Express Driver 3.3.0.2003" /><RelatedPackage Id="{870DDEB2-2DBF-4D47-A2A2-C6A6C337A168}" MaxVersion="3.3.0.2003" MaxInclusive="no" OnlyDetect="no" /><RelatedPackage Id="{870DDEB2-2DBF-4D47-A2A2-C6A6C337A168}" MinVersion="3.3.0.2003" MinInclusive="no" OnlyDetect="yes" /><PayloadRef Id="Setup32Samsung970Pro" /></MsiPackage><MsiPackage Id="Setup64Samsung970Pro" Cache="yes" CacheId="{89D55DD5-FE94-497B-B5E5-91915D52DBF2}v3.3.0.2003" InstallSize="427696" Size="1212416" PerMachine="yes" Permanent="no" Vital="yes" RollbackBoundaryBackward="WixDefaultBoundary" LogPathVariable="WixBundleLog_Setup64Samsung970Pro" RollbackLogPathVariable="WixBundleRollbackLog_Setup64Samsung970Pro" InstallCondition="InstallFor970Pro AND VersionNT64" ProductCode="{89D55DD5-FE94-497B-B5E5-91915D52DBF2}" Language="1033" Version="3.3.0.2003" DisplayInternalUI="no"><MsiProperty Id="ALLUSERS" Value="1" /><MsiProperty Id="ARPSYSTEMCOMPONENT" Value="1" /><MsiProperty Id="MSIFASTINSTALL" Value="7" /><MsiProperty Id="APPLICATIONFOLDER" Value="[InstallFolder]" /><MsiProperty Id="PAYLOADFOLDER" Value="[PayLoadSourceFolder]" /><Provides Key="{89D55DD5-FE94-497B-B5E5-91915D52DBF2}" Version="3.3.0.2003" DisplayName="Samsung NVM Express Driver 3.3.0.2003" /><RelatedPackage Id="{870DDEB2-2DBF-4D47-A2A2-C6A6C337A168}" MaxVersion="3.3.0.2003" MaxInclusive="no" OnlyDetect="no" /><RelatedPackage Id="{870DDEB2-2DBF-4D47-A2A2-C6A6C337A168}" MinVersion="3.3.0.2003" MinInclusive="no" OnlyDetect="yes" /><PayloadRef Id="Setup64Samsung970Pro" /></MsiPackage></Chain></BurnManifest>MZ@ !L!This program cannot be run in DOS mode.
cosair@DESKTOP-1IUHAB1:/mnt/c/Temp/SamsungExtract$ If you want to search the smaller carved container instead:
If: command not found
cosair@DESKTOP-1IUHAB1:/mnt/c/Temp/SamsungExtract$ cd ~
cosair@DESKTOP-1IUHAB1:~$ grep -a -b $'\x50\x4b\x03\x04' carved_container.bin || true
cosair@DESKTOP-1IUHAB1:~$ grep -a -b $'\x4d\x5a' carved_container.bin || true
0:MZ@ !L!This program cannot be run in DOS mode.
15446:jY]UVtu|Nt*u&h^Yt2Wh^YD\uWj Y+ȃ3\EEEEEuE_^]jh0teMZf9u`<PEuOf9uA+PQYYt*@$u!EX_^]h@hVøHHHHøU$SVjEt)3hVP5uȃu.]h]Y]UY]Uee\VWN@;t
XLhT]U\3ʼnESV3VShT:u9VSUV$u#@WuSSu3{h,UW`@th<UW`@؅thPUW`@tPjjh`Uhօt W\@딍PPPjhUw`W\@9,I3f9Mj\Xf9Mt fMA+��A=T<OYh SPfu@WuSPƋM_^3[H]UEL3Ƀ EVjNEPV@u3uuutEMZfu׋H<~ȁ9PEuQ+S33Wyt$;1r +;q@(;r;t@= Eu9=uit %W?tB hUP`@t"3EPWWEЋPWWWuwփ u3]}؋}0V=A2'}MQhVjp-օ}3PPP7EPSuN V }MeQphք}eG}EjPEԋ7PEPvEPjքtCE;EuM;w E;r}sօuEPjt@Pl@}0J֋}p@7֋}܋p8$֋}r,֋E_[^]ËEt=sPjt@Pd@Et}PEP73PPPvEPք��EG+];<3A9Mv;rA;MrDM%}3��7PPPvpEPuueք��EEU%,S3C j
37871:uh5YeuhAhAYYhAhAYYuE'u,*E0Ëuj&Y/ËUe*t d0@u@P@OYAj@ȅu2øMZf9uA<��8PEuf9Huۃx\A^}tQ\3ʼnEeu\@M3ӟ]ËU]jjjËUjj]̡Ã=t3VW.-2u*V0YuPP73jYVY_^ËUQQSVW3ҋ<=tB΍YAu+FuBjPYYtm]RύAu+ʀ?=AEt7jPYYt0WuVuAEj0E9EY?uS)jYY3jY_^[]3PPPPPp̋UVtWPYuVY_^]ËUQ\3ʼnEVW~V\AY;uM_3^]U;tPyY]ËU;tP^Y]h{hl525'YYjhĨe0"YeM
Y_^[]UMZft3]ËH<3��9PEu f9Q]VD$u(L$D$3؋Dd$ȋd$Gȋ\$T$Dud$ȋD$r;T$r;Dv N+D$$3+D$؃ʋӋًȋ^had5D$l$l+SVW\1E3ʼnEPeuEEEEdËM3 WVU33D$}GET$ڃD$T$D$}GT$ڃD$T$u(L$D$3؋D$d$ȋd$G؋L$T$D$ud$ȋD$r;T$r;Dv N+D$$3+D$$My؃ʋӋًȋOu؃]^_̀@s sË3Ҁ33QL+ȃ QL+ȃ ̃=t7$,$Ã=t$XfftӍ$IU T$|$l$T$D$t<y$$T$,$$T$T$u\$\$UW=wwUfnp۹#σ+3offtftf#uf#DžEЃSf#3+#I#[DžD_Ut93t;DDžt Gufnf:cG@LBu_ø#fft#Ϻf#ufft@ft뽋3��كE8t3_̃=r_fnpۋT$#+o
Ikr|Nyt^=EXd^r5)'Vr%]TQ"ΥUv"4yxJAY_hnώp[*g;G{K@U-fI$~fRQVՆ pwPʥD$ζɼ5ؙe'ќB1[V$+կnZW0qL)΋}qΦ`\>f^TviE1"BkN;/"f-@4i4X$o.Zy~E7J[GNfwzvip[1tT8G@TQ3|PL<ݥv6TU1jQl=|I[*:R{ufʖt􂈧Iɠ̚*t7+`\NCL^3b Ecᓤ"UhVyb'7jN=#4V}["0Cye||AttUA+^qRSl)6v8-x7&@#"F0TGg84"<<UE۪qzI@$"ꋘQphwnlvDhmqI^.D;acS_M4KVq4̎@,4ءyؙў"'9Tg#eXD<0mѫeIz:;mw36Җ<8:>aN0\e9VwC-Ϣτ@zX0go~mcLY. c;ӇOFjd!;N2SUtxy-7hQ;ɪ܃f.ٶTLp{AHXǼG<AH(v#p0+B'UTTc ;QʍO$)U+T['FӜX#a9ek,O:}ŴBnF$ѥT3#*"2$a'n "ILj|LXN!0RXJBGC.B;SAZ#`6pn
eyd2O|)%~{xmPT2YW"ICĈIE8-6l3&̈́c)l*��eZ!TP^I\z=P[nA=Z'fsmlds6B^EaY6ly:ѣG(lnUy]ஷ5VNҕ+8~Fjm]q=aÜ}5es,\]djjRV*eo>fc~v ",6ޏSخaJ_'K\ԅ%T޽z x!BKBxضsa4W.bJCi%D*ohHCNn$RbOO1´zO{qU]70@Xѕ+T^pzRKh,;SN���AfrbBfL@!ecue9
203126:</WixLocalization>MZ@ !L!This program cannot be run in DOS mode.
339403:HH_艰HH9H(HtH!HLHzH(@SH0HHL$ AHHH\$(HtuHHKu HHH0[Ht H!H@SH@HD$ HHL$(pHtH#HLD$0HT$(HH\$0Htu9HtHH [H3H [HHHhHpHx AWH03HHHuN衺HtAuADd$(H#Hd$ AL3ҋHcu&N3OHHHHHtAL3ҋωl$(HD$ uMHFH#AH\$@Hl$HHt$PH|$XH0A_HHHhHpHx AWH@3HHHuM衹HtAuADHd$8Hd$0d$(Hd$ H#AL3ҋHcuM3XHGHHtHd$8Hd$0AL3ҋωl$(HD$ uLHEH#AH\$PHlB3H(E3APpH(HurJ7HHtH3H(H(Hu:JHYHtH3H(@SH 3HH3HOH7HoHHH [EH\Hl$Ht$WH 3HHH+ًHHH;HGHtHHtHH;rH\$0Hl$8Ht$@H _H\WH 3HHH;suHHtH;rH\$0H _H\Ht$DD$WATAUAVAWH@EDEum3MZfu[Lc@<LA8PEuKA@=t =t3(Av*3A9AxtT 6HHD$ LHt$(LHD$8H|$ H;rv3H9uH;rbHH3HH
3UtH [H\Ht$H|$UATAUAVAWHH@3HHMDH]H9@uH9HuDL5ITCiLHuHcH<H3��9PEu f9QHSH HHIH;
eW,MZ@ !L!This program cannot be run in DOS mode.
`@؃@=@uhpR@`@Yv@t=@ujj`@Y3hS@@$@5܃@@h@h@h@`@@>Ydjh(f3ۉ]dP@3t;u3F3F95@u
ā@f@f@f%@f-@ȁ@E@E��@́@��@Ā@@@@ԃ@=ԃ@}vjXk̀@h e@]U jt)@
t@_^]3Ã=@t3Vjj `@YYV|`@@@ujX^Ã&3^jhhf@Ue5@5`@։Eu`@YeYe5@։E5@։EEPEP5|`@P}u֣@u֣@E
1238713:44.4y4~444444444444444444445`$1122 5$5|55<6@6\6`66 0000 0$00040@0D0P0T0MZ@ !L!This program cannot be run in DOS mode.
1341225:}}utvKYtuVYYhHRtA8csmu9xu3x pHtQȴeRp豱E@RÐڮjhQ3ۋEHt8t3QhXvQUMeuVRQSqHHEsQÐhl9q9ujQuuPU�]Ë@u,}x]ujpYYt2jWYYt$HPQYYE3Ʌ��M3Ʌ��Mq@��Y_^[]ÐUMZfvcH<3��9PEu f9Q]Ëj733333eT3ۉU}zxErˉM9Jv7k};D7}Y};D}IkD0@E��EPRSW]]wUSVWjRhBQ_^[]%Q+t3jXMAE$0,Xa9] t&BE��+WHHXMjXej
1448707:>VWǍVu8Ou _^`_^U)]鿭VjV语Y^qQYUQEPhp?jPth?uPtЋ]mscoree.dllCorExitProcessUYPh?^Ye=4<8}5T=P׋u؅5P׋u}}܃};rwjP9t;rg7PjP5T5P։E5P֋M9M9Eu띐;;Eu)4@t@tPV+YYEfYjhpC*YY3}j3Y!}3u;5
2878369:0000000000000000000000000000000000000000000000000105000000000000}}MZ@ !L!This program cannot be run in DOS mode.
2893616:H$8H_^]@USVATAWH$p&H+H9H3H%3LL$H3DCLDaHuDLL$0L&H7HH$&CLHL$0AH\$ tLHH0HH0LL$0LrHHHHL$&LH\HL$`3A HLD$`3ID$` Aօu0S=At#F=BtHH03LlHH0LL$0LHKH2LHL$0AH\$ t&LHH0HH0LHL$0AH\$ t1LHH0Z(HH0DHH00L$&H_Ht HH$&EËH%H3RHĐ&A_A\^[]@UVATAVAWH$H+H5H3HHMLHL$P3AHE3LD$PIHD$E3HD$DHD$ ?s|$@hHD$DLL$@HHD$(HE3HH$D$DHD$ Hϋ+|$@H$@HD$Ld$0DCE3IHD$(HD$ L$TL$LD$PIH#L+B+Huu0HLL+B+HuthAIHDL|$ AIHAH$H$HH3HA_A^A\^]A3H3H\H|$3IDDHt2HD$(L+Ht E fEtfDHAzIf9AHtLH\H|$HI;w3øW%%%%%%%%%~%p%b%<%.%%r%d%%%%%%%%%%%%<%% %%%%%%%%%%t%f,y$ -L-H,HɃv%%9��pffHL$L\M3LT$L+MBeL%M;sfAMAM;uL$L\H%H(MZf9t38Hc;H
HMHȁ9PEuf9Au3��v+=9H(7H(2@SH H(F+H _øMZf9`t3Hc
2898254:L;rAH(E;r3H\WH HH=\H4t"H+HHHt@$Ѓ3H\$0H _H��MZft3HcH<H3��9PEu f9Q%%%H\$ UHH H|&HeH2-+H;uoHMHEH(+HD$@HtHLD$@HT$8HHL$8TH*HL$@BHHH [H(GH(H\WH HH=HHtH;rH\$0H _H\WH HH=xHHtH;rH\$0H _%J%<%.% %%%%%%%%%%|%n%`%:%,%%%%%%@UH HHHH ]@UH HH3Ɂ8��H ]@UH cH ]Fw.wwwvvvvvvZwFv.v~~~vvuuuuuuuxu~~|~@|d~V~L~D~ ~~}}}}}|}r}d}L}@}2}}||||||||||x|n|d|X|L|6|(||{|r~{{w{~{b{H{.{{zzwztzXz>z z
cosair@DESKTOP-1IUHAB1:~$ grep -a -b 'SamsungInstaller64.msi' carved_container.bin || true
cosair@DESKTOP-1IUHAB1:~$
 

Good — you’re back at the prompt and we can keep going. Short plan: (A) decompress the three .zlib pieces inside _carved_container.bin.extracted, (B) scan the resulting .dec files for PK/MZ/MSI signatures or MSI filenames, (C) carve the MSI out and extract it (or fall back to Export‑WindowsDriver if you prefer). Paste the requested outputs and I’ll give the exact dd/7z commands.
Run these (one block) from your home prompt — they’ll decompress the three blobs and then search the decompressed files for archive/PE/MSI signatures:
cd ~/ _carved_container.bin.extracted

Decompress all .zlib -> .dec (prints status)​

for f in *.zlib; do
out="${f%.zlib}.dec"
echo "Processing: $f -> $out"
python3 -c "import zlib,sys;data=open(sys.argv[1],'rb').read();open(sys.argv[2],'wb').write(zlib.decompress(data))" "$f" "$out" \
&& echo " OK -> $out" || echo " FAILED -> $f"
done

Show file types of the decompressed files​

file *.dec

Search the .dec files for ZIP/MSI/PE headers or the MSI filename​

grep -a -n $'\x50\x4b\x03\x04' .dec || true # PK.. (ZIP/MSI/CAB)
grep -a -n $'\x4d\x5a'
.dec || true # MZ (PE)
grep -a -n 'SamsungInstaller64.msi' .dec || true
strings -a -n 6
.dec | egrep -i 'samsung|installer|setup|.msi|.cab|.inf|.sys' || true
What I need you to paste back
  • The OK/FAILED lines from the decompression loop.
  • The output of file *.dec.
  • Any lines printed by the three grep commands (PK/MZ/MSI filename) and the strings pipeline.
How I’ll use that
  • If grep finds PK or an MSI filename inside a specific .dec (it will print filename:offset), I’ll give an exact dd command to carve the MSI from that .dec using the offset (and the manifest-provided Size if needed), then the 7z command to extract it and find .inf/.sys. If the file utility already reports "MS-DOS executable" or "Zip archive", I’ll give the direct 7z commands to extract. This is exactly the carve→extract→find INF/SYS path we used earlier.
If the decompressed blobs show no PK/MZ/MSI strings
  • We’ll try wrestling resources with wrestool (I can show that next) or carve the embedded MZ blocks (you already found MZ offsets earlier). If you prefer, the simpler fallback is to run the Samsung EXE on any working Windows machine and use Export‑WindowsDriver to get the INF/SYS folder (fast and reliable). I can guide either route.
A few paste/prompt tips (so things don’t hang)
  • Paste full multi-line blocks into the WSL terminal using Ctrl+Shift+V (Windows Terminal) or right-click (legacy console), or save the commands to a Windows file and copy into WSL (/mnt/c/...) and run them (that avoids paste errors). If a command seems to hang, press Ctrl+C and paste the last lines you saw. (We hit that grep stdin quirk earlier.)
Run the decompress + scan block above and paste the outputs requested. I’ll tell you the exact carve/extract commands next.
 

@ChatGPT

I think I missed a step here somewhere... but...



cosair@DESKTOP-1IUHAB1:~$
cosair@DESKTOP-1IUHAB1:~$
cosair@DESKTOP-1IUHAB1:~$ for f in *.zlib; do
> out="${f%.zlib}.dec"
> echo "Processing: $f -> $out"
> python3 -c "import zlib,sys;data=open(sys.argv[1],'rb').read();open(sys.argv[2],'wb').write(zlib.decompress(data))" "$f" "$out" \
> && echo " OK -> $out" || echo " FAILED -> $f"
> done
Processing: *.zlib -> *.dec
Traceback (most recent call last):
File "<string>", line 1, in <module>
FileNotFoundError: [Errno 2] No such file or directory: '*.zlib'
FAILED -> *.zlib
cosair@DESKTOP-1IUHAB1:~$
cosair@DESKTOP-1IUHAB1:~$
cosair@DESKTOP-1IUHAB1:~$
cosair@DESKTOP-1IUHAB1:~$ file *.dec
*.dec: cannot open `*.dec' (No such file or directory)
cosair@DESKTOP-1IUHAB1:~$
cosair@DESKTOP-1IUHAB1:~$
cosair@DESKTOP-1IUHAB1:~$ grep -a -n $'\x50\x4b\x03\x04' .dec || true # PK.. (ZIP/MSI/CAB)
a -n $'\x4d\x5a' .dec || true # MZ (PE)
grep -a -n 'SamsungInstaller64.msi' .dec || true
strings -a -n 6 .dec | egrep -i grep: .dec: No such file or directory
'samsung|installer|setup|.msi|.cab|cosair@DESKTOP-1IUHAB1:~$ grep -a -n $'\x4d\x5a' .dec || true # MZ (PE)
ys' || truegrep: .dec: No such file or directory
cosair@DESKTOP-1IUHAB1:~$ grep -a -n 'SamsungInstaller64.msi' .dec || true
grep: .dec: No such file or directory
cosair@DESKTOP-1IUHAB1:~$ strings -a -n 6 .dec | egrep -i 'samsung|installer|setup|.msi|.cab|.inf|.sys' || true
strings: '.dec': No such file
cosair@DESKTOP-1IUHAB1:~$
cosair@DESKTOP-1IUHAB1:~$
cosair@DESKTOP-1IUHAB1:~$
cosair@DESKTOP-1IUHAB1:~$
cosair@DESKTOP-1IUHAB1:~$ cd ~/ _carved_container.bin.extracted
-bash: cd: too many arguments
cosair@DESKTOP-1IUHAB1:~$
 

You’re not stuck — the shell errors happened because you were running the commands from the wrong directory (and a couple of pasted commands were malformed). Let’s get you back to the folder that actually contains the .zlib pieces and run a safe, robust sequence that won’t hang if globs don’t match.
Step A — change to the carved extraction folder (exact command)
Paste exactly (one line):
cd "$HOME/_carved_container.bin.extracted" && pwd && ls -la
You saw that folder earlier; it’s /home/cosair/_carved_container.bin.extracted. Don’t use a space after ~ (that’s what caused the “too many arguments” error).
Step B — safe decompress loop (handles “no matches” and prints OK/FAILED)
Copy‑paste the whole block below while you are in the _carved_container.bin.extracted folder:
shopt -s nullglob
files=( *.zlib )
if [ ${#files[@]} -eq 0 ]; then
echo "No .zlib files found in $(pwd)"
else
for f in "${files[@]}"; do
out="${f%.zlib}.dec"
echo "Processing: $f -> $out"
if python3 -c "import zlib,sys;data=open(sys.argv[1],'rb').read();open(sys.argv[2],'wb').write(zlib.decompress(data))" "$f" "$out"; then
echo " OK -> $out"
else
echo " FAILED -> $f"
fi
done
fi
shopt -u nullglob
This avoids the glob expanding to a literal "*.zlib" and shows you per-file status. (Same approach I recommended earlier when we decompressed the other blobs.)
Step C — inspect the decompressed files
Still in the same folder, run these (you can paste the block):

show what was created and types​

ls -la .dec 2>/dev/null || echo "no .dec files"
file
.dec 2>/dev/null || true

show headers + strings for each .dec​

for g in *.dec; do
echo "=== $g ==="
head -c 64 "$g" | hexdump -C
strings -a -n 8 "$g" | sed -n '1,40p'
done

look specifically for MSI/ZIP/INF/SYS​

grep -a -n $'\x50\x4b\x03\x04' .dec 2>/dev/null || true
grep -a -n $'\x4d\x5a'
.dec 2>/dev/null || true
grep -a -n 'SamsungInstaller64.msi' .dec 2>/dev/null || true
find . -type f ( -iname '
.msi' -o -iname '.cab' -o -iname '.inf' -o -iname '*.sys' ) -print 2>/dev/null || true
Step D — paste the outputs here
Paste the exact output of:
  • the decompress loop (OK/FAILED lines),
  • the file *.dec result,
  • any grep hits (they print filename:offset) and the small header/strings output.
What I’ll do next
  • If grep finds a PK/MZ signature or an MSI filename inside a particular .dec, I’ll give the exact dd carve command to extract that MSI and the 7z command to expand it and pull .inf/.sys.
  • If nothing is found in these .dec files, we’ll try resource extraction from the carved container or, if you prefer, the simple Export‑WindowsDriver fallback (run the Samsung EXE on a working Windows PC and Export‑WindowsDriver) — that’s usually the fastest, least‑fragile way to obtain INF/SYS files for DISM injection.
Quick troubleshooting notes
  • If a command appears to “hang”, press Ctrl+C and paste the last lines you saw — often it’s because grep was waiting on stdin due to a malformed command. (That’s what happened earlier.)
  • If pasting long blocks into WSL is unreliable, save the block into a file on Windows (e.g. C:\Temp\script.sh), then run it from WSL with: cp /mnt/c/Temp/script.sh ~/ && sed -i 's/\r$//' ~/script.sh && chmod +x ~/script.sh && ~/script.sh
Do the cd step first and then the decompress block; paste the outputs and I’ll give the exact carve/extract commands next.
 

@ChatGPT


cosair@DESKTOP-1IUHAB1:~$ cd "$HOME/_carved_container.bin.extracted" && pwd && ls -la
/home/cosair/_carved_container.bin.extracted
total 8668
drwxr-xr-x 2 cosair cosair 4096 Oct 26 04:30 .
drwxr-x--- 7 cosair cosair 4096 Oct 26 04:30 ..
-rw-r--r-- 1 cosair cosair 3144 Oct 26 04:30 1D1F0
-rw-r--r-- 1 cosair cosair 2906100 Oct 26 04:30 1D1F0.zlib
-rw-r--r-- 1 cosair cosair 193738 Oct 26 04:30 1DC60
-rw-r--r-- 1 cosair cosair 2903428 Oct 26 04:30 1DC60.zlib
-rw-r--r-- 1 cosair cosair 16448 Oct 26 04:30 2F00E
-rw-r--r-- 1 cosair cosair 2832854 Oct 26 04:30 2F00E.zlib
cosair@DESKTOP-1IUHAB1:~/_carved_container.bin.extracted$
cosair@DESKTOP-1IUHAB1:~/_carved_container.bin.extracted$ shopt -s nullglob
( *.zlib )
if [ ${#cosair@DESKTOP-1IUHAB1:~/_carved_container.bin.extracted$ files=( *.zlib )
cosair@DESKTOP-1IUHAB1:~/_carved_container.bin.extracted$ if [ ${#files[@]} -eq 0 ]; then
> echo "No .zlib files found in $(pwd)"
> else
> for f in "${files[@]}"; do
> out="${f%.zlib}.dec"
> echo "Processing: $f -> $out"
> if python3 -c "import zlib,sys;data=open(sys.argv[1],'rb').read();open(sys.argv[2],'wb').write(zlib.decompress(data))" "$f" "$out"; then
> echo " OK -> $out"
> else
> echo " FAILED -> $f"
> fi
> done
> fi
Processing: 1D1F0.zlib -> 1D1F0.dec
nullglob OK -> 1D1F0.dec
Processing: 1DC60.zlib -> 1DC60.dec
OK -> 1DC60.dec
Processing: 2F00E.zlib -> 2F00E.dec
OK -> 2F00E.dec
cosair@DESKTOP-1IUHAB1:~/_carved_container.bin.extracted$ shopt -u nullglob
cosair@DESKTOP-1IUHAB1:~/_carved_container.bin.extracted$
cosair@DESKTOP-1IUHAB1:~/_carved_container.bin.extracted$ ls -la .dec 2>/dev/null || echo "no .dec files"
>/dev/null || trueno .dec files
cosair@DESKTOP-1IUHAB1:~/_carved_container.bin.extracted$ file .dec 2>/dev/null || true
.dec: cannot open `.dec' (No such file or directory)
cosair@DESKTOP-1IUHAB1:~/_carved_container.bin.extracted$ for g in *.dec; do
g ==="> echo "=== $g ==="
> head -c 64 "$g" | hexdump -C
> strings -a -n 8 "$g" | sed -n '1,40p'
> done
=== 1D1F0.dec ===
00000000 00 00 0c 48 4c 69 6e 6f 02 10 00 00 6d 6e 74 72 |...HLino....mntr|
00000010 52 47 42 20 58 59 5a 20 07 ce 00 02 00 09 00 06 |RGB XYZ ........|
00000020 00 31 00 00 61 63 73 70 4d 53 46 54 00 00 00 00 |.1..acspMSFT....|
00000030 49 45 43 20 73 52 47 42 00 00 00 00 00 00 00 00 |IEC sRGB........|
00000040
mntrRGB XYZ
acspMSFT
IEC sRGB
Copyright (c) 1998 Hewlett-Packard Company
sRGB IEC61966-2.1
sRGB IEC61966-2.1
IEC http://www.iec.ch
IEC http://www.iec.ch
.IEC 61966-2.1 Default RGB colour space - sRGB
.IEC 61966-2.1 Default RGB colour space - sRGB
,Reference Viewing Condition in IEC61966-2.1
,Reference Viewing Condition in IEC61966-2.1
CRT curv
% : O d y
=== 1DC60.dec ===
00000000 01 87 88 87 e5 01 00 01 00 02 02 02 01 02 01 01 |................|
00000010 01 00 01 00 01 02 01 02 02 00 00 00 02 01 01 02 |................|
00000020 03 00 00 00 02 00 00 ff 03 ff ff 00 03 ff ff ff |................|
00000030 02 ff ff ff 01 ff ff fe 02 ff ff 00 01 fe ff fe |................|
00000040
=== 2F00E.dec ===
00000000 00 ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff |................|
00000010 ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff |................|
*
00000040
cosair@DESKTOP-1IUHAB1:~/_carved_container.bin.extracted$ grep -a -n $'\x50\x4b\x03\x04' .dec 2>/dev/null || true
-a -n $'\x4d\x5a' .dec 2>/dev/null || true
grep -a -n 'SamsungInstaller64.msi' .dec 2>/dev/null || true
find . -type fcosair@DESKTOP-1IUHAB1:~/_carved_container.bin.extracted$ grep -a -n $'\x4d\x5a' .dec 2>/dev/null || true
( -iname '.msi' -o -iname '.cab' -o -iname '.inf' -o -iname '*.sys' ) -print 2>/dev/null || truecosair@DESKTOP-1IUHAB1:~/_carved_container.bin.extracted$ grep -a -n 'SamsungInstaller64.msi' .dec 2>/dev/null || true
cosair@DESKTOP-1IUHAB1:~/_carved_container.bin.extracted$ find . -type f ( -iname '.msi' -o -iname '.cab' -o -iname '.inf' -o -iname '*.sys' ) -print 2>/dev/null || true
-bash: syntax error near unexpected token `('
cosair@DESKTOP-1IUHAB1:~/_carved_container.bin.extracted$
 

Back
Top