forked from stcu/SharedScripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Import-EdgeKeywords.ps1
37 lines (32 loc) · 1.24 KB
/
Import-EdgeKeywords.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
<#
.SYNOPSIS
Adds search keywords to an Edge SQLite profile configuration.
.INPUTS
System.Management.Automation.PSObject containing the search keyword details.
.FUNCTIONALITY
System and updates
.EXAMPLE
Get-Content ~/backup/msedge-keywords.json |ConvertFrom-Json |Import-EdgeKeywords.ps1
Restores Edge search keywords to the current profile from a backup file.
#>
#Requires -Version 3
#Requires -Modules PSSQLite
[Diagnostics.CodeAnalysis.SuppressMessageAttribute('PSUseProcessBlockForPipelineCommand','',
Justification='This script uses $input within an End block.')]
[CmdletBinding(SupportsShouldProcess=$true,ConfirmImpact='Low')] Param(
# Edge search keyword details.
[Parameter(Position=0,Mandatory=$true,ValueFromPipeline=$true)][pscustomobject] $Data,
# The path to the SQLite file containing the Edge keywords table to import into.
[Parameter(Position=1)][string] $Path = "$env:LocalAppData\Microsoft\Edge\User Data\Default\Web Data"
)
Begin
{
if((Get-Process msedge) -and $PSCmdlet.ShouldProcess('all Edge processes','kill'))
{
Get-Process msedge |Stop-Process -Force
}
}
End
{
Invoke-SQLiteBulkCopy -DataTable ($input |Out-DataTable) -DataSource $Path -Table keywords -NotifyAfter 100 -ConflictClause Ignore
}