-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathPSModule-WLANManager.psm1
More file actions
540 lines (471 loc) · 17.3 KB
/
PSModule-WLANManager.psm1
File metadata and controls
540 lines (471 loc) · 17.3 KB
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
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
################
# WLAN Manager #
################
#Version: 2015-05-07
#Author: johan.carlsson@innovatum.se , http://www.innovatum.se/personer/johan-carlsson
#Collect OS Information
$Global:Win8orGreater = [Environment]::OSVersion.Version -ge (new-object 'Version' 8,0)
##################################
# Function: Test-WiredConnection #
##################################
function Test-WiredConnection
{
#Get only wired connections with IP-address
$NetworkConnectionsLAN = Get-WmiObject -Class Win32_NetworkAdapterConfiguration -Filter “IPEnabled=TRUE” | Where-Object {($_.Description -notlike “*VirtualBox*”) -and ($_.Description -notlike “*VMware*”) -and ($_.Description -notlike “*Wireless*”) -and ($_.Description -notlike “*WiFi*”)}
If ($NetworkConnectionsLAN -eq $null)
{
return $false
}
ElseIf ($NetworkConnectionsLAN -ne $null)
{
return $true
}
}
#####################################
# Function: Test-WirelessConnection #
#####################################
function Test-WirelessConnection
{
#Get only wireless connections with IP-address
$NetworkConnectionsWLAN = Get-WmiObject -Class Win32_NetworkAdapterConfiguration -Filter “IPEnabled=TRUE” | Where-Object {($_.Description -notlike “*VirtualBox*”) -and ($_.Description -notlike “*VMware*”) -and ($_.Description -like “*Wireless*”) -or ($_.Description -like “*WiFi*”)}
If ($NetworkConnectionsWLAN -eq $null)
{
return $false
}
ElseIf ($NetworkConnectionsWLAN -ne $null)
{
return $true
}
}
#################################
# Function: Install-WLANManager #
#################################
function Install-WLANManager
{
[CmdletBinding()]
Param
(
[Parameter(Mandatory=$True,Position=1)]
[string]$SourcePath,
[Parameter(Mandatory=$True,Position=2)]
[string]$DestinationPath
)
#Write version info to registry for SCCM detection method
Write-Host "Verifying WLAN Manager version information... " -NoNewline -ForegroundColor Yellow
If ((Test-Path $VersionRegPath) -eq $false)
{
Write-Host "Missing" -ForegroundColor Yellow
Write-Host "Writing WLAN Manager version information... " -NoNewline -ForegroundColor Yellow
New-Item -Path $VersionRegPath -Force | Out-Null
New-ItemProperty -Path $VersionRegPath -Name Version -PropertyType String -Value $Version | Out-Null
Write-Host "Done" -ForegroundColor Yellow
}
Else
{
Write-Host "Installed" -ForegroundColor Yellow
}
#Copy Script Files
Write-Host "Verify WLAN Manager Files... " -NoNewline -ForegroundColor Yellow
If ((Test-Path $DestinationPath) -eq $false)
{
Write-Host "Missing" -ForegroundColor Yellow
Write-Host "Installing WLAN Manager Files... " -NoNewline -ForegroundColor Yellow
New-Item -ItemType Directory -Path $DestinationPath -Force | Out-Null
Copy-Item -Path "$SourcePath\*" -Destination "$DestinationPath" -Force
Write-Host "Done" -ForegroundColor Yellow
}
Else
{
Write-Host "Installed" -ForegroundColor Yellow
}
#Register Scheduled Task
Write-Host "Verify WLAN Manager Scheduled Task... " -NoNewline -ForegroundColor Yellow
#Set correct $TaskName value depending on install for System or User
If ($Install -eq "System")
{
$User = "NT AUTHORITY\System"
$TaskName = "WLAN Manager"
$TaskRunAt = "8"
$TaskRunAs = "System"
$TaskRunLevel = "5"
#$Trigger
If ($Win8orGreater)
{
$Trigger = New-ScheduledTaskTrigger -AtStartup
}
#ReleaseDHCPLease
If ($ReleaseDHCPLease -eq "")
{
$ReleaseDHCPLease = $false
}
#BalloonTip
$BalloonTip = $false
}
ElseIf ($Install -eq "User")
{
$User = "$env:USERNAME"
$TaskName = "WLAN Manager ($env:USERNAME)"
$TaskRunAt = "7"
$TaskRunAs = "User"
$TaskRunLevel = "3"
#$Trigger
If ($Win8orGreater)
{
$Trigger = New-ScheduledTaskTrigger -AtLogOn -User $env:USERNAME
}
#ReleaseDHCPLease
If ($ReleaseDHCPLease -eq "")
{
$ReleaseDHCPLease = $false
}
#BalloonTip
If ($BalloonTip -eq "")
{
$BalloonTip = $false
}
}
#≥Windows 8
If ($Win8orGreater)
{
If ((Get-ScheduledTask -TaskName "$TaskName" -ErrorAction Ignore) -eq $null)
{
Write-Host "Missing" -ForegroundColor Yellow
Write-Host "Installing WLAN Manager Scheduled Task... " -NoNewline -ForegroundColor Yellow
#$Trigger = New-ScheduledTaskTrigger -AtStartup
$Action = New-ScheduledTaskAction -Execute "$env:windir\System32\WindowsPowerShell\v1.0\PowerShell.exe" -Argument "-WindowStyle Hidden -NonInteractive -Executionpolicy Unrestricted -Command ""& """"$DestinationPath\WLANManager.ps1"""""" -ReleaseDHCPLease:`$$ReleaseDHCPLease -BalloonTip:`$$BalloonTip"""
$Settings = New-ScheduledTaskSettingsSet -AllowStartIfOnBatteries -DontStopIfGoingOnBatteries -Hidden
Register-ScheduledTask -TaskName "$TaskName" -Trigger $Trigger -User $User –Action $Action -Settings $Settings -RunLevel Highest | Out-Null
Start-ScheduledTask -TaskName "$TaskName"
Write-Host "Done" -ForegroundColor Yellow
}
Else
{
Write-Host "Installed" -ForegroundColor Yellow
}
}
#<Windows 8
Else
{
If ((Get-STask -TaskName "$TaskName" -ErrorAction Ignore) -eq $null)
{
Write-Host "Missing" -ForegroundColor Yellow
Write-Host "Installing WLAN Manager Scheduled Task... " -NoNewline -ForegroundColor Yellow
New-STask -TaskName "$TaskName" -TaskCommand "C:\Windows\System32\WindowsPowerShell\v1.0\PowerShell.exe" -TaskArguments "-WindowStyle Hidden -NonInteractive -Executionpolicy Unrestricted -Command ""& """"$DestinationPath\WLANManager.ps1"""""" -ReleaseDHCPLease:`$$ReleaseDHCPLease -BalloonTip:`$$BalloonTip""" -TaskRunAt $TaskRunAt -TaskRunAs $TaskRunAs -TaskRunLevel $TaskRunLevel| Out-Null
#New-STask -TaskName "$TaskName" -TaskCommand "C:\Windows\System32\WindowsPowerShell\v1.0\PowerShell.exe" -TaskScript "$DestinationPath\WLANManager.ps1" -TaskArguments "-WindowStyle Hidden -NonInteractive -Executionpolicy unrestricted -file ""$DestinationPath\WLANManager.ps1 -BalloonTip:`$$BalloonTip""" | Out-Null
Start-STask -TaskName "$TaskName" | Out-Null
Write-Host "Done" -ForegroundColor Yellow
}
Else
{
Write-Host "Installed" -ForegroundColor Yellow
}
}
}
################################
# Function: Remove-WLANManager #
################################
function Remove-WLANManager
{
[CmdletBinding()]
Param
(
[Parameter(Mandatory=$True,Position=1)]
[string]$FilePath
)
#Set correct $TaskName value depending on install for System or User
If ($Remove -eq "System")
{
$TaskName = "WLAN Manager"
}
ElseIf ($Remove -eq "User")
{
$TaskName = "WLAN Manager ($env:USERNAME)"
}
#Remove version information from registry for SCCM Detection Method
Write-Host "Removing WLAN Manager version information... " -NoNewline -ForegroundColor Yellow
If ((Test-Path $VersionRegPath) -eq $true)
{
Remove-Item -Path $VersionRegPath -Force
Write-Host "Done" -ForegroundColor Yellow
}
Else
{
Write-Host "$VersionRegPath doesn't exist." -ForegroundColor Yellow
}
#Remove WLAN Manager Scheduled Task
Write-Host "Removing WLAN Manager Scheduled Task... " -NoNewline -ForegroundColor Yellow
#≥Windows 8
If ($Win8orGreater)
{
If ((Get-ScheduledTask -TaskName "$TaskName" -ErrorAction Ignore) -ne $null)
{
Unregister-ScheduledTask -TaskName "$TaskName" -Confirm:$false
Write-Host "Done" -ForegroundColor Yellow
}
Else
{
Write-Host "$TaskName doesn't exist." -ForegroundColor Yellow
}
}
#<Windows 8
Else
{
If ((Get-STask -TaskName "$TaskName" -ErrorAction Ignore) -ne $null)
{
Unregister-STask -TaskName "$TaskName"
Write-Host "Done" -ForegroundColor Yellow
}
Else
{
Write-Host "$TaskName doesn't exist." -ForegroundColor Yellow
}
}
#Remove WLAN Manager files
Write-Host "Removing WLAN Manager files... " -NoNewline -ForegroundColor Yellow
If ((Test-Path -Path "$FilePath") -eq $True)
{
Remove-Item -Path $FilePath -Recurse -Confirm:$false
Write-Host "Done" -ForegroundColor Yellow
}
Else
{
Write-Host "$FilePath doesn't exist." -ForegroundColor Yellow
}
#Verify that WLAN Manager scheduled task object is removed
If ((Test-Path -Path "$env:windir\System32\Tasks\$TaskName") -eq $True)
{
Remove-Item -Path "$env:windir\System32\Tasks\$TaskName" -Confirm:$false
}
}
#############
# New-STask #
#############
function New-STask
{
[CmdletBinding()]
Param
(
[Parameter(Mandatory=$True,Position=1)]
[string]$TaskName,
[Parameter(Mandatory=$False,Position=2)]
[string]$TaskDescription,
[Parameter(Mandatory=$True,Position=3)]
[string]$TaskCommand,
[Parameter(Mandatory=$True,Position=4)]
[string]$TaskArguments,
[Parameter(Mandatory=$True,Position=5)]
[ValidateSet('8', '3')] #8=AtStartup,?=USER
[string]$TaskRunAt,
[Parameter(Mandatory=$True,Position=6)]
#[ValidateSet("System", "User")]
[string]$TaskRunAs,
[Parameter(Mandatory=$True,Position=7)]
[ValidateSet('5', '3')] #5=SYSTEM,3=USER
[string]$TaskRunLevel
)
#Set correct value for parameter $TaskRunAs
If ($TaskRunAs -eq "User")
{
Set-Variable -Name TaskRunAs -Value $env:USERNAME -Force
}
#Create Task Scheduler Com Object (http://msdn.microsoft.com/en-us/library/windows/desktop/aa381833(v=vs.85).aspx)
$Service = New-Object -ComObject("Schedule.Service")
#Connect to the local machine
$Service.Connect()
#Get specified Scheduled Tasks folder
$TaskFolder = $Service.GetFolder("\")
#Create Task Definition
$TaskDefinition = $Service.NewTask(0)
$TaskDefinition.RegistrationInfo.Description = "$TaskDescription"
$TaskDefinition.Settings.Enabled = $true
$TaskDefinition.Settings.AllowDemandStart = $true
$TaskDefinition.Settings.DisallowStartIfOnBatteries = $false
$TaskDefinition.Settings.StopIfGoingOnBatteries = $false
$TaskDefinition.Settings.Compatibility = "3" #Windows 7, Windows Server 2008 R2
$TaskDefinition.Settings.Hidden = $true
$TaskDefinition.Principal.RunLevel = "1" #Highest
#Create Task Trigger (http://msdn.microsoft.com/en-us/library/windows/desktop/aa383915(v=vs.85).aspx)
$Triggers = $TaskDefinition.Triggers
$Trigger = $Triggers.Create($TaskRunAt)
$Trigger.Enabled = $true
#Create Task Action (http://msdn.microsoft.com/en-us/library/windows/desktop/aa381841(v=vs.85).aspx)
$Action = $TaskDefinition.Actions.Create(0)
$Action.Path = "$TaskCommand"
$Action.Arguments = "$TaskArguments"
#Register Task (http://msdn.microsoft.com/en-us/library/windows/desktop/aa381365(v=vs.85).aspx)
$TaskFolder.RegisterTaskDefinition("$TaskName",$TaskDefinition,6,"$TaskRunAs",$null,$TaskRunLevel)
#$TaskFolder.RegisterTaskDefinition("$TaskName",$TaskDefinition,6,"$TaskRunAs",$null,5)
}
##############################
# Function: Unregister-STask #
##############################
function Unregister-STask
{
[CmdletBinding()]
Param
(
[Parameter(Mandatory=$True,Position=1)]
[string]$TaskName
)
#Set ErrorActionPreference to avoid errormessage if TaskName is not found
$ErrorActionPreference = "SilentlyContinue"
#Create Task Scheduler Com Object (http://msdn.microsoft.com/en-us/library/windows/desktop/aa381833(v=vs.85).aspx)
$Service = New-Object -ComObject("Schedule.Service")
#Connect to the local machine
$Service.Connect()
#Get specified Scheduled Tasks folder
$TaskFolder = $Service.GetFolder("\")
#Check if specific task exists and if so delete
If ($TaskName -eq $TaskFolder.GetTask("$TaskName").Name)
{
#Delete Task
$TaskFolder.DeleteTask("$TaskName",0)
}
If(-not $?)
{
Write-Host "$TaskName not found."
}
}
#######################
# Function: Get-STask #
#######################
function Get-STask
{
[CmdletBinding()]
Param
(
[Parameter(Mandatory=$True,Position=1)]
[string]$TaskName
)
#Set ErrorActionPreference to avoid errormessage if TaskName is not found
$ErrorActionPreference = "SilentlyContinue"
#Create Task Scheduler Com Object (http://msdn.microsoft.com/en-us/library/windows/desktop/aa381833(v=vs.85).aspx)
$Service = New-Object -ComObject("Schedule.Service")
#Connect to the local machine
$Service.Connect()
#Get specified Scheduled Tasks folder
$TaskFolder = $Service.GetFolder("\")
#Check if specific task exists and if so return details
If ($TaskName -eq $TaskFolder.GetTask("$TaskName").Name)
{
$TaskFolder.GetTask("$TaskName")
}
<#
If(-not $?)
{
Write-Host "$TaskName not found."
}
#>
}
#########################
# Function: Start-STask #
#########################
function Start-STask
{
[CmdletBinding()]
Param
(
[Parameter(Mandatory=$True,Position=1)]
[string]$TaskName
)
#Set ErrorActionPreference to avoid errormessage if TaskName is not found
$ErrorActionPreference = "SilentlyContinue"
#Create Task Scheduler Com Object (http://msdn.microsoft.com/en-us/library/windows/desktop/aa381833(v=vs.85).aspx)
$Service = New-Object -ComObject("Schedule.Service")
#Connect to the local machine
$Service.Connect()
#Get specified Scheduled Tasks folder
$TaskFolder = $Service.GetFolder("\")
#Check if specific task exists and if so start the task
If ($TaskName -eq $TaskFolder.GetTask("$TaskName").Name)
{
$Task = $TaskFolder.GetTask("$TaskName")
$Task.Run(1)
}
If(-not $?)
{
Write-Host "$TaskName not found."
}
}
##################################
# Function: Disable-WLANAdapters #
##################################
function Disable-WLANAdapters
{
#Get only WLAN Adapters
$WLANAdapters = Get-WmiObject -Class Win32_NetworkAdapter | Where-Object {($_.Description -notlike “*VMware*”) -and ($_.Description -like “*Wireless*”) -or ($_.Description -like "*WiFi*")}
foreach ($WLANAdapter in $WLANAdapters)
{
#Disable WLAN Adapter
$WLANAdapter.Disable()
}
}
#################################
# Function: Enable-WLANAdapters #
#################################
function Enable-WLANAdapters
{
#Get only WLAN Adapter
$WLANAdapters = Get-WmiObject -Class Win32_NetworkAdapter | Where-Object {($_.Description -notlike “*VMware*”) -and ($_.Description -like “*Wireless*”) -or ($_.Description -like "*WiFi*")}
foreach ($WLANAdapter in $WLANAdapters)
{
#Disable WLAN Adapter
$WLANAdapter.Enable()
}
}
############################
# Function: Show-BallonTip #
############################
#Source: http://www.powertheshell.com/balloontip/
function Show-BalloonTip
{
[CmdletBinding(SupportsShouldProcess = $true)]
param
(
[Parameter(Mandatory=$true)]
$Text,
[Parameter(Mandatory=$true)]
$Title,
[ValidateSet('None', 'Info', 'Warning', 'Error')]
$Icon = 'Info',
$Timeout = 10000
)
Add-Type -AssemblyName System.Windows.Forms
if ($global:balloon -eq $null)
{
$global:balloon = New-Object System.Windows.Forms.NotifyIcon
}
$path = Get-Process -id $pid | Select-Object -ExpandProperty Path
$balloon.Icon = [System.Drawing.Icon]::ExtractAssociatedIcon($path)
$balloon.BalloonTipIcon = $Icon
$balloon.BalloonTipText = $Text
$balloon.BalloonTipTitle = $Title
$balloon.Visible = $true
$balloon.ShowBalloonTip($Timeout)
}
##############################
# Function: Remove-BallonTip #
##############################
#Source: http://www.powertheshell.com/balloontip/
function Remove-BalloonTip
{
If ($global:balloon -ne $null)
{
$global:balloon.Dispose()
Remove-Variable -Name balloon -Scope Script
}
Else
{
Write-Warning "Variable 'balloon' not found."
}
}
##############################
# Function: Remove-DHCPLease #
##############################
function Remove-DHCPLease
{
#Get only WLAN Adapter
$WLANAdapterConfiguration = Get-WmiObject -Class Win32_NetworkAdapterConfiguration | Where-Object {($_.Description -notlike “*VMware*”) -and ($_.Description -like “*Wireless*”) -or ($_.Description -like "*WiFi*")}
#Release DHCP lease
$WLANAdapterConfiguration.ReleaseDHCPLease() | Out-Null
}