forked from jchristens/Install-WLANManager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPSModule-WLANManager.psm1
590 lines (481 loc) · 17.6 KB
/
PSModule-WLANManager.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
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
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
<#
################
# WLAN Manager #
################
.GUID
b53c75e4-3ef4-418a-9405-7537942afbb6
.VERSION
2018-09-24
.AUTHOR
http://www.innovatum.se/personer/johan-carlsson
.UPDATE
24/09/2018
Updated by JENS CHRISTENS
.CHANGELOG
September 2018
- Fixed the Win10 error when first installing SchTask. (No MSFT_ScheduledTask objects found with property 'TaskName' equal to 'WLANManager')
March 2018
- Fixed create Schedule Task issue (Exception calling "GetTask" with "1" argument(s): "The system cannot find the file specified. (Exception from HRESULT: 0x80070002)
- Updated WLANAdapters WMI Query
- Updated WLANAdapters Disable Issues (With Wifi MiniPort)
- Updated Write-Hosts for Write-Outputs
- Added some troubleshooting hints
- Fixed the Win8 identification
#>
## Collect OS Information
$Global:Win8orGreater = [Environment]::OSVersion.Version -ge (new-object 'Version' 8,0)
## Function: Disable-WLANAdapters
function Disable-WLANAdapters
{
## Get only WLAN Adapters - possibly needs to be changed depending on environment
$WLANAdapters = Get-WmiObject -Class Win32_NetworkAdapter | Where-Object {($_.Description -notlike "*VirtualBox*”) -and ($_.Description -notlike "*VMware*”) -and ($_.Description -like "*Wireless*”) -or ($_.Description -like "*Wi-Fi*”)}
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 "*VirtualBox*”) -and ($_.Description -notlike "*VMware*”) -and ($_.Description -like "*Wireless*”) -or ($_.Description -like "*Wi-Fi*”)}
foreach ($WLANAdapter in $WLANAdapters)
{
## Disable WLAN Adapter
$WLANAdapter.Enable()
}
}
## 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 "*Wi-Fi*”)}
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*”) -or ($_.Description -like "*Wireless*”) -or ($_.Description -like "*Wi-Fi*”)}
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
)
## Writing Outputs for DEBUG
## Comment if no DEBUG needed
Write-Output "SourcePath: $SourcePath"
Write-Output "DestinationPath: $DestinationPath"
Write-Output "VersionRegPath: $VersionRegPath"
## Write version info to registry for SCCM detection method
Write-Output "Verifying WLAN Manager version information... "
If ((Test-Path $VersionRegPath) -eq $false)
{
Write-Output "Missing"
Write-Output "Writing WLAN Manager version information... "
New-Item -Path $VersionRegPath -Force | Out-Null
New-ItemProperty -Path $VersionRegPath -Name Version -PropertyType String -Value $Version | Out-Null
Write-Output "Done"
}
Else
{
Write-Output "Installed"
}
## Copy Script Files
Write-Output "Verify WLAN Manager Files... "
If ((Test-Path $DestinationPath) -eq $false)
{
Write-Output "Missing"
Write-Output "Installing WLAN Manager Files... "
New-Item -ItemType Directory -Path $DestinationPath -Force | Out-Null
Copy-Item -Path "$SourcePath\*" -Destination "$DestinationPath" -Force
Write-Output "Done"
}
Else
{
Write-Output "Installed"
}
## Register Scheduled Task
Write-Output "Verify WLAN Manager Scheduled Task... "
## 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 = "8"
$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)
{
try
{
(Get-ScheduledTask -TaskName "$TaskName" -ErrorAction Stop)
}#end try
catch
{
Write-Output "Missing"
Write-Output "Installing WLAN Manager Scheduled Task... "
#$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-Output "Done"
} #end catch
Write-Output "Installed"
}#End if win8orgreater
## <Windows 8
Else
{
try {
(Get-STask -TaskName "$TaskName" -ErrorAction stop)
}#End try
catch
{
Write-Output "Missing"
Write-Output "Installing WLAN Manager Scheduled Task... "
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-Output "Done"
} #End catch
Write-Output "Installed"
}#End else win8 or greater
## 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"
}#End if remove eq system
ElseIf ($Remove -eq "User")
{
$TaskName = "WLAN Manager ($env:USERNAME)"
}#End elseif remove eq user
## Remove version information from registry for SCCM Detection Method
Write-Output "Removing WLAN Manager version information... "
If ((Test-Path $VersionRegPath) -eq $true)
{
Remove-Item -Path $VersionRegPath -Force
Write-Output "Done"
}#End if test-path versionregpath eq true
Else
{
Write-Output "$VersionRegPath doesn't exist."
}#End else
## Remove WLAN Manager Scheduled Task
Write-Output "Removing WLAN Manager Scheduled Task... "
#≥Windows 8
If ($Win8orGreater)
{
If ((Get-ScheduledTask -TaskName "$TaskName" -ErrorAction Continue) -ne $null)
{
Unregister-ScheduledTask -TaskName "$TaskName" -Confirm:$false
Write-Output "Done"
}#End if get-schtask -ne null
Else
{
Write-Output "$TaskName doesn't exist."
}#End else
}
#<Windows 8
Else
{
If ((Get-STask -TaskName "$TaskName" -ErrorAction Continue) -ne $null)
{
Unregister-STask -TaskName "$TaskName"
Write-Output "Done"
}#End if get-stask -ne null
Else
{
Write-Output "$TaskName doesn't exist."
}#End else
}#End else greater win8
## Remove WLAN Manager files
Write-Output "Removing WLAN Manager files... "
If ((Test-Path -Path "$FilePath") -eq $True)
{
Remove-Item -Path $FilePath -Recurse -Confirm:$false
Write-Output "Done"
}#End if test-path eq true
Else
{
Write-Output "$FilePath doesn't exist."
}#End else
#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
}#End if test-path eq true
}
## Function: 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)
}#ENd if taskname eq taskfolder.gettask.name
If(-not $?)
{
Write-Output "$TaskName not found."
}#End if not true
}
## 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")
Write-Output "Service: "
$service
## Connect to the local machine
$Service.Connect()
Write-Output "Service Connected: "
$service
## Get specified Scheduled Tasks folder
$TaskFolder = $Service.GetFolder("\")
Write-Output "TaskFolder: "
$TaskFolder
## Check if specific task exists and if so return details
Write-Output "TaskName: $TaskName"
try {
If ($TaskName -eq $TaskFolder.GetTask("$TaskName").Name)
{
$TaskFolder.GetTask("$TaskName")
}#End if taskname eq taskfolder.gettask.taskname
}#End try
catch { Write-Output "Not created."}
<#
If(-not $?)
{
Write-Output "$TaskName not found."
}#End if not true
#>
}
## 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)
}#End if taskname eq taskfolder.gettask.taskname
If(-not $?)
{
Write-Output "$TaskName not found."
}#End if not true
}
## 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*") -or ($_.Description -like "*Wi-Fi*")}
#Release DHCP lease
$WLANAdapterConfiguration.ReleaseDHCPLease() | Out-Null
}