-
Notifications
You must be signed in to change notification settings - Fork 213
/
Copy pathRunAs.ps1
55 lines (49 loc) · 1.36 KB
/
RunAs.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
function Invoke-RunAs {
<#
.DESCRIPTION
Runas knockoff. Will bypass GPO path restrictions.
.PARAMETER UserName
Provide a user
.PARAMETER Password
Provide a password
.PARAMETER Domain
Provide optional domain
.Example
Invoke-RunAs -username administrator -password "P@$$word!" -domain CORPA
#>
[CmdletBinding()]Param (
[Parameter(
ValueFromPipeline=$True,
Mandatory=$True)]
[String]$username,
[Parameter(
ValueFromPipeline=$True,
Mandatory=$True)]
[String]$password,
[Parameter(
ValueFromPipeline=$True,
Mandatory=$False)]
[String]$domain,
[Parameter(
ValueFromPipeline=$True,
Mandatory=$False)]
[String]$command,
[Parameter(
ValueFromPipeline=$True,
Mandatory=$False)]
[String]$arguments
)
PROCESS {
$sec_password = convertto-securestring $password -asplaintext -force
$startinfo = new-object System.Diagnostics.ProcessStartInfo
$startinfo.UserName = $username
$startinfo.Password = $sec_password
$startinfo.Domain = $domain
$startinfo.FileName = $command
$startinfo.Arguments = $arguments
$startinfo.CreateNoWindow = $true
$startinfo.WindowStyle = [System.Diagnostics.ProcessWindowStyle]::hidden
$startinfo.UseShellExecute = $false
[System.Diagnostics.Process]::Start($startinfo)
}
}