We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Receives the following error when trying to use the software with NXLog Agent
This is the ps script I am using:
$workingdir = "C:\Program Files\procgov" restart-service nxlog $nxlog = (get-process nxlog | select -expand id) & "$workingdir\procgov64.exe" --maxmem 200M --cpu 1 --cpurate 20 --pid $nxlog
The text was updated successfully, but these errors were encountered:
Please add -v option to the procgov64.exe arguments and show the output. What is the account of the nxlog service?
Sorry, something went wrong.
Just to be clear, I appended -v to the end of the last line in the ps script. The output is below:
-v
The nxlog service runs with the local system account.
I will need to do some debugging to see if I may fix this problem in procgov.
In the meantime, try running procgov as SYSTEM as well, using, for example, psexec:
"$workingdir\psexec" -s -i "$workingdir\procgov64.exe" --maxmem 200M --cpu 1 --cpurate 20 --pid $nxlog
You may skip the -i (interactive) option if you don't need to see the procgov output.
Fix: premature monitor termination, ACCESS DENIED caused by unnecessa…
aa0effe
…ry token opening (#63, maybe #70 as well)
lowleveldesign
No branches or pull requests
Receives the following error when trying to use the software with NXLog Agent
This is the ps script I am using:
$workingdir = "C:\Program Files\procgov"
restart-service nxlog
$nxlog = (get-process nxlog | select -expand id)
& "$workingdir\procgov64.exe" --maxmem 200M --cpu 1 --cpurate 20 --pid $nxlog
The text was updated successfully, but these errors were encountered: