-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathGenXdev.Webbrowser.psm1
More file actions
22 lines (17 loc) · 971 Bytes
/
GenXdev.Webbrowser.psm1
File metadata and controls
22 lines (17 loc) · 971 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
if (-not $IsWindows) {
throw "This module only supports Windows 10+ x64 with PowerShell 7.5+ x64"
}
$osVersion = [System.Environment]::OSVersion.Version
$major = $osVersion.Major
if ($major -ne 10) {
throw "This module only supports Windows 10+ x64 with PowerShell 7.5+ x64"
}
. "$PSScriptRoot\Functions\GenXdev.Webbrowser\Close-Webbrowser.ps1"
. "$PSScriptRoot\Functions\GenXdev.Webbrowser\Get-BrowserBookmark.ps1"
. "$PSScriptRoot\Functions\GenXdev.Webbrowser\Import-BrowserBookmarks.ps1"
. "$PSScriptRoot\Functions\GenXdev.Webbrowser\Invoke-WebbrowserEvaluation.ps1"
. "$PSScriptRoot\Functions\GenXdev.Webbrowser\Open-BrowserBookmarks.ps1"
. "$PSScriptRoot\Functions\GenXdev.Webbrowser\Open-Webbrowser.ps1"
. "$PSScriptRoot\Functions\GenXdev.Webbrowser\Open-WebbrowserSideBySide.ps1"
. "$PSScriptRoot\Functions\GenXdev.Webbrowser\Select-WebbrowserTab.ps1"
. "$PSScriptRoot\Functions\GenXdev.Webbrowser\Show-WebsiteInAllBrowsers.ps1"