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:
@@ -30,13 +30,30 @@ namespace InstaSoftOfficeTool.Pages
|
||||
SumLanguage.Text = _config.GetLanguageDisplayName() + " (" + _config.Language + ")";
|
||||
SumKey.Text = string.IsNullOrEmpty(_config.ProductKey) ? "Nincs megadva" : _config.ProductKey;
|
||||
|
||||
if (_config.ExcludedApps.Count > 0)
|
||||
SumExcluded.Text = string.Join(", ", _config.ExcludedApps);
|
||||
else
|
||||
SumExcluded.Text = "Nincs (minden alkalmaz\u00e1s telep\u00fcl)";
|
||||
if (_config.IsMsiInstall)
|
||||
{
|
||||
// MSI mode: no app exclusion, show ISO info instead of XML
|
||||
SumExcluded.Text = "(a Microsoft telepítőben választható)";
|
||||
|
||||
_generatedXml = OdtXmlGenerator.Generate(_config);
|
||||
XmlPreview.Text = _generatedXml;
|
||||
string isoUrl = _config.GetIsoUrl();
|
||||
XmlPreview.Text = "Telepítési mód: ISO letöltés + MSI telepítő\n" +
|
||||
"ISO URL: " + (isoUrl ?? "Nem elérhető") + "\n\n" +
|
||||
"A telepítő ISO fájl letöltése után a Microsoft Office\n" +
|
||||
"saját telepítője indul el automatikusan.";
|
||||
|
||||
BtnSaveXml.Visibility = System.Windows.Visibility.Collapsed;
|
||||
}
|
||||
else
|
||||
{
|
||||
if (_config.ExcludedApps.Count > 0)
|
||||
SumExcluded.Text = string.Join(", ", _config.ExcludedApps);
|
||||
else
|
||||
SumExcluded.Text = "Nincs (minden alkalmazás települ)";
|
||||
|
||||
_generatedXml = OdtXmlGenerator.Generate(_config);
|
||||
XmlPreview.Text = _generatedXml;
|
||||
BtnSaveXml.Visibility = System.Windows.Visibility.Visible;
|
||||
}
|
||||
}
|
||||
|
||||
private void BtnSaveXml_Click(object sender, RoutedEventArgs e)
|
||||
|
||||
Reference in New Issue
Block a user