v1.22 — Office 2016 MSI ISO telepítés támogatás
Office 2016 Standard és Professional Plus telepítése ISO letöltéssel (soft.direct), ISO csatolással és a Microsoft MSI telepítő indításával. A 2019/2021/2024 verziók továbbra is ODT-vel működnek. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -8,6 +8,22 @@ namespace InstaSoftOfficeTool.Models
|
||||
public string Channel { get; set; }
|
||||
public bool IsVolume { get; set; }
|
||||
|
||||
// MSI ISO telepítés (Office 2016)
|
||||
public string IsoUrl32 { get; set; }
|
||||
public string IsoUrl64 { get; set; }
|
||||
|
||||
public bool IsMsiInstall => IsoUrl64 != null || IsoUrl32 != null;
|
||||
|
||||
public string GetIsoUrl(string architecture)
|
||||
{
|
||||
return architecture == "32" ? IsoUrl32 : IsoUrl64;
|
||||
}
|
||||
|
||||
public bool HasArchitecture(string architecture)
|
||||
{
|
||||
return architecture == "32" ? IsoUrl32 != null : IsoUrl64 != null;
|
||||
}
|
||||
|
||||
public static OfficeEdition[] GetEditions(OfficeVersion version)
|
||||
{
|
||||
switch (version)
|
||||
@@ -108,7 +124,9 @@ namespace InstaSoftOfficeTool.Models
|
||||
Description = "Alapvető irodai alkalmazások: Word, Excel, PowerPoint, Outlook, OneNote",
|
||||
ProductId = "Standard2016Volume",
|
||||
Channel = "PerpetualVL2019",
|
||||
IsVolume = true
|
||||
IsVolume = true,
|
||||
IsoUrl32 = "https://soft.direct/Install/SW_DVD5_Office_2016_W32_Hungarian_MLF_X20-41370.iso",
|
||||
IsoUrl64 = "https://soft.direct/Install/SW_DVD5_Office_2016_W64_Hungarian_MLF_X20-41370.iso"
|
||||
},
|
||||
new OfficeEdition
|
||||
{
|
||||
@@ -116,15 +134,8 @@ namespace InstaSoftOfficeTool.Models
|
||||
Description = "Teljes csomag: Word, Excel, PowerPoint, Outlook, Access, Publisher, OneNote, Skype for Business",
|
||||
ProductId = "ProPlus2016Volume",
|
||||
Channel = "PerpetualVL2019",
|
||||
IsVolume = true
|
||||
},
|
||||
new OfficeEdition
|
||||
{
|
||||
DisplayName = "Otthoni és kisvállalati verzió",
|
||||
Description = "Word, Excel, PowerPoint, Outlook, OneNote — vállalkozásokban is használható",
|
||||
ProductId = "HomeBusiness2016Retail",
|
||||
Channel = "Current",
|
||||
IsVolume = false
|
||||
IsVolume = true,
|
||||
IsoUrl64 = "https://soft.direct/Install/SW_DVD5_Office_Professional_Plus_2016_64Bit_Hungarian_MLF_X20-42439.ISO"
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user