UNPKG
@ahmic/autoit-js
Version:
latest (2.1.0)
2.1.0
2.0.0
1.1.0
1.0.1
1.0.0
Node.js bindings for AutoItX3.dll
github.com/KasimAhmic/autoit-js
KasimAhmic/autoit-js
@ahmic/autoit-js
/
dist
/
run-as.d.ts
8 lines
(7 loc)
•
272 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
export
declare
enum
LogonFlag
{
NoProfile
=
0
,
Profile
=
1
,
Network
=
2
,
Inherit
=
4
}
export
declare
function
RunAs
(
username
:
string
,
domain
:
string
,
password
:
string
,
logonFlag
:
LogonFlag
,
program
:
string
,
directory
?:
string
,
showFlag
?:
number
):
number
;