-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathprofile_management.ps1
120 lines (87 loc) · 3.38 KB
/
profile_management.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
# http://stackoverflow.com/questions/8343767/how-to-get-the-current-directory-of-the-cmdlet-being-executed
function Get-ScriptDirectory {
$Invocation = (Get-Variable MyInvocation -Scope 1).Value
if ($Invocation.PSScriptRoot) {
$Invocation.PSScriptRoot
}
elseif ($Invocation.MyCommand.Path) {
Split-Path $Invocation.MyCommand.Path
} else {
$Invocation.InvocationName.Substring(0,$Invocation.InvocationName.LastIndexOf(""))
}
}
Write-Output "# 1. Definitions "
$profile_path_relative = 'Mozilla\Firefox'
$cached_appdata = ('{0}\data\roaming\{1}' -f (Get-ScriptDirectory),$profile_path_relative)
$cached_localappdata = ('{0}\data\local\{1}' -f (Get-ScriptDirectory),$profile_path_relative)
$profile_path_appdata = ('{0}\{1}' -f $env:APPDATA,$profile_path_relative)
$profile_path_localappdata = ('{0}\{1}' -f $env:LOCALAPPDATA,$profile_path_relative)
Write-Output "# 2. Locate default profile name"
pushd $profile_path_appdata
cd 'Profiles'
$directory_name_current = (Get-ChildItem -Path '.' -Filter '*default' | Select-Object -ExpandProperty Name)
if ($directory_name_current -eq $null) {
throw ('The profile directory was not found in {0}\Profiles' -f $profile_path_appdata)
}
$display_name = 'default'
# TODO Regexp
$new_name = $directory_name_current -replace '^.+\.','xxxxx.'
# Use C escapes not Powershell escapes
popd
Write-Output ("default profile name: {0}" -f $directory_name_current)
Write-Output "# 3. Compose new profiles.ini"
$new_profile = @"
[General]
StartWithLastProfile=1
[Profile0]
# The default profile should always be present
Name=default
IsRelative=1
Path=Profiles/${directory_name_current}
[Profile1]
Name=selenium
IsRelative=1
Path=Profiles/k7b0ih7r.selenium
Default=1
"@
Write-Output $new_profile
Write-Output "# 3. Dump copy"
# TODO Transaction
$profile_path_relative = 'Mozilla\Firefox'
$mapped_paths = @{
$cached_appdata = $profile_path_appdata;
$cached_localappdata = $profile_path_localappdata;
}
<#
$mapped_paths.Keys | ForEach-Object {
$data_source_path = $_
$data_target_path = $mapped_paths[$data_source_path]
# Write-Output "remove-item -recurse -Path ${data_target_path} -Force -ErrorAction 'SilentlyContinue'" -filter
# TODO: Removal has to copy default profile
# Remove-Item -Recurse -Path $data_target_path -Force -ErrorAction 'SilentlyContinue'
}
#>
$mapped_paths.Keys | ForEach-Object {
$data_source_path = $_
$data_target_path = $mapped_paths[$data_source_path]
Write-Output "copy-item -recurse -Path ${data_source_path} -Destination ${data_target_path} -force -errorAction 'SilentlyContinue'"
Start-Sleep 10
$title = "Copy profiles"
$message = "..."
$continue = New-Object System.Management.Automation.Host.ChoiceDescription "&YES",`
"YES- continue"
$skip = New-Object System.Management.Automation.Host.ChoiceDescription "&NO",`
"NO- Skip copying"
$options = [System.Management.Automation.Host.ChoiceDescription[]]($continue,$skip)
$result = $host.ui.PromptForChoice($title,$message,$options,0)
Write-Debug $result
if ($result -eq 0) {
Copy-Item -Recurse -Path ('{0}\*' -f $data_source_path) -Destination $data_target_path -Force -ErrorAction 'SilentlyContinue'
}
}
Write-Output "# 4 Write new profiles.ini"
Write-Output $new_profile | Out-File -Encoding ascii -FilePath ('{0}\profiles.ini' -f $profile_path_appdata)
return
<#
& 'D:\Program Files (x86)\Mozilla Firefox\firefox.exe' -p Selenium
#>