Skip to content

Commit

Permalink
Updated Readmes
Browse files Browse the repository at this point in the history
  • Loading branch information
farag2 committed Nov 29, 2024
1 parent 07eada5 commit 9910894
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 0 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,12 @@ https://github.com/user-attachments/assets/f5bda68f-9509-41dc-b3b1-1518aeaee36f
### How to run the specific function(s)

* Do all steps from [Manual method](#manual-method) section and stop at setting execution policy in `PowerShell`;
* Set execution policy to be able to run scripts only in the current PowerShell session;

```powershell
Set-ExecutionPolicy -ExecutionPolicy Bypass -Scope Process -Force
```

* [Dot source](https://docs.microsoft.com/ru-ru/powershell/module/microsoft.powershell.core/about/about_operators#dot-sourcing-operator) the `Functions.ps1` file first:

```powershell
Expand Down
6 changes: 6 additions & 0 deletions docs/README_de-de.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,12 @@ https://github.com/user-attachments/assets/f5bda68f-9509-41dc-b3b1-1518aeaee36f
### Verwendung von spezifischen Funktionen

* Führen Sie alle Schritte aus dem Abschnitt [Manuelle Methode](#manuelle-methode) aus und stoppen Sie bei den Einstellungen der Ausführungsrichtlinie in PowerShell.
* Legen Sie die Ausführungsrichtlinie so fest, dass Skripts nur in der aktuellen PowerShell-Sitzung ausgeführt werden können;

```powershell
Set-ExecutionPolicy -ExecutionPolicy Bypass -Scope Process -Force
```

* Um spezifische Funktionen auszuführen [dot source](https://docs.microsoft.com/ru-ru/powershell/module/microsoft.powershell.core/about/about_operators#dot-sourcing-operator) die `Functions.ps1` datei zuerst:

```powershell
Expand Down
6 changes: 6 additions & 0 deletions docs/README_ru-ru.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,12 @@ https://github.com/user-attachments/assets/f5bda68f-9509-41dc-b3b1-1518aeaee36f
### Как выполните конкретную функцию(и)

* Выполните все шаги из пукнта [Вручную](#вручную) и остановитесь на пункте по изменнию политики выполнения скриптов в `PowerShell`;
* Установите политику выполнения, чтобы можно было выполнять скрипты в текущей сессии PowerShell;

```powershell
Set-ExecutionPolicy -ExecutionPolicy Bypass -Scope Process -Force
```

* Сначала загрузите файл `Functions.ps1` через [дот сорсинг](https://docs.microsoft.com/ru-ru/powershell/module/microsoft.powershell.core/about/about_operators#dot-sourcing-operator):

```powershell
Expand Down
6 changes: 6 additions & 0 deletions docs/README_uk-ua.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,12 @@ https://github.com/user-attachments/assets/f5bda68f-9509-41dc-b3b1-1518aeaee36f
### Як запустити певну функцію(ї)

* Повторіть усі кроки з розділу [Вручну](#manual-method) і зупиніться на кроці встановлення політики виконання скриптів у `PowerShell`;
* Встановіть політику виконання, щоб мати змогу запускати сценарії лише у поточному сеансі PowerShell;

```powershell
Set-ExecutionPolicy -ExecutionPolicy Bypass -Scope Process -Force
```

* Для запуску певної функції(й) [запустити](https://docs.microsoft.com/ru-ru/powershell/module/microsoft.powershell.core/about/about_operators#dot-sourcing-operator) необхідно запустити файл `Functions.ps1`:

```powershell
Expand Down

0 comments on commit 9910894

Please sign in to comment.