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

Draft
wants to merge 51 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from 32 commits
Commits
Show all changes
51 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
ebf5389
Merge branch 'main' of https://github.com/Azure/azure-storage-azcopy …
dphulkar-msft Oct 24, 2024
f50f469
Merge branch 'main' of https://github.com/Azure/azure-storage-azcopy …
dphulkar-msft Nov 4, 2024
85ee524
create windows msi
dphulkar-msft Nov 4, 2024
1a3104c
create windows msi
dphulkar-msft Nov 4, 2024
de165d7
create windows msi
dphulkar-msft Nov 4, 2024
5941470
create windows msi
dphulkar-msft Nov 4, 2024
d57b439
create windows msi
dphulkar-msft Nov 4, 2024
49ed85a
create windows msi
dphulkar-msft Nov 4, 2024
f04a07d
Merge branch 'main' of https://github.com/Azure/azure-storage-azcopy …
dphulkar-msft Nov 7, 2024
0de3c25
create windows msi
dphulkar-msft Nov 7, 2024
c9062e5
create windows msi
dphulkar-msft Nov 7, 2024
bb953ad
Merge branch 'main' of https://github.com/Azure/azure-storage-azcopy …
dphulkar-msft Nov 19, 2024
a1277c9
create msi
dphulkar-msft Nov 19, 2024
f8851ed
create msi
dphulkar-msft Nov 19, 2024
802e04a
create msi
dphulkar-msft Nov 19, 2024
56f968d
create msi
dphulkar-msft Nov 19, 2024
a18d80d
create msi
dphulkar-msft Nov 25, 2024
63f694c
create msi
dphulkar-msft Nov 25, 2024
2b1eb4d
create msi
dphulkar-msft Nov 26, 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.

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

yes this is the PR in progress not ready for review. Yes will not be using the Version as static value. Will make the changes for it

<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