How do I disable the windows 7 activation system in this situation?
My windows somehow "expired" and I need to activate it or its not Genuine, and it'll shut down every hour. That's normal. I've seen couple ways to activate it like putting in activation keys, but I am tired of doing so.I found out that usually when you go to control panel>admin. tools>computer management>system protection and disable it as well as the updates, it'll stop.But my computer can't disable it. It just says in grey, "Automatic (Delayed Start).Is it because the windows7 is expired? I am a administrator user, so I do have access to all admin stuff.
windows-7 windows windows-activation
add a comment |
My windows somehow "expired" and I need to activate it or its not Genuine, and it'll shut down every hour. That's normal. I've seen couple ways to activate it like putting in activation keys, but I am tired of doing so.I found out that usually when you go to control panel>admin. tools>computer management>system protection and disable it as well as the updates, it'll stop.But my computer can't disable it. It just says in grey, "Automatic (Delayed Start).Is it because the windows7 is expired? I am a administrator user, so I do have access to all admin stuff.
windows-7 windows windows-activation
2
This sounds like an XY Problem - you need to concentrate on why the activation isn't sticking, rather than ways to prevent the activation process from happening.
– Tetsujin
Sep 22 '16 at 20:11
3
You call the Microsoft Activation Center, have you done that, it takes less than 5 minutes to activate Windows by phone
– Ramhound
Sep 22 '16 at 20:21
add a comment |
My windows somehow "expired" and I need to activate it or its not Genuine, and it'll shut down every hour. That's normal. I've seen couple ways to activate it like putting in activation keys, but I am tired of doing so.I found out that usually when you go to control panel>admin. tools>computer management>system protection and disable it as well as the updates, it'll stop.But my computer can't disable it. It just says in grey, "Automatic (Delayed Start).Is it because the windows7 is expired? I am a administrator user, so I do have access to all admin stuff.
windows-7 windows windows-activation
My windows somehow "expired" and I need to activate it or its not Genuine, and it'll shut down every hour. That's normal. I've seen couple ways to activate it like putting in activation keys, but I am tired of doing so.I found out that usually when you go to control panel>admin. tools>computer management>system protection and disable it as well as the updates, it'll stop.But my computer can't disable it. It just says in grey, "Automatic (Delayed Start).Is it because the windows7 is expired? I am a administrator user, so I do have access to all admin stuff.
windows-7 windows windows-activation
windows-7 windows windows-activation
edited Sep 22 '16 at 20:09
Tetsujin
15.3k53261
15.3k53261
asked Sep 22 '16 at 19:32
Yuu Mori
414
414
2
This sounds like an XY Problem - you need to concentrate on why the activation isn't sticking, rather than ways to prevent the activation process from happening.
– Tetsujin
Sep 22 '16 at 20:11
3
You call the Microsoft Activation Center, have you done that, it takes less than 5 minutes to activate Windows by phone
– Ramhound
Sep 22 '16 at 20:21
add a comment |
2
This sounds like an XY Problem - you need to concentrate on why the activation isn't sticking, rather than ways to prevent the activation process from happening.
– Tetsujin
Sep 22 '16 at 20:11
3
You call the Microsoft Activation Center, have you done that, it takes less than 5 minutes to activate Windows by phone
– Ramhound
Sep 22 '16 at 20:21
2
2
This sounds like an XY Problem - you need to concentrate on why the activation isn't sticking, rather than ways to prevent the activation process from happening.
– Tetsujin
Sep 22 '16 at 20:11
This sounds like an XY Problem - you need to concentrate on why the activation isn't sticking, rather than ways to prevent the activation process from happening.
– Tetsujin
Sep 22 '16 at 20:11
3
3
You call the Microsoft Activation Center, have you done that, it takes less than 5 minutes to activate Windows by phone
– Ramhound
Sep 22 '16 at 20:21
You call the Microsoft Activation Center, have you done that, it takes less than 5 minutes to activate Windows by phone
– Ramhound
Sep 22 '16 at 20:21
add a comment |
1 Answer
1
active
oldest
votes
Method 1: Regedit:
Please navigate to HKEY_LOCAL_MACHINESYSTEMCurrentControlSetservicessppsvc
and locate Start registry key
Double click on Start and edit the value:
Change Startup type :
- Automatic - 2
- Manual - 3
- Disabled - 4
- Automatic (Delayed Start) - 2
Note: When you change to Automatic (Delayed Start) a new key DelayedAutostart
is created with value 1
.
When you change to Automatic from Automatic (Delayed Start), DelayedAutostart
change value to 0
.
Method 2: Command Prompt:
Type cmd
, right click on cmd icon under the Programs and click on Run as administrator
Please select, right and copy a registry key from below, then right click on command prompt window, select Paste and press Enter
To Stop Software Protection:
net stop sppsvc
To change Startup Type:
Automatic:
REG add "HKLMSYSTEMCurrentControlSetservicessppsvc" /v Start /t REG_DWORD /d 2 /f
Manual:
REG add "HKLMSYSTEMCurrentControlSetservicessppsvc" /v Start /t REG_DWORD /d 3 /f
Disabled:
REG add "HKLMSYSTEMCurrentControlSetservicessppsvc" /v Start /t REG_DWORD /d 4 /f
Automatic (Delayed Start):
REG add "HKLMSYSTEMCurrentControlSetservicessppsvc" /v Start /t REG_DWORD /d 2 /f
Note: When you change to Automatic (Delayed Start) a new key DelayedAutostart
is created with value 1
.
REG add "HKLMSYSTEMCurrentControlSetservicessppsvc" /v DelayedAutostart /t REG_DWORD /d 1 /f
When you change to Automatic from Automatic (Delayed Start), DelayedAutostart
change value to 0
.
REG add "HKLMSYSTEMCurrentControlSetservicessppsvc" /v DelayedAutostart /t REG_DWORD /d 0 /f
Reference:
How to Start/Stop Software Protection service
add a comment |
protected by Ramhound Dec 12 at 2:43
Thank you for your interest in this question.
Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10 reputation on this site (the association bonus does not count).
Would you like to answer one of these unanswered questions instead?
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Method 1: Regedit:
Please navigate to HKEY_LOCAL_MACHINESYSTEMCurrentControlSetservicessppsvc
and locate Start registry key
Double click on Start and edit the value:
Change Startup type :
- Automatic - 2
- Manual - 3
- Disabled - 4
- Automatic (Delayed Start) - 2
Note: When you change to Automatic (Delayed Start) a new key DelayedAutostart
is created with value 1
.
When you change to Automatic from Automatic (Delayed Start), DelayedAutostart
change value to 0
.
Method 2: Command Prompt:
Type cmd
, right click on cmd icon under the Programs and click on Run as administrator
Please select, right and copy a registry key from below, then right click on command prompt window, select Paste and press Enter
To Stop Software Protection:
net stop sppsvc
To change Startup Type:
Automatic:
REG add "HKLMSYSTEMCurrentControlSetservicessppsvc" /v Start /t REG_DWORD /d 2 /f
Manual:
REG add "HKLMSYSTEMCurrentControlSetservicessppsvc" /v Start /t REG_DWORD /d 3 /f
Disabled:
REG add "HKLMSYSTEMCurrentControlSetservicessppsvc" /v Start /t REG_DWORD /d 4 /f
Automatic (Delayed Start):
REG add "HKLMSYSTEMCurrentControlSetservicessppsvc" /v Start /t REG_DWORD /d 2 /f
Note: When you change to Automatic (Delayed Start) a new key DelayedAutostart
is created with value 1
.
REG add "HKLMSYSTEMCurrentControlSetservicessppsvc" /v DelayedAutostart /t REG_DWORD /d 1 /f
When you change to Automatic from Automatic (Delayed Start), DelayedAutostart
change value to 0
.
REG add "HKLMSYSTEMCurrentControlSetservicessppsvc" /v DelayedAutostart /t REG_DWORD /d 0 /f
Reference:
How to Start/Stop Software Protection service
add a comment |
Method 1: Regedit:
Please navigate to HKEY_LOCAL_MACHINESYSTEMCurrentControlSetservicessppsvc
and locate Start registry key
Double click on Start and edit the value:
Change Startup type :
- Automatic - 2
- Manual - 3
- Disabled - 4
- Automatic (Delayed Start) - 2
Note: When you change to Automatic (Delayed Start) a new key DelayedAutostart
is created with value 1
.
When you change to Automatic from Automatic (Delayed Start), DelayedAutostart
change value to 0
.
Method 2: Command Prompt:
Type cmd
, right click on cmd icon under the Programs and click on Run as administrator
Please select, right and copy a registry key from below, then right click on command prompt window, select Paste and press Enter
To Stop Software Protection:
net stop sppsvc
To change Startup Type:
Automatic:
REG add "HKLMSYSTEMCurrentControlSetservicessppsvc" /v Start /t REG_DWORD /d 2 /f
Manual:
REG add "HKLMSYSTEMCurrentControlSetservicessppsvc" /v Start /t REG_DWORD /d 3 /f
Disabled:
REG add "HKLMSYSTEMCurrentControlSetservicessppsvc" /v Start /t REG_DWORD /d 4 /f
Automatic (Delayed Start):
REG add "HKLMSYSTEMCurrentControlSetservicessppsvc" /v Start /t REG_DWORD /d 2 /f
Note: When you change to Automatic (Delayed Start) a new key DelayedAutostart
is created with value 1
.
REG add "HKLMSYSTEMCurrentControlSetservicessppsvc" /v DelayedAutostart /t REG_DWORD /d 1 /f
When you change to Automatic from Automatic (Delayed Start), DelayedAutostart
change value to 0
.
REG add "HKLMSYSTEMCurrentControlSetservicessppsvc" /v DelayedAutostart /t REG_DWORD /d 0 /f
Reference:
How to Start/Stop Software Protection service
add a comment |
Method 1: Regedit:
Please navigate to HKEY_LOCAL_MACHINESYSTEMCurrentControlSetservicessppsvc
and locate Start registry key
Double click on Start and edit the value:
Change Startup type :
- Automatic - 2
- Manual - 3
- Disabled - 4
- Automatic (Delayed Start) - 2
Note: When you change to Automatic (Delayed Start) a new key DelayedAutostart
is created with value 1
.
When you change to Automatic from Automatic (Delayed Start), DelayedAutostart
change value to 0
.
Method 2: Command Prompt:
Type cmd
, right click on cmd icon under the Programs and click on Run as administrator
Please select, right and copy a registry key from below, then right click on command prompt window, select Paste and press Enter
To Stop Software Protection:
net stop sppsvc
To change Startup Type:
Automatic:
REG add "HKLMSYSTEMCurrentControlSetservicessppsvc" /v Start /t REG_DWORD /d 2 /f
Manual:
REG add "HKLMSYSTEMCurrentControlSetservicessppsvc" /v Start /t REG_DWORD /d 3 /f
Disabled:
REG add "HKLMSYSTEMCurrentControlSetservicessppsvc" /v Start /t REG_DWORD /d 4 /f
Automatic (Delayed Start):
REG add "HKLMSYSTEMCurrentControlSetservicessppsvc" /v Start /t REG_DWORD /d 2 /f
Note: When you change to Automatic (Delayed Start) a new key DelayedAutostart
is created with value 1
.
REG add "HKLMSYSTEMCurrentControlSetservicessppsvc" /v DelayedAutostart /t REG_DWORD /d 1 /f
When you change to Automatic from Automatic (Delayed Start), DelayedAutostart
change value to 0
.
REG add "HKLMSYSTEMCurrentControlSetservicessppsvc" /v DelayedAutostart /t REG_DWORD /d 0 /f
Reference:
How to Start/Stop Software Protection service
Method 1: Regedit:
Please navigate to HKEY_LOCAL_MACHINESYSTEMCurrentControlSetservicessppsvc
and locate Start registry key
Double click on Start and edit the value:
Change Startup type :
- Automatic - 2
- Manual - 3
- Disabled - 4
- Automatic (Delayed Start) - 2
Note: When you change to Automatic (Delayed Start) a new key DelayedAutostart
is created with value 1
.
When you change to Automatic from Automatic (Delayed Start), DelayedAutostart
change value to 0
.
Method 2: Command Prompt:
Type cmd
, right click on cmd icon under the Programs and click on Run as administrator
Please select, right and copy a registry key from below, then right click on command prompt window, select Paste and press Enter
To Stop Software Protection:
net stop sppsvc
To change Startup Type:
Automatic:
REG add "HKLMSYSTEMCurrentControlSetservicessppsvc" /v Start /t REG_DWORD /d 2 /f
Manual:
REG add "HKLMSYSTEMCurrentControlSetservicessppsvc" /v Start /t REG_DWORD /d 3 /f
Disabled:
REG add "HKLMSYSTEMCurrentControlSetservicessppsvc" /v Start /t REG_DWORD /d 4 /f
Automatic (Delayed Start):
REG add "HKLMSYSTEMCurrentControlSetservicessppsvc" /v Start /t REG_DWORD /d 2 /f
Note: When you change to Automatic (Delayed Start) a new key DelayedAutostart
is created with value 1
.
REG add "HKLMSYSTEMCurrentControlSetservicessppsvc" /v DelayedAutostart /t REG_DWORD /d 1 /f
When you change to Automatic from Automatic (Delayed Start), DelayedAutostart
change value to 0
.
REG add "HKLMSYSTEMCurrentControlSetservicessppsvc" /v DelayedAutostart /t REG_DWORD /d 0 /f
Reference:
How to Start/Stop Software Protection service
edited Sep 22 '16 at 21:02
answered Sep 22 '16 at 20:39
thilina R
2,13541633
2,13541633
add a comment |
add a comment |
protected by Ramhound Dec 12 at 2:43
Thank you for your interest in this question.
Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10 reputation on this site (the association bonus does not count).
Would you like to answer one of these unanswered questions instead?
2
This sounds like an XY Problem - you need to concentrate on why the activation isn't sticking, rather than ways to prevent the activation process from happening.
– Tetsujin
Sep 22 '16 at 20:11
3
You call the Microsoft Activation Center, have you done that, it takes less than 5 minutes to activate Windows by phone
– Ramhound
Sep 22 '16 at 20:21