-
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
1 parent
5809133
commit 4cc6214
Showing
7 changed files
with
312 additions
and
10 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 |
---|---|---|
@@ -1,4 +1,5 @@ | ||
*.xml | ||
*.exe | ||
[Oo][Ff][Ff][Ii][Cc][Ee] | ||
[Oo][Ff][Ff][Ii][Cc][Ee].[Oo][Ll][Dd] | ||
[Oo][Ff][Ff][Ii][Cc][Ee].[Oo][Ll][Dd] | ||
.vscode |
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,85 @@ | ||
<!DOCTYPE html> | ||
<html lang="tr"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Office Dağıtım Aracı PowerShell Script</title> | ||
<style> | ||
body { | ||
font-family: Arial, sans-serif; | ||
} | ||
pre { | ||
background-color: #f4f4f4; | ||
padding: 10px; | ||
border: 1px solid #ddd; | ||
overflow-x: auto; | ||
} | ||
code { | ||
background-color: #f4f4f4; | ||
padding: 2px 4px; | ||
border-radius: 4px; | ||
} | ||
.center { | ||
text-align: center; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<div class="center"> | ||
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/Microsoft_365_%282022%29.svg/1862px-Microsoft_365_%282022%29.svg.png" width="150" height="150"> | ||
<img src="https://raw.githubusercontent.com/PowerShell/PowerShell/master/assets/ps_black_64.svg?sanitize=true" width="150" height="150"> | ||
<p><b>Office Deployment Tool Kullanımını Kolaylaştırmak İçin PowerShell Script</b></p> | ||
</div> | ||
<div class="center"> | ||
<img src="../assets/image/odt-script.png" height="400" alt="ODT Script"> | ||
</div> | ||
<h1>Office Dağıtım Aracı PowerShell Script</h1> | ||
<p>Bu PowerShell script, Office Deployment Tool kullanımını kolaylaştırmak için basit ve etkileşimli bir arayüz sağlar.</p> | ||
|
||
<h2>Kullanım</h2> | ||
|
||
<h3>Seçenek 1: Yükleyici ile Çalıştırma</h3> | ||
<p><code>installer.bat</code> dosyasına çift tıklayın.</p> | ||
|
||
<h4>VEYA</h4> | ||
<p>Aşağıdaki PowerShell komutunu çalıştırın:</p> | ||
<pre><code>start powershell.exe -ExecutionPolicy Bypass -File .\installer.ps1 | ||
</code></pre> | ||
|
||
<h3>Seçenek 2: Komut Satırı Arayüzünde (CLI) Çalıştırma</h3> | ||
<pre><code>Kullanım: | ||
.\installer.ps1 [-h] [-c <ConfigFile>] [-i] [-d] | ||
|
||
Parametreler: | ||
-h, -?, -Help | ||
Bu yardım mesajını görüntüler. | ||
|
||
-c, -ConfigFile <ConfigFile> | ||
Kullanılacak yapılandırma dosyasını belirtir. | ||
|
||
-i, -Install | ||
Kurulum sürecini başlatır. | ||
|
||
-d, -Download | ||
İndirme sürecini başlatır. | ||
</code></pre> | ||
|
||
<h4>Örnek Komut</h4> | ||
<pre><code>powershell.exe -ExecutionPolicy Bypass -File .\installer.ps1 -i -d | ||
</code></pre> | ||
|
||
<h2>Faydalı Bağlantılar</h2> | ||
<ul> | ||
<li><a href="https://config.office.com/">config.office.com</a> (<a href="https://learn.microsoft.com/en-us/deployoffice/office-deployment-tool-configuration-options">Dokümantasyon</a>) | ||
<ul> | ||
<li>Office dağıtımı için yapılandırma dosyalarını oluşturmanın kolay bir yolu.</li> | ||
</ul> | ||
</li> | ||
<li><a href="https://aka.ms/SaRA-OfficeUninstallFromPC">SetupProd_OffScrub.exe</a> (<a href="https://support.microsoft.com/en-us/office/uninstall-office-automatically-9ad57b43-fa12-859a-9cf0-b694637b3b05">Dokümantasyon</a>) | ||
<ul> | ||
<li>Office kurulumu bozulduğunda yardımcı olan bu uygulama ile Office'i kaldırabilir ve yeniden yükleyebilirsiniz. Özellikle kaldırma işlemleri için kullanışlıdır.</li> | ||
</ul> | ||
</li> | ||
</ul> | ||
</body> | ||
</html> |
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,85 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Office Deployment Tool PowerShell Script</title> | ||
<style> | ||
body { | ||
font-family: Arial, sans-serif; | ||
} | ||
pre { | ||
background-color: #f4f4f4; | ||
padding: 10px; | ||
border: 1px solid #ddd; | ||
overflow-x: auto; | ||
} | ||
code { | ||
background-color: #f4f4f4; | ||
padding: 2px 4px; | ||
border-radius: 4px; | ||
} | ||
.center { | ||
text-align: center; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<div class="center"> | ||
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/Microsoft_365_%282022%29.svg/1862px-Microsoft_365_%282022%29.svg.png" width="150" height="150"> | ||
<img src="https://raw.githubusercontent.com/PowerShell/PowerShell/master/assets/ps_black_64.svg?sanitize=true" width="150" height="150"> | ||
<p><b>Powershell Script to Simplify Office Deployment Tool Usage</b></p> | ||
</div> | ||
<div class="center" > | ||
<img src="../assets/image/odt-script.png" height="400" alt="ODT Script"> | ||
</div> | ||
<h1>Office Deployment Tool PowerShell Script</h1> | ||
<p>This PowerShell script is designed to make the Office Deployment Tool easier to use by providing a simple and interactive interface.</p> | ||
|
||
<h2>Usage</h2> | ||
|
||
<h3>Option 1: Run with Installer</h3> | ||
<p>Double-click the <code>installer.bat</code> file.</p> | ||
|
||
<h4>OR</h4> | ||
<p>Run the following PowerShell command:</p> | ||
<pre><code>start powershell.exe -ExecutionPolicy Bypass -File .\installer.ps1 | ||
</code></pre> | ||
|
||
<h3>Option 2: Run in Command Line Interface (CLI)</h3> | ||
<pre><code>Usage: | ||
.\installer.ps1 [-h] [-c <ConfigFile>] [-i] [-d] | ||
|
||
Parameters: | ||
-h, -?, -Help | ||
Displays this help message. | ||
|
||
-c, -ConfigFile <ConfigFile> | ||
Specifies the configuration file to be used. | ||
|
||
-i, -Install | ||
Triggers the installation process. | ||
|
||
-d, -Download | ||
Starts the download process. | ||
</code></pre> | ||
|
||
<h4>Example Command</h4> | ||
<pre><code>powershell.exe -ExecutionPolicy Bypass -File .\installer.ps1 -i -d | ||
</code></pre> | ||
|
||
<h2>Useful Links</h2> | ||
<ul> | ||
<li><a href="https://config.office.com/">config.office.com</a> (<a href="https://learn.microsoft.com/en-us/deployoffice/office-deployment-tool-configuration-options">Documentation</a>) | ||
<ul> | ||
<li>An easy way to create configuration files for Office deployment.</li> | ||
</ul> | ||
</li> | ||
<li><a href="https://aka.ms/SaRA-OfficeUninstallFromPC">SetupProd_OffScrub.exe</a> (<a href="https://support.microsoft.com/en-us/office/uninstall-office-automatically-9ad57b43-fa12-859a-9cf0-b694637b3b05">Documentation</a>) | ||
<ul> | ||
<li>This application helps when the Office installation is corrupted. It can be used to uninstall and reinstall Office, and is particularly useful for uninstallation purposes.</li> | ||
</ul> | ||
</li> | ||
</ul> | ||
</body> | ||
</html> |
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 |
---|---|---|
@@ -1,14 +1,55 @@ | ||
<div align="center"> | ||
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/Microsoft_365_%282022%29.svg/1862px-Microsoft_365_%282022%29.svg.png" width="150" height="150"> | ||
<img src="https://raw.githubusercontent.com/PowerShell/PowerShell/master/assets/ps_black_64.svg?sanitize=true" width="150" height="150"> | ||
<p> <b>Powershell script designed to make the office deployment tool tool easier to use </b></p> | ||
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/Microsoft_365_%282022%29.svg/1862px-Microsoft_365_%282022%29.svg.png" width="150" height="150"> | ||
<img src="https://raw.githubusercontent.com/PowerShell/PowerShell/master/assets/ps_black_64.svg?sanitize=true" width="150" height="150"> | ||
<p><b>Powershell Script to Simplify Office Deployment Tool Usage</b></p> | ||
</div> | ||
|
||
<img src="./assets/image/odt-script.png"> | ||
|
||
# Usage | ||
# Office Deployment Tool PowerShell Script | ||
|
||
This PowerShell script is designed to make the Office Deployment Tool easier to use by providing a simple and interactive interface. | ||
|
||
## Usage | ||
|
||
### Option 1: Run with Installer | ||
|
||
Double-click the `installer.bat` file. | ||
### OR | ||
```pwsh | ||
|
||
#### OR | ||
|
||
Run the following PowerShell command: | ||
|
||
```bat | ||
start powershell.exe -ExecutionPolicy Bypass -File .\installer.ps1 | ||
``` | ||
``` | ||
### Option 2: Run in Command Line Interface (CLI) | ||
```powershell | ||
Usage: | ||
.\installer.ps1 [-h] [-c <ConfigFile>] [-i] [-d] | ||
Parameters: | ||
-h, -?, -Help | ||
Displays this help message. | ||
-c, -ConfigFile <ConfigFile> | ||
Specifies the configuration file to be used. | ||
-i, -Install | ||
Triggers the installation process. | ||
-d, -Download | ||
Starts the download process. | ||
``` | ||
#### Example Command | ||
```powershell | ||
powershell.exe -ExecutionPolicy Bypass -File .\installer.ps1 -i -d | ||
``` | ||
|
||
## Useful Links | ||
|
||
- [config.office.com](https://config.office.com/) ([Documentation](https://learn.microsoft.com/en-us/deployoffice/office-deployment-tool-configuration-options)) | ||
- An easy way to create configuration files for Office deployment. | ||
- [SetupProd_OffScrub.exe](https://aka.ms/SaRA-OfficeUninstallFromPC) ([Documentation](https://support.microsoft.com/en-us/office/uninstall-office-automatically-9ad57b43-fa12-859a-9cf0-b694637b3b05)) | ||
- This application helps when the Office installation is corrupted. It can be used to uninstall and reinstall Office, and is particularly useful for uninstallation purposes. |
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
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
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