-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathSet-Configuration.ps1
More file actions
23 lines (17 loc) · 937 Bytes
/
Set-Configuration.ps1
File metadata and controls
23 lines (17 loc) · 937 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<# Save configuration for the Convert-FMClip.ps1 script to environment variables.
# Once reviewing the values below, run this script to set them.
#
# NOTE: You do NOT need to run this if you choose to use the default options.
###############################################################################>
setx Convert-FMClip.prettyPrint $true
# $true or $false, Default is $true
# If True, will pretty-print the XML after converting from FM to XML
setx Convert-FMClip.prettyPrintChar "tab"
# "space", "tab", "cr", "lf".
# Character to use for indentation. Default is "tab".
setx Convert-FMClip.prettyPrintIndentation 1
# Number of prettyPrintChar to use for each level. The default is 1.
<###############################################################################>
Write-Host
Write-Host "You will need to re-launch any currently open application before they will see these new values."
pause