-
Notifications
You must be signed in to change notification settings - Fork 0
/
run.psm1
141 lines (121 loc) · 3.26 KB
/
run.psm1
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
# Finds the .exe file and executes it.
function exeFind(
[string] $extension,
[string] $pathName,
[string] $fileName,
[int] $depth,
[int] $autorun
)
{
Write-Host ("Now searching in $pathName...")
$result = Get-ChildItem -Path $pathName -Recurse -Depth $depth -Filter ("*$fileName*$extension") -ErrorAction SilentlyContinue | Select-Object
if (-not $result)
{
return $false
}
if ($result.count -eq 1)
{
if (-not $autorun)
{
Write-Host
Write-Host (" $result")
Write-Host
[Parameter(Mandatory)]
$choice = Read-Host "Is this the file you want to execute? [y/n]"
if ($choice -ne "y")
{
Write-Host "Skipped, Searching Further..."
return $false
}
}
Write-Host ("Opening '$result' now...")
Start-Process $result
return $true
}
if ($autorun)
{
$result = $result[($choice - 1)]
Write-Host ("Opening $result now...")
Start-Process $result
return $true
}
$counter = 1
Write-Host
foreach($item in $result)
{
Write-Host (" $counter-: $item")
$counter++
}
Write-Host (" 0: Search further")
Write-Host
[Parameter(Mandatory)]
$choice = Read-Host "Multiple .exe files are found, choose one in here to proceed"
if ($choice -gt 0 -and $choice -lt ($result.count + 1))
{
$result = $result[($choice - 1)]
Write-Host ("Opening $result now...")
Start-Process $result
return $true
}
Write-Host "Skipped, Searching Further..."
return $false
}
function run()
{
param(
[Alias("f", "file", "name")]
[Parameter(Position=0, Mandatory)]
[string] $fileName,
[Alias("p")]
[Parameter(Mandatory = $false)]
[string] $path = "",
[Alias("d")]
[Parameter(Mandatory = $false)]
[ValidateRange("Positive")]
[int] $depth = 3,
[Alias("y", "yes")]
[Parameter(Mandatory = $false)]
[switch] $autorun = $false
)
if ($path -ne "")
{
$result = exeFind $path $fileName $depth
if ($result)
{
return
}
Write-Host ("$fileName.exe is not found. Please try checking the spelling or add more specifc paramters.")
return
}
[array]$potentDirList = @(
"C:\ProgramData\Microsoft\Windows\Start Menu\Programs\"
"C:\Program Files\",
"C:\Program Files (x86)\",
("C:\Users\$env:username\"),
("C:\Users\$env:username\AppData\Local")
)
[int]$autorunInt = 0
if ($autorun)
{
$autorunInt = 1
}
for ([int]$counter = 0; $counter -lt $potentDirList.count; $counter++)
{
if ($counter -eq 0)
{
$extension = ".lnk"
}
else
{
$extension = ".exe"
}
$result = exeFind $extension $potentDirList[$counter] $fileName $depth $autorunInt
if ($result)
{
return
}
Write-Host
}
Write-Host ($fileName + ".exe is not found. Please try checking the spelling or add more specifc paramters.")
}
Export-ModuleMember -Function run