Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
gtworek authored Nov 7, 2019
1 parent f55ccd2 commit cad1ae8
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions MSI_Payload/Mimi.wxs
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<?xml version="1.0" encoding="UTF-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
<Product Id="*" Name="GTMimi" Language="1033" Version="1.0.0.0" Manufacturer="GTworek" UpgradeCode="c8eeadef-ded6-45c7-bd20-7fdd83c7e71b">
<Package InstallerVersion="200" Compressed="yes" InstallScope="perMachine" Platform="x64"/>

<MajorUpgrade DowngradeErrorMessage="A newer version of [ProductName] is already installed." />
<MediaTemplate EmbedCab="yes" />

<Feature Id="ProductFeature" Title="Mimi" Level="1">
<ComponentGroupRef Id="ProductComponents" />
</Feature>
</Product>

<Fragment>
<Directory Id="TARGETDIR" Name="SourceDir">
<Directory Id="ProgramFiles64Folder">
<Directory Id="INSTALLFOLDER" Name="Mimikatz" />
</Directory>
</Directory>
</Fragment>

<Fragment>
<ComponentGroup Id="ProductComponents" Directory="INSTALLFOLDER">
<!-- TODO: Remove the comments around this Component element and the ComponentRef below in order to add resources to this installer. -->
<!-- <Component Id="ProductComponent"> -->
<!-- TODO: Insert files, registry keys, and other resources here. -->
<!-- </Component> -->
<Component Id="Mimikatz" Guid="*">
<File Id="mimikatz.exe" Name="mimikatz.exe" Source="mimikatz.exe" />
</Component>
</ComponentGroup>
</Fragment>
</Wix>

0 comments on commit cad1ae8

Please sign in to comment.