mirror of
https://github.com/m-lamonaca/script-launcher.git
synced 2025-04-05 18:06:28 +00:00
use appropriate elevation verb bases on OS
This commit is contained in:
parent
28e67d7d28
commit
e1e6a384c0
1 changed files with 43 additions and 30 deletions
|
@ -26,36 +26,49 @@ internal static class ScriptExecutor
|
||||||
).ConfigureAwait(ConfigureAwaitOptions.None);
|
).ConfigureAwait(ConfigureAwaitOptions.None);
|
||||||
}
|
}
|
||||||
|
|
||||||
private static ProcessStartInfo? GetExecutableProcessInfo(FileInfo file, bool elevated) =>
|
private static string GetElevationVerb(bool elevated)
|
||||||
file.Extension switch
|
{
|
||||||
|
if (!elevated)
|
||||||
{
|
{
|
||||||
".bat"
|
return string.Empty;
|
||||||
or ".cmd"
|
}
|
||||||
=> new ProcessStartInfo
|
|
||||||
{
|
var platform = Environment.OSVersion.Platform;
|
||||||
FileName = "cmd",
|
return platform switch
|
||||||
Arguments = $"/Q /C .\\{file.Name}",
|
{
|
||||||
Verb = elevated ? "runas /user:Administrator" : string.Empty,
|
PlatformID.Win32NT => "runas /user:Administrator",
|
||||||
WorkingDirectory = file.DirectoryName
|
PlatformID.Unix or PlatformID.MacOSX => "sudo",
|
||||||
},
|
_ => string.Empty,
|
||||||
".ps1"
|
|
||||||
=> new ProcessStartInfo
|
|
||||||
{
|
|
||||||
FileName = "powershell.exe",
|
|
||||||
Arguments = $"-NoProfile -ExecutionPolicy Bypass -File .\\{file.Name}",
|
|
||||||
Verb = elevated ? "runas /user:Administrator" : string.Empty,
|
|
||||||
WorkingDirectory = file.DirectoryName
|
|
||||||
},
|
|
||||||
".sh"
|
|
||||||
or ".zsh"
|
|
||||||
or ".fish"
|
|
||||||
=> new ProcessStartInfo
|
|
||||||
{
|
|
||||||
FileName = "sh",
|
|
||||||
Arguments = $"-c ./{file.Name}",
|
|
||||||
Verb = elevated ? "sudo" : string.Empty,
|
|
||||||
WorkingDirectory = file.DirectoryName
|
|
||||||
},
|
|
||||||
_ => null
|
|
||||||
};
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
private static ProcessStartInfo? GetExecutableProcessInfo(FileInfo file, bool elevated)
|
||||||
|
{
|
||||||
|
var verb = GetElevationVerb(elevated);
|
||||||
|
return file.Extension switch
|
||||||
|
{
|
||||||
|
".bat" or ".cmd" => new ProcessStartInfo
|
||||||
|
{
|
||||||
|
FileName = "cmd",
|
||||||
|
Arguments = $"/Q /C {file.Name}",
|
||||||
|
Verb = verb,
|
||||||
|
WorkingDirectory = file.DirectoryName,
|
||||||
|
},
|
||||||
|
".ps1" => new ProcessStartInfo
|
||||||
|
{
|
||||||
|
FileName = "powershell.exe",
|
||||||
|
Arguments = $"-NoProfile -ExecutionPolicy Bypass -File {file.Name}",
|
||||||
|
Verb = verb,
|
||||||
|
WorkingDirectory = file.DirectoryName,
|
||||||
|
},
|
||||||
|
".sh" or ".zsh" or ".fish" => new ProcessStartInfo
|
||||||
|
{
|
||||||
|
FileName = "sh",
|
||||||
|
Arguments = $"-c {file.Name}",
|
||||||
|
Verb = verb,
|
||||||
|
WorkingDirectory = file.DirectoryName,
|
||||||
|
},
|
||||||
|
_ => null,
|
||||||
|
};
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue