Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create msi for windows #2819

Open
wants to merge 32 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
bd0722b
creating azcopy msi installer
dphulkar-msft Oct 4, 2024
f2651b0
Create windows msi
dphulkar-msft Oct 4, 2024
b5df7db
Create windows msi
dphulkar-msft Oct 4, 2024
07e5f5e
Create windows msi
dphulkar-msft Oct 7, 2024
e84a248
Create windows msi
dphulkar-msft Oct 7, 2024
9173779
Create windows msi
dphulkar-msft Oct 7, 2024
e134d48
Create windows msi
dphulkar-msft Oct 7, 2024
0b49218
Create windows msi
dphulkar-msft Oct 7, 2024
8371f1a
Create windows msi
dphulkar-msft Oct 7, 2024
28ff617
Create windows msi
dphulkar-msft Oct 7, 2024
24b4c27
Create windows msi
dphulkar-msft Oct 7, 2024
28672eb
Create windows msi
dphulkar-msft Oct 7, 2024
333d8a4
Create windows msi
dphulkar-msft Oct 7, 2024
f53f39a
Create windows msi
dphulkar-msft Oct 7, 2024
8b8290a
Create windows msi
dphulkar-msft Oct 7, 2024
d17c4dc
Create windows msi
dphulkar-msft Oct 7, 2024
04f31a7
Create windows msi
dphulkar-msft Oct 7, 2024
78d9287
Create windows msi
dphulkar-msft Oct 7, 2024
07890ab
Create windows msi
dphulkar-msft Oct 7, 2024
bfded4a
Create windows msi
dphulkar-msft Oct 7, 2024
5da3c02
Create windows msi
dphulkar-msft Oct 7, 2024
f552be5
Create windows msi
dphulkar-msft Oct 7, 2024
5783cc2
Create windows msi
dphulkar-msft Oct 7, 2024
d4d1cd4
Create windows msi
dphulkar-msft Oct 7, 2024
1f4fbda
Create windows msi
dphulkar-msft Oct 7, 2024
8500d18
Create windows msi
dphulkar-msft Oct 7, 2024
599fe81
Create windows msi
dphulkar-msft Oct 8, 2024
2b59069
Create windows msi
dphulkar-msft Oct 8, 2024
560acbc
Create windows msi
dphulkar-msft Oct 8, 2024
fa836d6
Create windows msi
dphulkar-msft Oct 8, 2024
6a63cab
Create windows msi
dphulkar-msft Oct 8, 2024
56d0cdf
Create windows msi
dphulkar-msft Oct 8, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions azcopy.wxs
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<?xml version="1.0" encoding="UTF-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
<Product Id="*" Name="azcopy" Language="1033" Version="10.26.0" Manufacturer="Microsoft" UpgradeCode="abeee33a-0cca-4060-89d7-0687f7374f7a">
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Will this version need to change every release? If so, we should add a section to the release process to double check this.

<Package InstallerVersion="200" Compressed="yes" InstallScope="perMachine" />

<MediaTemplate />

<Directory Id="TARGETDIR" Name="SourceDir">
<Directory Id="ProgramFilesFolder">
<Directory Id="INSTALLDIR" Name="azcopy">
<Component Id="azcopy.exe" Guid="abeee33a-0cca-4060-89d7-0687f7374f7a">
<File Id="azcopy.exe" Source="azcopy_executable_path" />
</Component>
</Directory>
</Directory>
</Directory>

<Feature Id="ProductFeature" Title="AzCopy" Level="1">
<ComponentRef Id="azcopy.exe" />
</Feature>
</Product>
</Wix>
Loading
Loading