This repository has been archived by the owner on May 31, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathDesktops.ps1
257 lines (222 loc) · 6.48 KB
/
Desktops.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
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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
<#
.Synopsis
Returns the desktops for this Windows Station.
.DESCRIPTION
Returns the desktops for this Windows Station.
.EXAMPLE
Get-Desktop
.EXAMPLE
Get-Desktop -Name Default
#>
function Get-Desktop
{
param(
# The name of the desktop to return
[Parameter(Position=0)]
[String]$Name = "*"
)
$windowStation = [PoshInternals.User32]::GetProcessWindowStation()
if ($windowStation -eq [IntPtr]::Zero)
{
throw (New-Object System.ComponentModel.Win32Exception)
}
$global:desktops = @()
if (-not [PoshInternals.User32]::EnumDesktops($windowStation, {$global:desktops += $args[0]; $true }, [IntPtr]::Zero))
{
Write-Error "Failed to enumerate desktops!"
return
}
$desktops | Where { $_ -Like $Name } | ForEach-Object {
$Handle = [PoshInternals.User32]::OpenDesktop($_, 0, $true, [PoshInternals.ACCESS_MASK]::DESKTOP_ALL)
[PSCustomObject]@{ Handle=$Handle;Name=$_}
}
}
<#
.Synopsis
Creates a new desktop in the current process's win station.
.DESCRIPTION
Creates a new desktop in the current process's win station.
.EXAMPLE
New-Desktop -Name Desktop2
#>
function New-Desktop
{
[CmdletBinding()]
param(
[Parameter(Mandatory, Position=0)]
[String]$Name,
[Switch]$NoExplorer
)
$DesktopHandle = [PoshInternals.User32]::CreateDesktop($Name, [IntPtr]::Zero, [IntPtr]::Zero, 0, [PoshInternals.ACCESS_MASK]::DESKTOP_ALL, [IntPtr]::Zero)
if ($DesktopHandle -eq [IntPtr]::Zero)
{
$ex = New-Object System.ComponentModel.Win32Exception
Write-Error "Failed to create desktop! $($ex.Message)"
}
else
{
if (-not $NoExplorer)
{
Start-Process explorer.exe -Desktop $Name
}
$Desktop = [PSCustomObject]@{ Handle=$DesktopHandle;Name=$Name}
$Desktop | Add-Member -MemberType ScriptMethod -Name Close -Value { [PoshInternals.User32]::CloseDesktop($this) } -PassThru
}
}
<#
.Synopsis
Shows the specified desktop.
.DESCRIPTION
This cmdlet will change the current input desktop to the one specified. If the NoExplorer switch was specified
on New-Desktop, then there will be nothing running in the newly created desktop. Use Start-Process with the
Desktop parameter, before changing desktops, to start a proces in the target desktop.
.EXAMPLE
Show-Desktop -Name Desktop2
#>
function Show-Desktop
{
[CmdletBinding()]
param(
[Parameter(Mandatory, ValueFromPipeLine=$true, ParameterSetName="Desktop")]
[PSObject]$Desktop,
[Parameter(Mandatory, ValueFromPipeLine=$true, ParameterSetName="Name", Position=0)]
[string]$Name
)
Process
{
if ($Desktop -eq $null)
{
$Desktop = Get-Desktop -Name $Name
}
if ($Desktop -eq $null)
{
Write-Error "Failed to find desktop"
return
}
if (-not [PoshInternals.User32]::SwitchDesktop($Desktop.Handle))
{
throw (New-Object System.ComponentModel.Win32Exception)
}
}
}
function Start-Process
{
[CmdletBinding(DefaultParameterSetName='Default', HelpUri='http://go.microsoft.com/fwlink/?LinkID=135261')]
param(
[Parameter(Mandatory=$true, Position=0)]
[Alias('PSPath')]
[ValidateNotNullOrEmpty()]
[string]
${FilePath},
[Parameter(Position=1)]
[Alias('Args')]
[ValidateNotNullOrEmpty()]
[string[]]
${ArgumentList},
[Parameter(ParameterSetName='Default')]
[Alias('RunAs')]
[ValidateNotNullOrEmpty()]
[pscredential]
${Credential},
[ValidateNotNullOrEmpty()]
[string]
${WorkingDirectory},
[Parameter(ParameterSetName='Default')]
[Alias('Lup')]
[switch]
${LoadUserProfile},
[Parameter(ParameterSetName='Default')]
[Alias('nnw')]
[switch]
${NoNewWindow},
[switch]
${PassThru},
[Parameter(ParameterSetName='Default')]
[Alias('RSE')]
[ValidateNotNullOrEmpty()]
[string]
${RedirectStandardError},
[Parameter(ParameterSetName='Default')]
[Alias('RSI')]
[ValidateNotNullOrEmpty()]
[string]
${RedirectStandardInput},
[Parameter(ParameterSetName='Default')]
[Alias('RSO')]
[ValidateNotNullOrEmpty()]
[string]
${RedirectStandardOutput},
[Parameter(ParameterSetName='UseShellExecute')]
[ValidateNotNullOrEmpty()]
[string]
${Verb},
[switch]
${Wait},
[ValidateNotNullOrEmpty()]
[System.Diagnostics.ProcessWindowStyle]
${WindowStyle},
[Parameter(ParameterSetName='Default')]
[switch]
${UseNewEnvironment},
[Parameter(ParameterSetName='AltDesktop')]
[string]
${Desktop})
begin
{
try {
if (-not $PSBoundParameters['Desktop'])
{
$outBuffer = $null
if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer))
{
$PSBoundParameters['OutBuffer'] = 1
}
$wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand('Start-Process', [System.Management.Automation.CommandTypes]::Cmdlet)
$scriptCmd = {& $wrappedCmd @PSBoundParameters }
$steppablePipeline = $scriptCmd.GetSteppablePipeline($myInvocation.CommandOrigin)
$steppablePipeline.Begin($PSCmdlet)
}
} catch {
throw
}
}
process
{
try {
if ($PSBoundParameters['Desktop'])
{
$CommandLine = "$FilePath $ArgumentList"
$Process = [PoshInternals.CreateProcessHelper]::CreateProcess($CommandLine, $Desktop)
if ($PassThru)
{
$Process
}
if ($Wait)
{
$Process.WaitForExit()
}
}
else
{
$steppablePipeline.Process($_)
}
} catch {
throw
}
}
end
{
if (-not $PSBoundParameters['Desktop'])
{
try {
$steppablePipeline.End()
} catch {
throw
}
}
}
<#
.ForwardHelpTargetName Start-Process
.ForwardHelpCategory Cmdlet
#>
}