Contents
Easy heading |
---|
linkText4 | |
---|
linkText10 | |
---|
linkText3 | |
---|
linkText6 | |
---|
linkText5 | |
---|
relatedLinksLabels | |
---|
linkText2 | |
---|
linkText1 | |
---|
headingTags | H1,H2,H3 |
---|
sidebarMaxHeight | 450 |
---|
linkType2 | Page |
---|
linkType3 | Page |
---|
linkType1 | Page |
---|
linkType10 | Page |
---|
sidebarTitle | ON THIS PAGE |
---|
linkUrl3 | |
---|
linkUrl4 | |
---|
linkUrl1 | |
---|
linkUrl2 | |
---|
linkUrl10 | |
---|
includedPageMode | Disable_Included_Pages |
---|
linkText8 | |
---|
linkText7 | |
---|
relatedLinksOrder | Labels_First |
---|
sidebarMode | Opened |
---|
headingNumberingMode | Disable_Numbering |
---|
linkText9 | |
---|
sidebarMarginRight | 20 |
---|
relatedLinksTarget | New_Window |
---|
relatedLinksTitle | RELATED LINKS |
---|
linkUrl9 | |
---|
linkUrl7 | |
---|
linkUrl8 | |
---|
numberedHeadingTags | H1,H2,H3 |
---|
linkUrl5 | |
---|
linkUrl6 | |
---|
linkType8 | Page |
---|
linkType9 | Page |
---|
linkType6 | Page |
---|
headingLinkTextMode | Wrap |
---|
linkType7 | Page |
---|
linkType4 | Page |
---|
linkType5 | Page |
---|
sidebarWidth | 240 |
---|
sidebarTop | 160 |
---|
headingLinkExpandMode | Collapse_All_By_Default |
---|
headingLinkIndent | 10 |
---|
|
...
Please verify that all the files in C:\\Program Files\\WindowsPowerShell\\Modules\\gytpol\\Config
are present.
There should be four files in total, as listed below.
...
If a proxy server is configured, it will be displayed in the command output.
Powershell:
$proxySettings = Get-ItemProperty -Path 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Internet Settings'
if ($proxySettings.ProxyEnable -eq 1)
{
Write-Output "Proxy Server: $($proxySettings.ProxyServer)"
}
else {
Write-Output "Proxy is not enabled."
}
If proxy is set, this will be the result:
...