Contents
Easy heading | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
...
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:
...
Open the Services application:
Press Win + R, type services.msc, and press Enter.
Find and select the "gytpol GPMCPROXY" service, right-click on it, and choose "Restart."
Find and select the "gytpol Data Repository" service, right-click on it, and choose "Restart."
Rescan of Linux and MacOS clients via terminal
linux:
Open terminal and run
Code Block |
---|
sudo systemctl stop gytpol-client && sudo rm /opt/gytpol/state.db && sudo systemctl start gytpol-client |
macOS:
Open terminal and run
Code Block |
---|
sudo launchctl stop com.gytpol.gytmac && sudo rm /opt/gytpol/state.db && sudo launchctl start com.gytpol.gytmac |