forked from bcdady/MyScripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMyPSfiles.json
101 lines (101 loc) · 4.4 KB
/
MyPSfiles.json
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
{
"about": {
"author": "@bcdady",
"name": "MyPSfiles.json",
"description": "Define preference and configurations (in JSON language) for Merge-MyPSfiles.ps1.",
"type": "JSON",
"notes" : "Add repositories to sync between PowerShell Core and Windows PowerShell file paths",
"program": "PowerShell: Merge-Module.ps1",
"updated": "05-14-2018",
"version": "1.0.4",
"Repository_Template": " {'Name': 'my_Modules','SourcePath' : '$SourcePath\\Subfolder','TargetPath' : '$TargetPath\\Subfolder','MergePath' : '[optional]','OptionsOverride' : ''}"
},
"MergeTool": {
"Name": "WinMerge",
"Path": "$myPSModulesPath\\ISESteroids\\3rdParty\\WinMerge\\App\\WinMerge\\WinMergeU.exe",
"Help_URL": "http://manual.winmerge.org/Command_line.html",
"Options": "/xq /f *.json;*.md;*.ps1;*.psd1;*.psm1;*.txt"
},
"RepositorySets" : [
{
"Name": "my_scripts",
"SourcePath" : "$env:USERPROFILE\\Documents\\WindowsPowerShell\\Scripts",
"TargetPath" : "H:\\My Documents\\WindowsPowerShell\\Scripts"
},
{
"Name": "core_scripts",
"SourcePath" : "$env:USERPROFILE\\Documents\\WindowsPowerShell\\Scripts",
"TargetPath" : "$env:USERPROFILE\\Documents\\PowerShell\\Scripts"
},
{
"Name": "gh_scripts",
"SourcePath" : "$env:USERPROFILE\\Documents\\PowerShell\\Scripts",
"TargetPath" : "$env:USERPROFILE\\Documents\\GitHub\\MyScripts"
},
{
"Name": "core_Modules",
"SourcePath" : "$env:USERPROFILE\\Documents\\WindowsPowerShell\\Modules",
"TargetPath" : "$env:USERPROFILE\\Documents\\PowerShell\\Modules"
},
{
"Name": "core_Profiles",
"SourcePath" : "$env:USERPROFILE\\Documents\\WindowsPowerShell",
"TargetPath" : "$env:USERPROFILE\\Documents\\PowerShell"
},
{
"Name": "gh_Profiles",
"SourcePath" : "$env:USERPROFILE\\Documents\\PowerShell",
"TargetPath" : "$env:USERPROFILE\\Documents\\GitHub\\MyScripts"
},
{
"Name": "my_Profiles",
"SourcePath" : "$env:USERPROFILE\\Documents\\WindowsPowerShell",
"TargetPath" : "H:\\My Documents\\WindowsPowerShell"
},
{
"Name": "my_Edit-Module",
"SourcePath" : "$env:USERPROFILE\\Documents\\WindowsPowerShell\\Modules\\Edit-Module",
"TargetPath" : "H:\\My Documents\\WindowsPowerShell\\Modules\\Edit-Module"
},
{
"Name": "gh_Edit-Module",
"SourcePath" : "$env:USERPROFILE\\Documents\\WindowsPowerShell\\Modules\\Edit-Module",
"TargetPath" : "$env:USERPROFILE\\Documents\\GitHub\\Edit-Module"
},
{
"Name": "my_Sperry",
"SourcePath" : "$env:USERPROFILE\\Documents\\WindowsPowerShell\\Modules\\Sperry",
"TargetPath" : "H:\\My Documents\\WindowsPowerShell\\Modules\\Sperry"
},
{
"Name": "gh_Sperry",
"SourcePath" : "$env:USERPROFILE\\Documents\\WindowsPowerShell\\Modules\\Sperry",
"TargetPath" : "$env:USERPROFILE\\Documents\\GitHub\\Sperry"
},
{
"Name": "my_ProfilePal",
"SourcePath" : "$env:USERPROFILE\\Documents\\WindowsPowerShell\\Modules\\ProfilePal",
"TargetPath" : "H:\\My Documents\\WindowsPowerShell\\Modules\\ProfilePal"
},
{
"Name": "gh_ProfilePal",
"SourcePath" : "$env:USERPROFILE\\Documents\\WindowsPowerShell\\Modules\\ProfilePal",
"TargetPath" : "$env:USERPROFILE\\Documents\\GitHub\\ProfilePal"
},
{
"Name": "my_PSLogger",
"SourcePath" : "$env:USERPROFILE\\Documents\\WindowsPowerShell\\Modules\\PSLogger",
"TargetPath" : "H:\\My Documents\\WindowsPowerShell\\Modules\\PSLogger"
},
{
"Name": "gh_PSLogger",
"SourcePath" : "$env:USERPROFILE\\Documents\\WindowsPowerShell\\Modules\\PSLogger",
"TargetPath" : "$env:USERPROFILE\\Documents\\GitHub\\PSLogger"
},
{
"Name": "repo_MyModules",
"SourcePath" : "H:\\My Documents\\WindowsPowerShell\\Modules",
"TargetPath" : "R:\\IT\\repo\\Modules"
}
]
}