|
UserAccountControlCreateProcessAsAdmin Method
|
Creates a process under the elevated token, regardless of UAC settings or the manifest associated with that process.
Namespace: GSF.IdentityAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.207-beta+1781b796b2aa7a54013a031eb432fe4ccee31867
Syntax Public Shared Function CreateProcessAsAdmin (
fileName As String,
Optional arguments As String = ""
) As Process
static member CreateProcessAsAdmin :
fileName : string *
?arguments : string
(* Defaults:
let _arguments = defaultArg arguments ""
*)
-> Process
GSF.Identity.UserAccountControl.CreateProcessAsAdmin = function(fileName, arguments);
View SourceParameters
- fileName String
- The path to the executable file.
- arguments String (Optional)
- The command-line arguments to pass to the process.
Return Value
ProcessA
Process object representing the newly created process.
See Also