-
Notifications
You must be signed in to change notification settings - Fork 1
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
ee8ba9b
commit 19b5ad7
Showing
7 changed files
with
50 additions
and
22 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,2 +1,3 @@ | ||
/links/* | ||
!/links/README.md | ||
!/links/README_ru.md |
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,18 @@ | ||
Данный скрипт позволяет создать автозагрузку приложений, которые будут запускаться от имени администратора при входе пользователя в Windows (ибо автозагрузка в самом Windows не позволяет запускать приложения от имени администратора). | ||
**EN** | [RU](README_ru.md) | ||
|
||
Это достигается при помощи создания соответствующего запланированного задания. Для его создания необходимо запустить `PowerShell` **от имени администратора**, и выполнить: | ||
This script allows you to create an application startup that will run as an administrator when a user logs into Windows (because startup in Windows itself does not allow you to run applications as an administrator). | ||
|
||
This is achieved by creating an appropriate scheduled task. To create it, you need to run `PowerShell` **as administrator**, and execute: | ||
```powershell | ||
& "<путь к склонированному репозиторию>/task_create.ps1" | ||
& "<path to the cloned repository>/task_create.ps1" | ||
``` | ||
Ввести: | ||
Enter: | ||
```powershell | ||
Y | ||
``` | ||
|
||
Созданное запланированное задание можно посмотреть в `Планировщике заданий Windows` и изменить вручную, если требуется. Название создаваемого задания: `RunProgramsOnStartup`. Повторный вызов скрипта `task_create.ps1` пересоздаст задание. | ||
The created scheduled task can be viewed in the `Windows Task Manager` and changed manually if required. The name of the task being created: `RunProgramsOnStartup`. Calling the `task_create.ps1` script again will recreate the task. | ||
|
||
The task itself calls the script `task_script.ps1`, which, in turn, runs all shortcuts of programs located in the folder `<path to the cloned repository>/links` in a loop. At the moment, the script works with shortcuts, not executable files. If there are no shortcuts, then nothing will happen. | ||
|
||
Само задание вызывает скрипт `task_script.ps1`, который, в свою очередь, в цикле запускает все ярлыки программ, расположенных в папке `<путь к склонированному репозиторию>/links`. На данный момент скрипт работает именно с ярлыками, а не исполняемыми файлами. Если ярлыков нет, то ничего не произойдёт. | ||
Feel free to contribute! |
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,18 @@ | ||
[EN](README.md) | **RU** | ||
|
||
Данный скрипт позволяет создать автозагрузку приложений, которые будут запускаться от имени администратора при входе пользователя в Windows (ибо автозагрузка в самом Windows не позволяет запускать приложения от имени администратора). | ||
|
||
Это достигается при помощи создания соответствующего запланированного задания. Для его создания необходимо запустить `PowerShell` **от имени администратора**, и выполнить: | ||
```powershell | ||
& "<путь к склонированному репозиторию>/task_create.ps1" | ||
``` | ||
Ввести: | ||
```powershell | ||
Y | ||
``` | ||
|
||
Созданное запланированное задание можно посмотреть в `Планировщике заданий Windows` и изменить вручную, если требуется. Название создаваемого задания: `RunProgramsOnStartup`. Повторный вызов скрипта `task_create.ps1` пересоздаст задание. | ||
|
||
Само задание вызывает скрипт `task_script.ps1`, который, в свою очередь, в цикле запускает все ярлыки программ, расположенных в папке `<путь к склонированному репозиторию>/links`. На данный момент скрипт работает именно с ярлыками, а не исполняемыми файлами. Если ярлыков нет, то ничего не произойдёт. | ||
|
||
Не стесняйтесь вносить свой вклад! |
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 +1,3 @@ | ||
Положить в эту папку ярлыки исполняемых файлов. | ||
**EN** | [RU](README_ru.md) | ||
|
||
Put programs' shortcuts in this folder. |
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,3 @@ | ||
[EN](README.md) | **RU** | ||
|
||
Положить в эту папку ярлыки программ. |
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