forked from gtworek/PSBits
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |