/
githubmirror
/
Files
Обзор
Документация
Войти
/
githubmirror
/
Files
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Files.App/Data/Enums/PowerShellExecutionOptions.cs
27 строк
501 B
Yair
Code Quality: Updated license header
31 дек 2024, 05:03
31 дек 2024, 05:03
8436c6d
Код
Авторство
О чём код?
// Copyright (c) Files Community // Licensed under the MIT License. namespace Files.App.Data.Enums { /// <summary> /// Represents options for PowerShell execution. /// </summary> [Flags] public enum PowerShellExecutionOptions { /// <summary> /// Default options. /// </summary> None = 0x0, /// <summary> /// Run the PowerShell command hidden. /// </summary> Hidden = 0x1, /// <summary> /// Run PowerShell with elevated privileges. /// </summary> Elevated = 0x2 } }