How do you fix google chrome being slow at start it up, due to the lsass.exe service on windows 10?
I've been having trouble for with chrome for the past few days.
Chrome would freeze for several minutes each time I open it up. Once Chrome starts working again everything is normal, but it's frustrating when you have to wait several minutes before you can do anything with your web browser.
I managed to find one solution to this, which I have posted as an answer below, but if anyone else has had similar problems and managed to solve them, please feel free to tell us how.
google-chrome freeze cpu-usage windows-services
add a comment |
I've been having trouble for with chrome for the past few days.
Chrome would freeze for several minutes each time I open it up. Once Chrome starts working again everything is normal, but it's frustrating when you have to wait several minutes before you can do anything with your web browser.
I managed to find one solution to this, which I have posted as an answer below, but if anyone else has had similar problems and managed to solve them, please feel free to tell us how.
google-chrome freeze cpu-usage windows-services
add a comment |
I've been having trouble for with chrome for the past few days.
Chrome would freeze for several minutes each time I open it up. Once Chrome starts working again everything is normal, but it's frustrating when you have to wait several minutes before you can do anything with your web browser.
I managed to find one solution to this, which I have posted as an answer below, but if anyone else has had similar problems and managed to solve them, please feel free to tell us how.
google-chrome freeze cpu-usage windows-services
I've been having trouble for with chrome for the past few days.
Chrome would freeze for several minutes each time I open it up. Once Chrome starts working again everything is normal, but it's frustrating when you have to wait several minutes before you can do anything with your web browser.
I managed to find one solution to this, which I have posted as an answer below, but if anyone else has had similar problems and managed to solve them, please feel free to tell us how.
google-chrome freeze cpu-usage windows-services
google-chrome freeze cpu-usage windows-services
asked Mar 12 '18 at 11:13
T_R_O_NT_R_O_N
167
167
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
I found the solution to chrome's startup freezing in the comments of this chrome issue report:
https://bugs.chromium.org/p/chromium/issues/detail?id=374624
This was comment #27, all credit goes to the author of the comment for figuring it out:
I am working on this issue right now.
Using some clues from you all here, I've tracked it down this.
Process explorer shows a security token request and termination loop
happening under lsass.exe, with token being
:1c42f
Such as: Smith_VAIOJohn:1c42f
Upon inspection with Process Monitor, we see the following:
11:34:57.3492434 AM lsass.exe 908 RegQueryKey HKLM SUCCESS Query:
HandleTags, HandleTags: 0x0 11:34:57.3492833
AM lsass.exe 908 RegOpenKey HKLMSoftwareMicrosoftWindows
NTCurrentVersionProfileListS-1-5-21-563832473-1690269938-841482641-1000 SUCCESS Desired
Access: Read 11:34:57.3493295
AM lsass.exe 908 RegQueryValue HKLMSOFTWAREMicrosoftWindows
NTCurrentVersionProfileListS-1-5-21-563832473-1690269938-841482641-1000ProfileImagePath SUCCESS Type: REG_EXPAND_SZ, Length: 28, Data: C:UsersJohn 11:34:57.3493613
AM lsass.exe 908 RegQueryValue HKLMSOFTWAREMicrosoftWindows
NTCurrentVersionProfileListS-1-5-21-563832473-1690269938-841482641-1000ProfileImagePath SUCCESS Type: REG_EXPAND_SZ, Length: 28, Data: C:UsersJohn 11:34:57.3493926
AM lsass.exe 908 RegCloseKey HKLMSOFTWAREMicrosoftWindows
NTCurrentVersionProfileListS-1-5-21-563832473-1690269938-841482641-1000 SUCCESS
11:34:57.3495197
AM lsass.exe 908 CreateFile C:UsersJohnAppDataRoamingMicrosoftProtectS-1-5-21-563832473-1690269938-841482641-513Preferred PATH
NOT FOUND Desired Access: Generic Read, Disposition: Open, Options:
Sequential Access, Synchronous IO Non-Alert, Non-Directory File,
Attributes: HS, ShareMode: Read, AllocationSize: n/a, Impersonating:
Smith_VAIOJohn
This behavior loops.
Sometimes throwing in:
11:34:57.1073869
AM lsass.exe 908 CreateFile C:UsersJohnAppDataRoamingMicrosoftProtectCREDHIST SUCCESS Desired
Access: Generic Read/Write, Disposition: OpenIf, Options: Synchronous
IO Non-Alert, Non-Directory File, Random Access, Attributes: HS,
ShareMode: None, AllocationSize: 0, Impersonating: Smith_VAIOJohn,
OpenResult: Opened 11:34:57.1074461
AM lsass.exe 908 QueryStandardInformationFile C:UsersJohnAppDataRoamingMicrosoftProtectCREDHIST SUCCESS AllocationSize:
24, EndOfFile: 24, NumberOfLinks: 1, DeletePending: False, Directory:
False 11:34:57.1074769
AM lsass.exe 908 CreateFileMapping C:UsersJohnAppDataRoamingMicrosoftProtectCREDHIST FILE
LOCKED WITH WRITERS SyncType: SyncTypeCreateSection, PageProtection:
11:34:57.1075034
AM lsass.exe 908 QueryStandardInformationFile C:UsersJohnAppDataRoamingMicrosoftProtectCREDHIST SUCCESS AllocationSize:
24, EndOfFile: 24, NumberOfLinks: 1, DeletePending: False, Directory:
False 11:34:57.1075669
AM lsass.exe 908 CreateFileMapping C:UsersJohnAppDataRoamingMicrosoftProtectCREDHIST SUCCESS SyncType:
SyncTypeOther 11:34:57.1076805
AM lsass.exe 908 CloseFile C:UsersJohnAppDataRoamingMicrosoftProtectCREDHIST SUCCESS
So...Using that info, I went to the path
"C:UsersJohnAppdataRoamingMicrosoftProtect" and found one
folder with a random guid that was created days ago. lsass.exe was
currently still in a 'stuck' state, when I deleted this guid folder,
and another one was immediately created with a new guid. The next
step is probably unnecessary, but I deleted the newly created guid
folder as well, and this time it did not respawn. lsass.exe processor
time was back to normal. I attempted to close chrome, at which point
it closed properly. I reopened chrome, observed lsass use some cpu
for about 10 seconds, then stop. I closed chrome, and the process
terminated properly yet again. I then reopened chrome to observe the
same behavior as previous (normal behavior).
So, conclusion, the folder located at
"C:Users\appdataroamingmicrosoftprotect" must be
deleted.
That worked in my case.
Hope you value the info!
I'm just posting it here because I had a hard time finding this solution and I hope I can make it easier for someone else in the future.
I did exactly what the author of the comment suggested, once I deleted the folder, and reran chrome, the folder was recreated, but the chrome no longer froze. The folder has a strange name that consists of a long line of different characters, and it appears to be empty, but deleting it definitely did the trick for me.
Good luck!
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
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%2fsuperuser.com%2fquestions%2f1302664%2fhow-do-you-fix-google-chrome-being-slow-at-start-it-up-due-to-the-lsass-exe-ser%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
I found the solution to chrome's startup freezing in the comments of this chrome issue report:
https://bugs.chromium.org/p/chromium/issues/detail?id=374624
This was comment #27, all credit goes to the author of the comment for figuring it out:
I am working on this issue right now.
Using some clues from you all here, I've tracked it down this.
Process explorer shows a security token request and termination loop
happening under lsass.exe, with token being
:1c42f
Such as: Smith_VAIOJohn:1c42f
Upon inspection with Process Monitor, we see the following:
11:34:57.3492434 AM lsass.exe 908 RegQueryKey HKLM SUCCESS Query:
HandleTags, HandleTags: 0x0 11:34:57.3492833
AM lsass.exe 908 RegOpenKey HKLMSoftwareMicrosoftWindows
NTCurrentVersionProfileListS-1-5-21-563832473-1690269938-841482641-1000 SUCCESS Desired
Access: Read 11:34:57.3493295
AM lsass.exe 908 RegQueryValue HKLMSOFTWAREMicrosoftWindows
NTCurrentVersionProfileListS-1-5-21-563832473-1690269938-841482641-1000ProfileImagePath SUCCESS Type: REG_EXPAND_SZ, Length: 28, Data: C:UsersJohn 11:34:57.3493613
AM lsass.exe 908 RegQueryValue HKLMSOFTWAREMicrosoftWindows
NTCurrentVersionProfileListS-1-5-21-563832473-1690269938-841482641-1000ProfileImagePath SUCCESS Type: REG_EXPAND_SZ, Length: 28, Data: C:UsersJohn 11:34:57.3493926
AM lsass.exe 908 RegCloseKey HKLMSOFTWAREMicrosoftWindows
NTCurrentVersionProfileListS-1-5-21-563832473-1690269938-841482641-1000 SUCCESS
11:34:57.3495197
AM lsass.exe 908 CreateFile C:UsersJohnAppDataRoamingMicrosoftProtectS-1-5-21-563832473-1690269938-841482641-513Preferred PATH
NOT FOUND Desired Access: Generic Read, Disposition: Open, Options:
Sequential Access, Synchronous IO Non-Alert, Non-Directory File,
Attributes: HS, ShareMode: Read, AllocationSize: n/a, Impersonating:
Smith_VAIOJohn
This behavior loops.
Sometimes throwing in:
11:34:57.1073869
AM lsass.exe 908 CreateFile C:UsersJohnAppDataRoamingMicrosoftProtectCREDHIST SUCCESS Desired
Access: Generic Read/Write, Disposition: OpenIf, Options: Synchronous
IO Non-Alert, Non-Directory File, Random Access, Attributes: HS,
ShareMode: None, AllocationSize: 0, Impersonating: Smith_VAIOJohn,
OpenResult: Opened 11:34:57.1074461
AM lsass.exe 908 QueryStandardInformationFile C:UsersJohnAppDataRoamingMicrosoftProtectCREDHIST SUCCESS AllocationSize:
24, EndOfFile: 24, NumberOfLinks: 1, DeletePending: False, Directory:
False 11:34:57.1074769
AM lsass.exe 908 CreateFileMapping C:UsersJohnAppDataRoamingMicrosoftProtectCREDHIST FILE
LOCKED WITH WRITERS SyncType: SyncTypeCreateSection, PageProtection:
11:34:57.1075034
AM lsass.exe 908 QueryStandardInformationFile C:UsersJohnAppDataRoamingMicrosoftProtectCREDHIST SUCCESS AllocationSize:
24, EndOfFile: 24, NumberOfLinks: 1, DeletePending: False, Directory:
False 11:34:57.1075669
AM lsass.exe 908 CreateFileMapping C:UsersJohnAppDataRoamingMicrosoftProtectCREDHIST SUCCESS SyncType:
SyncTypeOther 11:34:57.1076805
AM lsass.exe 908 CloseFile C:UsersJohnAppDataRoamingMicrosoftProtectCREDHIST SUCCESS
So...Using that info, I went to the path
"C:UsersJohnAppdataRoamingMicrosoftProtect" and found one
folder with a random guid that was created days ago. lsass.exe was
currently still in a 'stuck' state, when I deleted this guid folder,
and another one was immediately created with a new guid. The next
step is probably unnecessary, but I deleted the newly created guid
folder as well, and this time it did not respawn. lsass.exe processor
time was back to normal. I attempted to close chrome, at which point
it closed properly. I reopened chrome, observed lsass use some cpu
for about 10 seconds, then stop. I closed chrome, and the process
terminated properly yet again. I then reopened chrome to observe the
same behavior as previous (normal behavior).
So, conclusion, the folder located at
"C:Users\appdataroamingmicrosoftprotect" must be
deleted.
That worked in my case.
Hope you value the info!
I'm just posting it here because I had a hard time finding this solution and I hope I can make it easier for someone else in the future.
I did exactly what the author of the comment suggested, once I deleted the folder, and reran chrome, the folder was recreated, but the chrome no longer froze. The folder has a strange name that consists of a long line of different characters, and it appears to be empty, but deleting it definitely did the trick for me.
Good luck!
add a comment |
I found the solution to chrome's startup freezing in the comments of this chrome issue report:
https://bugs.chromium.org/p/chromium/issues/detail?id=374624
This was comment #27, all credit goes to the author of the comment for figuring it out:
I am working on this issue right now.
Using some clues from you all here, I've tracked it down this.
Process explorer shows a security token request and termination loop
happening under lsass.exe, with token being
:1c42f
Such as: Smith_VAIOJohn:1c42f
Upon inspection with Process Monitor, we see the following:
11:34:57.3492434 AM lsass.exe 908 RegQueryKey HKLM SUCCESS Query:
HandleTags, HandleTags: 0x0 11:34:57.3492833
AM lsass.exe 908 RegOpenKey HKLMSoftwareMicrosoftWindows
NTCurrentVersionProfileListS-1-5-21-563832473-1690269938-841482641-1000 SUCCESS Desired
Access: Read 11:34:57.3493295
AM lsass.exe 908 RegQueryValue HKLMSOFTWAREMicrosoftWindows
NTCurrentVersionProfileListS-1-5-21-563832473-1690269938-841482641-1000ProfileImagePath SUCCESS Type: REG_EXPAND_SZ, Length: 28, Data: C:UsersJohn 11:34:57.3493613
AM lsass.exe 908 RegQueryValue HKLMSOFTWAREMicrosoftWindows
NTCurrentVersionProfileListS-1-5-21-563832473-1690269938-841482641-1000ProfileImagePath SUCCESS Type: REG_EXPAND_SZ, Length: 28, Data: C:UsersJohn 11:34:57.3493926
AM lsass.exe 908 RegCloseKey HKLMSOFTWAREMicrosoftWindows
NTCurrentVersionProfileListS-1-5-21-563832473-1690269938-841482641-1000 SUCCESS
11:34:57.3495197
AM lsass.exe 908 CreateFile C:UsersJohnAppDataRoamingMicrosoftProtectS-1-5-21-563832473-1690269938-841482641-513Preferred PATH
NOT FOUND Desired Access: Generic Read, Disposition: Open, Options:
Sequential Access, Synchronous IO Non-Alert, Non-Directory File,
Attributes: HS, ShareMode: Read, AllocationSize: n/a, Impersonating:
Smith_VAIOJohn
This behavior loops.
Sometimes throwing in:
11:34:57.1073869
AM lsass.exe 908 CreateFile C:UsersJohnAppDataRoamingMicrosoftProtectCREDHIST SUCCESS Desired
Access: Generic Read/Write, Disposition: OpenIf, Options: Synchronous
IO Non-Alert, Non-Directory File, Random Access, Attributes: HS,
ShareMode: None, AllocationSize: 0, Impersonating: Smith_VAIOJohn,
OpenResult: Opened 11:34:57.1074461
AM lsass.exe 908 QueryStandardInformationFile C:UsersJohnAppDataRoamingMicrosoftProtectCREDHIST SUCCESS AllocationSize:
24, EndOfFile: 24, NumberOfLinks: 1, DeletePending: False, Directory:
False 11:34:57.1074769
AM lsass.exe 908 CreateFileMapping C:UsersJohnAppDataRoamingMicrosoftProtectCREDHIST FILE
LOCKED WITH WRITERS SyncType: SyncTypeCreateSection, PageProtection:
11:34:57.1075034
AM lsass.exe 908 QueryStandardInformationFile C:UsersJohnAppDataRoamingMicrosoftProtectCREDHIST SUCCESS AllocationSize:
24, EndOfFile: 24, NumberOfLinks: 1, DeletePending: False, Directory:
False 11:34:57.1075669
AM lsass.exe 908 CreateFileMapping C:UsersJohnAppDataRoamingMicrosoftProtectCREDHIST SUCCESS SyncType:
SyncTypeOther 11:34:57.1076805
AM lsass.exe 908 CloseFile C:UsersJohnAppDataRoamingMicrosoftProtectCREDHIST SUCCESS
So...Using that info, I went to the path
"C:UsersJohnAppdataRoamingMicrosoftProtect" and found one
folder with a random guid that was created days ago. lsass.exe was
currently still in a 'stuck' state, when I deleted this guid folder,
and another one was immediately created with a new guid. The next
step is probably unnecessary, but I deleted the newly created guid
folder as well, and this time it did not respawn. lsass.exe processor
time was back to normal. I attempted to close chrome, at which point
it closed properly. I reopened chrome, observed lsass use some cpu
for about 10 seconds, then stop. I closed chrome, and the process
terminated properly yet again. I then reopened chrome to observe the
same behavior as previous (normal behavior).
So, conclusion, the folder located at
"C:Users\appdataroamingmicrosoftprotect" must be
deleted.
That worked in my case.
Hope you value the info!
I'm just posting it here because I had a hard time finding this solution and I hope I can make it easier for someone else in the future.
I did exactly what the author of the comment suggested, once I deleted the folder, and reran chrome, the folder was recreated, but the chrome no longer froze. The folder has a strange name that consists of a long line of different characters, and it appears to be empty, but deleting it definitely did the trick for me.
Good luck!
add a comment |
I found the solution to chrome's startup freezing in the comments of this chrome issue report:
https://bugs.chromium.org/p/chromium/issues/detail?id=374624
This was comment #27, all credit goes to the author of the comment for figuring it out:
I am working on this issue right now.
Using some clues from you all here, I've tracked it down this.
Process explorer shows a security token request and termination loop
happening under lsass.exe, with token being
:1c42f
Such as: Smith_VAIOJohn:1c42f
Upon inspection with Process Monitor, we see the following:
11:34:57.3492434 AM lsass.exe 908 RegQueryKey HKLM SUCCESS Query:
HandleTags, HandleTags: 0x0 11:34:57.3492833
AM lsass.exe 908 RegOpenKey HKLMSoftwareMicrosoftWindows
NTCurrentVersionProfileListS-1-5-21-563832473-1690269938-841482641-1000 SUCCESS Desired
Access: Read 11:34:57.3493295
AM lsass.exe 908 RegQueryValue HKLMSOFTWAREMicrosoftWindows
NTCurrentVersionProfileListS-1-5-21-563832473-1690269938-841482641-1000ProfileImagePath SUCCESS Type: REG_EXPAND_SZ, Length: 28, Data: C:UsersJohn 11:34:57.3493613
AM lsass.exe 908 RegQueryValue HKLMSOFTWAREMicrosoftWindows
NTCurrentVersionProfileListS-1-5-21-563832473-1690269938-841482641-1000ProfileImagePath SUCCESS Type: REG_EXPAND_SZ, Length: 28, Data: C:UsersJohn 11:34:57.3493926
AM lsass.exe 908 RegCloseKey HKLMSOFTWAREMicrosoftWindows
NTCurrentVersionProfileListS-1-5-21-563832473-1690269938-841482641-1000 SUCCESS
11:34:57.3495197
AM lsass.exe 908 CreateFile C:UsersJohnAppDataRoamingMicrosoftProtectS-1-5-21-563832473-1690269938-841482641-513Preferred PATH
NOT FOUND Desired Access: Generic Read, Disposition: Open, Options:
Sequential Access, Synchronous IO Non-Alert, Non-Directory File,
Attributes: HS, ShareMode: Read, AllocationSize: n/a, Impersonating:
Smith_VAIOJohn
This behavior loops.
Sometimes throwing in:
11:34:57.1073869
AM lsass.exe 908 CreateFile C:UsersJohnAppDataRoamingMicrosoftProtectCREDHIST SUCCESS Desired
Access: Generic Read/Write, Disposition: OpenIf, Options: Synchronous
IO Non-Alert, Non-Directory File, Random Access, Attributes: HS,
ShareMode: None, AllocationSize: 0, Impersonating: Smith_VAIOJohn,
OpenResult: Opened 11:34:57.1074461
AM lsass.exe 908 QueryStandardInformationFile C:UsersJohnAppDataRoamingMicrosoftProtectCREDHIST SUCCESS AllocationSize:
24, EndOfFile: 24, NumberOfLinks: 1, DeletePending: False, Directory:
False 11:34:57.1074769
AM lsass.exe 908 CreateFileMapping C:UsersJohnAppDataRoamingMicrosoftProtectCREDHIST FILE
LOCKED WITH WRITERS SyncType: SyncTypeCreateSection, PageProtection:
11:34:57.1075034
AM lsass.exe 908 QueryStandardInformationFile C:UsersJohnAppDataRoamingMicrosoftProtectCREDHIST SUCCESS AllocationSize:
24, EndOfFile: 24, NumberOfLinks: 1, DeletePending: False, Directory:
False 11:34:57.1075669
AM lsass.exe 908 CreateFileMapping C:UsersJohnAppDataRoamingMicrosoftProtectCREDHIST SUCCESS SyncType:
SyncTypeOther 11:34:57.1076805
AM lsass.exe 908 CloseFile C:UsersJohnAppDataRoamingMicrosoftProtectCREDHIST SUCCESS
So...Using that info, I went to the path
"C:UsersJohnAppdataRoamingMicrosoftProtect" and found one
folder with a random guid that was created days ago. lsass.exe was
currently still in a 'stuck' state, when I deleted this guid folder,
and another one was immediately created with a new guid. The next
step is probably unnecessary, but I deleted the newly created guid
folder as well, and this time it did not respawn. lsass.exe processor
time was back to normal. I attempted to close chrome, at which point
it closed properly. I reopened chrome, observed lsass use some cpu
for about 10 seconds, then stop. I closed chrome, and the process
terminated properly yet again. I then reopened chrome to observe the
same behavior as previous (normal behavior).
So, conclusion, the folder located at
"C:Users\appdataroamingmicrosoftprotect" must be
deleted.
That worked in my case.
Hope you value the info!
I'm just posting it here because I had a hard time finding this solution and I hope I can make it easier for someone else in the future.
I did exactly what the author of the comment suggested, once I deleted the folder, and reran chrome, the folder was recreated, but the chrome no longer froze. The folder has a strange name that consists of a long line of different characters, and it appears to be empty, but deleting it definitely did the trick for me.
Good luck!
I found the solution to chrome's startup freezing in the comments of this chrome issue report:
https://bugs.chromium.org/p/chromium/issues/detail?id=374624
This was comment #27, all credit goes to the author of the comment for figuring it out:
I am working on this issue right now.
Using some clues from you all here, I've tracked it down this.
Process explorer shows a security token request and termination loop
happening under lsass.exe, with token being
:1c42f
Such as: Smith_VAIOJohn:1c42f
Upon inspection with Process Monitor, we see the following:
11:34:57.3492434 AM lsass.exe 908 RegQueryKey HKLM SUCCESS Query:
HandleTags, HandleTags: 0x0 11:34:57.3492833
AM lsass.exe 908 RegOpenKey HKLMSoftwareMicrosoftWindows
NTCurrentVersionProfileListS-1-5-21-563832473-1690269938-841482641-1000 SUCCESS Desired
Access: Read 11:34:57.3493295
AM lsass.exe 908 RegQueryValue HKLMSOFTWAREMicrosoftWindows
NTCurrentVersionProfileListS-1-5-21-563832473-1690269938-841482641-1000ProfileImagePath SUCCESS Type: REG_EXPAND_SZ, Length: 28, Data: C:UsersJohn 11:34:57.3493613
AM lsass.exe 908 RegQueryValue HKLMSOFTWAREMicrosoftWindows
NTCurrentVersionProfileListS-1-5-21-563832473-1690269938-841482641-1000ProfileImagePath SUCCESS Type: REG_EXPAND_SZ, Length: 28, Data: C:UsersJohn 11:34:57.3493926
AM lsass.exe 908 RegCloseKey HKLMSOFTWAREMicrosoftWindows
NTCurrentVersionProfileListS-1-5-21-563832473-1690269938-841482641-1000 SUCCESS
11:34:57.3495197
AM lsass.exe 908 CreateFile C:UsersJohnAppDataRoamingMicrosoftProtectS-1-5-21-563832473-1690269938-841482641-513Preferred PATH
NOT FOUND Desired Access: Generic Read, Disposition: Open, Options:
Sequential Access, Synchronous IO Non-Alert, Non-Directory File,
Attributes: HS, ShareMode: Read, AllocationSize: n/a, Impersonating:
Smith_VAIOJohn
This behavior loops.
Sometimes throwing in:
11:34:57.1073869
AM lsass.exe 908 CreateFile C:UsersJohnAppDataRoamingMicrosoftProtectCREDHIST SUCCESS Desired
Access: Generic Read/Write, Disposition: OpenIf, Options: Synchronous
IO Non-Alert, Non-Directory File, Random Access, Attributes: HS,
ShareMode: None, AllocationSize: 0, Impersonating: Smith_VAIOJohn,
OpenResult: Opened 11:34:57.1074461
AM lsass.exe 908 QueryStandardInformationFile C:UsersJohnAppDataRoamingMicrosoftProtectCREDHIST SUCCESS AllocationSize:
24, EndOfFile: 24, NumberOfLinks: 1, DeletePending: False, Directory:
False 11:34:57.1074769
AM lsass.exe 908 CreateFileMapping C:UsersJohnAppDataRoamingMicrosoftProtectCREDHIST FILE
LOCKED WITH WRITERS SyncType: SyncTypeCreateSection, PageProtection:
11:34:57.1075034
AM lsass.exe 908 QueryStandardInformationFile C:UsersJohnAppDataRoamingMicrosoftProtectCREDHIST SUCCESS AllocationSize:
24, EndOfFile: 24, NumberOfLinks: 1, DeletePending: False, Directory:
False 11:34:57.1075669
AM lsass.exe 908 CreateFileMapping C:UsersJohnAppDataRoamingMicrosoftProtectCREDHIST SUCCESS SyncType:
SyncTypeOther 11:34:57.1076805
AM lsass.exe 908 CloseFile C:UsersJohnAppDataRoamingMicrosoftProtectCREDHIST SUCCESS
So...Using that info, I went to the path
"C:UsersJohnAppdataRoamingMicrosoftProtect" and found one
folder with a random guid that was created days ago. lsass.exe was
currently still in a 'stuck' state, when I deleted this guid folder,
and another one was immediately created with a new guid. The next
step is probably unnecessary, but I deleted the newly created guid
folder as well, and this time it did not respawn. lsass.exe processor
time was back to normal. I attempted to close chrome, at which point
it closed properly. I reopened chrome, observed lsass use some cpu
for about 10 seconds, then stop. I closed chrome, and the process
terminated properly yet again. I then reopened chrome to observe the
same behavior as previous (normal behavior).
So, conclusion, the folder located at
"C:Users\appdataroamingmicrosoftprotect" must be
deleted.
That worked in my case.
Hope you value the info!
I'm just posting it here because I had a hard time finding this solution and I hope I can make it easier for someone else in the future.
I did exactly what the author of the comment suggested, once I deleted the folder, and reran chrome, the folder was recreated, but the chrome no longer froze. The folder has a strange name that consists of a long line of different characters, and it appears to be empty, but deleting it definitely did the trick for me.
Good luck!
answered Mar 12 '18 at 11:28
T_R_O_NT_R_O_N
167
167
add a comment |
add a comment |
Thanks for contributing an answer to Super User!
- 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%2fsuperuser.com%2fquestions%2f1302664%2fhow-do-you-fix-google-chrome-being-slow-at-start-it-up-due-to-the-lsass-exe-ser%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