Error while trying to get a specific type of log from Event Viewer on Powershell
I'm not sure if this is the right place to ask this, but I'm running the following command on powershell:
> Get-eventLog -LogName Security -InstanceID 4625
4625 refers to events where there was a failed logon attempt, and I just want those (if possible I'd want to get the specific IP that failed the logon but that's less prioritary).
However, I'm getting an error for any events that are located past index 3955 in specific for some reason. Here's what appears:
"Índice 3955 fora dos limites" means "Index 3955 out of bounds" just in case anyone needs the clarification.
If I try it with other events that have instances before index 3955, for example, -InstanceID 4624
, I get a list of all the events and then it stops at 3955 as well and I get this error (without the "no matches found" bottom half of it).
What's wrong and what should I do to correct this?
Update 1
The index out of bounds number has been getting higher with further attempts, so I assume it's something to do with the listing of the events or the update to new ones..?
Update 2
I tried this command on a virtual machine's powershell and it runs correctly and without errors.
Also, I have administrator permissions for both, if it's relevant.
windows powershell command event-log
add a comment |
I'm not sure if this is the right place to ask this, but I'm running the following command on powershell:
> Get-eventLog -LogName Security -InstanceID 4625
4625 refers to events where there was a failed logon attempt, and I just want those (if possible I'd want to get the specific IP that failed the logon but that's less prioritary).
However, I'm getting an error for any events that are located past index 3955 in specific for some reason. Here's what appears:
"Índice 3955 fora dos limites" means "Index 3955 out of bounds" just in case anyone needs the clarification.
If I try it with other events that have instances before index 3955, for example, -InstanceID 4624
, I get a list of all the events and then it stops at 3955 as well and I get this error (without the "no matches found" bottom half of it).
What's wrong and what should I do to correct this?
Update 1
The index out of bounds number has been getting higher with further attempts, so I assume it's something to do with the listing of the events or the update to new ones..?
Update 2
I tried this command on a virtual machine's powershell and it runs correctly and without errors.
Also, I have administrator permissions for both, if it's relevant.
windows powershell command event-log
add a comment |
I'm not sure if this is the right place to ask this, but I'm running the following command on powershell:
> Get-eventLog -LogName Security -InstanceID 4625
4625 refers to events where there was a failed logon attempt, and I just want those (if possible I'd want to get the specific IP that failed the logon but that's less prioritary).
However, I'm getting an error for any events that are located past index 3955 in specific for some reason. Here's what appears:
"Índice 3955 fora dos limites" means "Index 3955 out of bounds" just in case anyone needs the clarification.
If I try it with other events that have instances before index 3955, for example, -InstanceID 4624
, I get a list of all the events and then it stops at 3955 as well and I get this error (without the "no matches found" bottom half of it).
What's wrong and what should I do to correct this?
Update 1
The index out of bounds number has been getting higher with further attempts, so I assume it's something to do with the listing of the events or the update to new ones..?
Update 2
I tried this command on a virtual machine's powershell and it runs correctly and without errors.
Also, I have administrator permissions for both, if it's relevant.
windows powershell command event-log
I'm not sure if this is the right place to ask this, but I'm running the following command on powershell:
> Get-eventLog -LogName Security -InstanceID 4625
4625 refers to events where there was a failed logon attempt, and I just want those (if possible I'd want to get the specific IP that failed the logon but that's less prioritary).
However, I'm getting an error for any events that are located past index 3955 in specific for some reason. Here's what appears:
"Índice 3955 fora dos limites" means "Index 3955 out of bounds" just in case anyone needs the clarification.
If I try it with other events that have instances before index 3955, for example, -InstanceID 4624
, I get a list of all the events and then it stops at 3955 as well and I get this error (without the "no matches found" bottom half of it).
What's wrong and what should I do to correct this?
Update 1
The index out of bounds number has been getting higher with further attempts, so I assume it's something to do with the listing of the events or the update to new ones..?
Update 2
I tried this command on a virtual machine's powershell and it runs correctly and without errors.
Also, I have administrator permissions for both, if it's relevant.
windows powershell command event-log
windows powershell command event-log
edited Nov 16 '18 at 12:34
S. M.
asked Nov 16 '18 at 11:56
S. M.S. M.
1538
1538
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53337415%2ferror-while-trying-to-get-a-specific-type-of-log-from-event-viewer-on-powershell%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53337415%2ferror-while-trying-to-get-a-specific-type-of-log-from-event-viewer-on-powershell%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown