Bitcoin Forum

Alternate cryptocurrencies => Mining (Altcoins) => Topic started by: aragom on February 04, 2018, 08:36:37 AM



Title: Stop Windows 10 Update
Post by: aragom on February 04, 2018, 08:36:37 AM
my windows 10 is updating itself. and claymore mining isnt working in new version. everytime it is updating i retruned back.

i am closing all updates. i tried to stop services.msc, gpedit.msc. but everytime it finds a way and is starting own by own. i couldnt stop to update it.

is there any way to hardstop it?

or
is there anyway to mining with new version

anyone has with this trouble?


Title: Re: Stop Windows 10 Update
Post by: leonix007 on February 04, 2018, 11:06:55 AM
my windows 10 is updating itself. and claymore mining isnt working in new version. everytime it is updating i retruned back.

i am closing all updates. i tried to stop services.msc, gpedit.msc. but everytime it finds a way and is starting own by own. i couldnt stop to update it.

is there any way to hardstop it?

or
is there anyway to mining with new version

anyone has with this trouble?

try suggestions on these threads, though Gpedit should be able to do the job.

https://bitcointalk.org/index.php?topic=2282693.0

some useful information also here

http://1stminingrig.com/best-windows-setup-configuration-tweaks-for-mining/


Title: Re: Stop Windows 10 Update
Post by: CryptoWatcher420 on February 04, 2018, 11:09:42 AM
yeah there are ways, just gotta find them :P

recently ive been messing with the MSMG toolkit which can slim down the bloat stuff within a windows ISO, remove/add features, disable stuff, disable Cortana, disable updates etc, another good program to look at is win reducer ex100 x64bit, does some of the same things to a windows ISO but has a GUI instead of command line type txt.

I know this wont help ya now but for future it could be very helpful


Title: Re: Stop Windows 10 Update
Post by: CryptoWatcher420 on February 04, 2018, 11:25:16 AM
Stop Windows Update #DoubleCheck

In RUN type “services.msc“, the services page will be open

Search for “Windows Update“

Click “Stop” if status is “Live” or “Checking/Running“

Select “Disabled” on “Startup type“

Apply & Restart

Do it again and make sure that it is disabled

Also if you want you can disable more services..


Title: Re: Stop Windows 10 Update
Post by: Vann on February 04, 2018, 11:32:34 AM
I'm running Windows 10 v1709 with the latest updates on 3 rigs. Claymore and other miners are working fine. It may be Windows is updating your graphics driver. I disable drivers updates in Windows Update.

gpedit ==> Computer Configuration ==> Administrative Templates ==> Windows Components ==> Windows Update and set 'Do not include drivers with Windows Update' to enabled.


Title: Re: Stop Windows 10 Update
Post by: tg88 on February 04, 2018, 11:47:08 AM
I'm running Windows 10 v1709 with the latest updates on 3 rigs. Claymore and other miners are working fine. It may be Windows is updating your graphics driver. I disable drivers updates in Windows Update.

gpedit ==> Computer Configuration ==> Administrative Templates ==> Windows Components ==> Windows Update and set 'Do not include drivers with Windows Update' to enabled.

Or it is also possible by the following path:

Tap/Click the Start Button and search for system -> When System Properties opens up click/tap on Advanced system settings. -> Click/Tap on the Hardware tab (#1) and then click/tap Device Installation Settings -> Click/Tap on No, let me choose what to do to expand your other options. -> set "Never install driver software from windows update"


Title: Re: Stop Windows 10 Update
Post by: smartcrypto on February 04, 2018, 12:07:03 PM
there's a tool i use. 'destroy windows 10'. works well for blocking/disabling stuff. But don't know their reputation.


Title: Re: Stop Windows 10 Update
Post by: aragom on February 04, 2018, 12:15:45 PM
any answer?


Title: Re: Stop Windows 10 Update
Post by: S_Natural on February 04, 2018, 12:38:39 PM
any answer?

Run this script and say good bye to Auto Update  :)

Code:
@echo off

title Disable/Enable Windows 10 Automatic Updates
color 1f
:Begin UAC check and Auto-Elevate Permissions
:-------------------------------------
REM  --> Check for permissions
>nul 2>&1 "%SYSTEMROOT%\system32\cacls.exe" "%SYSTEMROOT%\system32\config\system"

REM --> If error flag set, we do not have admin.
if '%errorlevel%' NEQ '0' (
echo:
echo   Requesting Administrative Privileges...
echo   Press YES in UAC Prompt to Continue
echo:

    goto UACPrompt
) else ( goto gotAdmin )

:UACPrompt
    echo Set UAC = CreateObject^("Shell.Application"^) > "%temp%\getadmin.vbs"
    echo UAC.ShellExecute "%~s0", "", "", "runas", 1 >> "%temp%\getadmin.vbs"

    "%temp%\getadmin.vbs"
    exit /B

:gotAdmin
    if exist "%temp%\getadmin.vbs" ( del "%temp%\getadmin.vbs" )
    pushd "%CD%"
    CD /D "%~dp0"
:--------------------------------------

:Check Windows Version
wmic os get version | find /i "10.">nul 2>nul
if %errorlevel% neq 0 GOTO :Not10

:Check the key:
reg query "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" /v "NoAutoUpdate"|find /i "0x1">NUL 2>NUL
if %errorlevel% neq 0 GOTO :KEYOFF

:KEYON
echo ============================================================
echo Automatic Updates are currently disabled.
echo Would you like to re-enable them? (Y/N)
echo ============================================================
echo.
choice /c yn /n
If %ERRORLEVEL% NEQ 1 GOTO :QUIT

echo Attempting to shut down the Windows Update service if it's running
net stop wuauserv>NUL 2>NUL
echo.

Echo Changing Registry key
REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" /v "NoAutoUpdate" /D 0 /T REG_DWORD /F>NUL 2>NUL
IF %ERRORLEVEL% NEQ 0 GOTO :ERROR
Echo.

Echo Automatic Updates have been enabled
Echo.
goto :QUIT


:KEYOFF
echo ============================================================
echo Automatic Updates are currently enabled.
echo Would you like to disable them? (Y/N)
echo ============================================================
echo.
choice /c yn /n
If %ERRORLEVEL% NEQ 1 GOTO :QUIT

echo Attempting to shut down the Windows Update service if it's running
net stop wuauserv>NUL 2>NUL
echo.

Echo Changing Registry key
REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" /v "NoAutoUpdate" /D 1 /T REG_DWORD /F>NUL 2>NUL
IF %ERRORLEVEL% NEQ 0 GOTO :ERROR
Echo.

Echo Automatic Updates have been disabled
Echo.
goto :QUIT


:QUIT
echo ============================================================
echo Press any key to exit...
echo ============================================================
pause>NUL
goto :EOF

:ERROR
echo ============================================================
echo The script ran into an unexpected error setting reg key.
echo Press any key to exit...
echo ============================================================
pause>NUL
goto :EOF

:Not10
echo ============================================================
echo This script is only designed for Windows 10...
echo Press any key to exit...
echo ============================================================
pause>NUL
goto :EOF

Copy this code to notepad -> save as *.cmd -> run. Good luck man :)


Title: Re: Stop Windows 10 Update
Post by: BitBustah on February 04, 2018, 02:27:08 PM
I tried everything. Editing the registry (regedit), changing the policies... Nothing helped.

I'm now using this one:
http://www.site2unblock.com/win-updates-disabler/

Updates stopped so far. :)


Title: Re: Stop Windows 10 Update
Post by: qualialibre on March 08, 2018, 07:05:37 PM
Here what worked for me (So far, cuz you never knows with these bozos)

Task Scheduler
 -Goto Task Scheduler Library|Windows|UpdateOrchestrator.
 -Disable Combined Scan Download...
 -Disable Maintenance Install
 -Disable Reboot
 -Disable Resume On Boot
 -Disable Schedule Scan
 -Disable UpdateAssistant
 -Disable UpdateAssistantCalenddarRun
 -Disable UpdateAssistantWakeupRun
 -Goto Task Scheduler Library|Windows|WindowsUpdate
 -Disable Automatic App Update
 -Disable Scheduled Start

Run service cpl (start services.msc)
 -Goto "Windows Update" and press Stop, then set it manual or disable it

Goto Installed Applications
 -Uninstall Update Assistant

Reboot...


Title: Re: Stop Windows 10 Update
Post by: fanatic26 on March 08, 2018, 07:24:07 PM
The fix is really easy. Run Linux. Windows is crap for mining and it wont get any better.

You will no longer have:

Driver problems
Reliability problems
Windows update breaking things
Random blue screens
Licensing issues



Example of one of my linux miners:

[/root]:# uptime
 14:22:55 up 152 days, 20:40,  2 users,  load average: 0.78, 0.80, 1.06
[Agent: 11152 (Running) Total HR: [2.71Kh/s] Miners running [1] GPUs [AAAAAA]]


Title: Re: Stop Windows 10 Update
Post by: BitBustah on March 08, 2018, 07:28:40 PM
The fix is really easy. Run Linux. Windows is crap for mining and it wont get any better.

You will no longer have:

Driver problems
Reliability problems
Windows update breaking things
Random blue screens
Licensing issues



Example of one of my linux miners:

[/root]:# uptime
 14:22:55 up 152 days, 20:40,  2 users,  load average: 0.78, 0.80, 1.06
[Agent: 11152 (Running) Total HR: [2.71Kh/s] Miners running [1] GPUs [AAAAAA]]


I only have 4 GPUs running, so maybe it's just me...

Driver problems - Never had one.
Reliability problems - Never had one.
Windows update breaking things - The tool fixed it, so.. No problems there.
Random blue screens  - Never had one.
Licensing issues  - Never had one. Had an unused license.


There's no reason to switch to Linux. For newbies Linux might be even more difficult to understand.


Title: Re: Stop Windows 10 Update
Post by: NeuroticFish on March 08, 2018, 07:49:56 PM
Windows 10 wants to make sure people does updates, since updates means better safety. Period.
There are in-built ways if you want to avoid this, but they are not easy to find.

I think that easiest way is Pause Updates. At windows updates -> advanced options, you can pause the updates for a month and a bit. After a month you should really do a short maintenance and install those missing updates and Win10 will be happy again. Just make sure you also do an update before doing this.

Another possible option is to declare your connection "metered", but I am not 100% certain if that helps out of the box or you need more settings.


Title: Re: Stop Windows 10 Update
Post by: gsrcrxsi314 on March 08, 2018, 08:20:29 PM
The fix is really easy. Run Linux. Windows is crap for mining and it wont get any better.

You will no longer have:

Driver problems
Reliability problems
Windows update breaking things
Random blue screens
Licensing issues



Example of one of my linux miners:

[/root]:# uptime
 14:22:55 up 152 days, 20:40,  2 users,  load average: 0.78, 0.80, 1.06
[Agent: 11152 (Running) Total HR: [2.71Kh/s] Miners running [1] GPUs [AAAAAA]]


or run Windows 10.

you will no longer have:

lower hashrates
poor overclocking tools
poor bios flashing tools
less access to windows only software (certain miners, nicehash, etc)

all of the problems you listed for windows are not real problems and easily solved or avoided.

Driver problems --> dont install shit drivers and properly uninstall any old drivers (try and tell me how linux nvidia drivers are in any way better/more stable, I'll hear your response when i'm finished laughing)
Reliability problems --> again none. this only becomes a problem with people who overclock too much or have conflicting driver versions that werent properly uninstalled
Windows update breaking things --> can be turned off without too much trouble. and even ubuntu has pesky update warnings and will auto-install if you dont stop it. linux isnt a magical savior here
Random blue screens --> doesnt happen on stable setups. see the same point about reliability
Licensing issues --> windows 10 is free to use. there is ZERO functional change by simply not activating the software. about the only thing you cant do is change the desktop background.  :o

and 152 days uptime on a simple system with 1 GPU thats likely stock clocked???? much wow. very impress  ::).


Title: Re: Stop Windows 10 Update
Post by: Ultegra134 on March 08, 2018, 09:16:13 PM
my windows 10 is updating itself. and claymore mining isnt working in new version. everytime it is updating i retruned back.

i am closing all updates. i tried to stop services.msc, gpedit.msc. but everytime it finds a way and is starting own by own. i couldnt stop to update it.

is there any way to hardstop it?

or
is there anyway to mining with new version

anyone has with this trouble?
Had this issue myself too, you don't have the option to disable them through the windows 10 interface. However, you can disable them through windows' services.

This is the guide I followed myself

https://www.easeus.com/todo-backup-resource/how-to-stop-windows-10-from-automatically-update.html


Title: Re: Stop Windows 10 Update
Post by: fanatic26 on March 08, 2018, 10:05:30 PM

or run Windows 10.

you will no longer have:

lower hashrates
poor overclocking tools
poor bios flashing tools
less access to windows only software (certain miners, nicehash, etc)

all of the problems you listed for windows are not real problems and easily solved or avoided.

Driver problems --> dont install shit drivers and properly uninstall any old drivers (try and tell me how linux nvidia drivers are in any way better/more stable, I'll hear your response when i'm finished laughing)
Reliability problems --> again none. this only becomes a problem with people who overclock too much or have conflicting driver versions that werent properly uninstalled
Windows update breaking things --> can be turned off without too much trouble. and even ubuntu has pesky update warnings and will auto-install if you dont stop it. linux isnt a magical savior here
Random blue screens --> doesnt happen on stable setups. see the same point about reliability
Licensing issues --> windows 10 is free to use. there is ZERO functional change by simply not activating the software. about the only thing you cant do is change the desktop background.  :o

and 152 days uptime on a simple system with 1 GPU thats likely stock clocked???? much wow. very impress  ::).



Actually I manage about 1500 GPU rigs. 350 of em are Windows. Guess which ones require the most attention and weekly reboots? (hint: its not linux)

My advice comes from having more mining experience than any 500 average people combined on this forum.


lower hashrates - no? Go ahead and try and prove it
poor overclocking tools - My machines are all upclocked via simple scripts
poor bios flashing tools - Polaris BIOS editor works just fine in linux
less access to windows only software (certain miners, nicehash, etc) - Nicehash is for the lazy and ignorant and my linux machines each support at least 18 different miners with the ability to add more. There is nothing useful on Windows that doesnt work in linux.

P.S. Go count the threads of people with windows problems versus linux and tell me windows is the superior choice....





Title: Re: Stop Windows 10 Update
Post by: qualialibre on March 08, 2018, 10:56:56 PM

or run Windows 10.

you will no longer have:

lower hashrates
poor overclocking tools
poor bios flashing tools
less access to windows only software (certain miners, nicehash, etc)

all of the problems you listed for windows are not real problems and easily solved or avoided.

Driver problems --> dont install shit drivers and properly uninstall any old drivers (try and tell me how linux nvidia drivers are in any way better/more stable, I'll hear your response when i'm finished laughing)
Reliability problems --> again none. this only becomes a problem with people who overclock too much or have conflicting driver versions that werent properly uninstalled
Windows update breaking things --> can be turned off without too much trouble. and even ubuntu has pesky update warnings and will auto-install if you dont stop it. linux isnt a magical savior here
Random blue screens --> doesnt happen on stable setups. see the same point about reliability
Licensing issues --> windows 10 is free to use. there is ZERO functional change by simply not activating the software. about the only thing you cant do is change the desktop background.  :o

and 152 days uptime on a simple system with 1 GPU thats likely stock clocked???? much wow. very impress  ::).



Actually I manage about 1500 GPU rigs. 350 of em are Windows. Guess which ones require the most attention and weekly reboots? (hint: its not linux)

My advice comes from having more mining experience than any 500 average people combined on this forum.


lower hashrates - no? Go ahead and try and prove it
poor overclocking tools - My machines are all upclocked via simple scripts
poor bios flashing tools - Polaris BIOS editor works just fine in linux
less access to windows only software (certain miners, nicehash, etc) - Nicehash is for the lazy and ignorant and my linux machines each support at least 18 different miners with the ability to add more. There is nothing useful on Windows that doesnt work in linux.

P.S. Go count the threads of people with windows problems versus linux and tell me windows is the superior choice....





Thx for your input man !

I was looking for someone with exp in massive mining. I run a small farm and win10 is a psycho princess that's constantly in needs of attention. I hate it, my life is hell because of those vision-less and under-competent lobotomized engineers working at M$ !

I am looking for a linux setup, but my main concern is security. It is so easy to hack linux that I'm afraid to wake-up one morning with a farm of zombie rigs, or worst, be clogged with trojans all over the farm...

The minue I feal I can trust Lunix, I will ditch this disease trash of OS that is win 10.

Any input on that would be appreciated.



Title: Re: Stop Windows 10 Update
Post by: gsrcrxsi314 on March 08, 2018, 11:16:53 PM

or run Windows 10.

you will no longer have:

lower hashrates
poor overclocking tools
poor bios flashing tools
less access to windows only software (certain miners, nicehash, etc)

all of the problems you listed for windows are not real problems and easily solved or avoided.

Driver problems --> dont install shit drivers and properly uninstall any old drivers (try and tell me how linux nvidia drivers are in any way better/more stable, I'll hear your response when i'm finished laughing)
Reliability problems --> again none. this only becomes a problem with people who overclock too much or have conflicting driver versions that werent properly uninstalled
Windows update breaking things --> can be turned off without too much trouble. and even ubuntu has pesky update warnings and will auto-install if you dont stop it. linux isnt a magical savior here
Random blue screens --> doesnt happen on stable setups. see the same point about reliability
Licensing issues --> windows 10 is free to use. there is ZERO functional change by simply not activating the software. about the only thing you cant do is change the desktop background.  :o

and 152 days uptime on a simple system with 1 GPU thats likely stock clocked???? much wow. very impress  ::).



Actually I manage about 1500 GPU rigs. 350 of em are Windows. Guess which ones require the most attention and weekly reboots? (hint: its not linux)

My advice comes from having more mining experience than any 500 average people combined on this forum.


lower hashrates - no? Go ahead and try and prove it
poor overclocking tools - My machines are all upclocked via simple scripts
poor bios flashing tools - Polaris BIOS editor works just fine in linux
less access to windows only software (certain miners, nicehash, etc) - Nicehash is for the lazy and ignorant and my linux machines each support at least 18 different miners with the ability to add more. There is nothing useful on Windows that doesnt work in linux.

P.S. Go count the threads of people with windows problems versus linux and tell me windows is the superior choice....





I’ve already seen first hand that hashrates are lower on Linux. My cards are all setup via BIOS and once I find settings that work and are stable, the BIOS gets flashed and I don’t have to mess with software clocks. Cards in windows run 28MH, load the same exact cards up in Linux (ethos or otherwise) and they run 25/26Mh.

Linux is slower for me on ETH. And MANY people will confirm the same.

The main take away from my post is that Windows is not inherently problematic like you suggest. It’s just not. It’s very stable if you don’t do stupid things and know to disable updates and have clean driver installs. I never have to reboot my machines for ANY of the problems you listed. I’ve only had reboots due to power outages, or stopping the miner to try different software or drivers or whatever (I’m a tinkerer). If your windows systems require weekly Trevor’s then you’re doing it wrong and your systems aren’t truly stable. Too much OC, software issues caused by incomplete driver installs/cleans, software issues caused by conflicting software packages, bad hardware, take your pick.


Title: Re: Stop Windows 10 Update
Post by: uhro on May 15, 2018, 02:13:46 PM
This works for me...
Windows 10 in various scenarios will turn windows update back if all you do is disable the service.
To disable updates in Windows 10 is go to the Windows update Service property window, disable it, then go to the Log On tab at the top and click This account: and type ".\Guest"(no quotes), clear the password fields and click apply.
You will get a message saying Guest has been enabled to do this, but the hitch is that "Guest" doesn't have permission to do it so Windows update is basically disabled no matter what unless you switch it back which is just as easy.


Title: Re: Stop Windows 10 Update
Post by: lx-ctf on May 15, 2018, 03:44:10 PM
https://github.com/DeadManWalkingTO/Windows10MiningTweaksDmW

Ran on my all of my win 10 machines in my farm.


Title: Re: Stop Windows 10 Update
Post by: tg88 on May 15, 2018, 05:47:59 PM
https://github.com/DeadManWalkingTO/Windows10MiningTweaksDmW

Ran on my all of my win 10 machines in my farm.

Interesting, I did this manually.

1. Registry Tweaks                                                         
2. Removing Services                                                       
3. Removing Scheduled Tasks                                               
4. Removing Windows Default Apps                                           
5. Disable / Remove OneDrive                                               
6. Blocking Telemetry Servers                                             
7. Blocking More Windows Servers                                           
8. Disable Windows Error Recovery on Startup                               
9. Internet Explorer 11 Tweaks                                             
10. Libraries Tweaks                                                       
11. Windows Update Tweaks                                                 
12. Windows Defender Tweaks   


Title: Re: Stop Windows 10 Update
Post by: remona on October 25, 2018, 07:30:23 AM
 If you do not know where is the file explorer then you can now open file explorer windows 10 (http://windowstuts.net/fileexplorer) here easily without any payment.


Title: Re: Stop Windows 10 Update
Post by: sxemini on October 25, 2018, 09:26:36 AM

or run Windows 10.

you will no longer have:

lower hashrates
poor overclocking tools
poor bios flashing tools
less access to windows only software (certain miners, nicehash, etc)

all of the problems you listed for windows are not real problems and easily solved or avoided.

Driver problems --> dont install shit drivers and properly uninstall any old drivers (try and tell me how linux nvidia drivers are in any way better/more stable, I'll hear your response when i'm finished laughing)
Reliability problems --> again none. this only becomes a problem with people who overclock too much or have conflicting driver versions that werent properly uninstalled
Windows update breaking things --> can be turned off without too much trouble. and even ubuntu has pesky update warnings and will auto-install if you dont stop it. linux isnt a magical savior here
Random blue screens --> doesnt happen on stable setups. see the same point about reliability
Licensing issues --> windows 10 is free to use. there is ZERO functional change by simply not activating the software. about the only thing you cant do is change the desktop background.  :o

and 152 days uptime on a simple system with 1 GPU thats likely stock clocked???? much wow. very impress  ::).



Actually I manage about 1500 GPU rigs. 350 of em are Windows. Guess which ones require the most attention and weekly reboots? (hint: its not linux)

My advice comes from having more mining experience than any 500 average people combined on this forum.


lower hashrates - no? Go ahead and try and prove it
poor overclocking tools - My machines are all upclocked via simple scripts
poor bios flashing tools - Polaris BIOS editor works just fine in linux
less access to windows only software (certain miners, nicehash, etc) - Nicehash is for the lazy and ignorant and my linux machines each support at least 18 different miners with the ability to add more. There is nothing useful on Windows that doesnt work in linux.

P.S. Go count the threads of people with windows problems versus linux and tell me windows is the superior choice....





You manage 1500 GPU Rigs and you must weekly reboot windows? you are a really bad miner. My windows10 runs faster then linux (ethos), more stable than linux, i need no reboot for over 2 month (no miner restarts or what ever).

Do the right job, then windows works fantastic. i work with windows 1703, 1803, 1809 and alle works perfect. my windows make no updates, you must find the right solution ;)

Windows Hashrate 185mh with 6x RX 570, no hardware errors
Ethos Hashrate 178mh with 6x RX 570, i must clock down the cards. with the same speed as in windows, the miner stops working after several hours.

This is my opinion and my experience, i am not a linux hater, but i can´t read this shit about windows, from people who do not work properly with windows.


Title: Re: Stop Windows 10 Update
Post by: kineda on October 25, 2018, 11:41:22 AM
easy answer that worked for me is on the windows update service on the Log On tab you set it to .\guest and make up a wrong pw.  everytime it will try to run it will fail logon and not start.


Title: Re: Stop Windows 10 Update
Post by: netto7 on October 25, 2018, 01:05:02 PM
last week im clean install new windows 10 with last update 1809.

it work well i think it fast more than last version 1803


Title: Re: Stop Windows 10 Update
Post by: fanatic26_ on October 25, 2018, 10:29:46 PM
You manage 1500 GPU Rigs and you must weekly reboot windows? you are a really bad miner. My windows10 runs faster then linux (ethos), more stable than linux, i need no reboot for over 2 month (no miner restarts or what ever).

Do the right job, then windows works fantastic. i work with windows 1703, 1803, 1809 and alle works perfect. my windows make no updates, you must find the right solution ;)

Windows Hashrate 185mh with 6x RX 570, no hardware errors
Ethos Hashrate 178mh with 6x RX 570, i must clock down the cards. with the same speed as in windows, the miner stops working after several hours.

This is my opinion and my experience, i am not a linux hater, but i can´t read this shit about windows, from people who do not work properly with windows.

I love all you keyboard warriors that talk shit with no practical experience. Im so bad I run one of the largest crypto fams in North America! Good job with your couple rigs running Windows. Im sorry you dont know enough about linux to tweak and configure it for performance, but you really shouldnt claim something is better just because you dont understand how to use the other product.

Show me your Windows miners that can do this:

Last login: Fri Oct 19 12:16:56 2018 from 10.30.0.20
[Agent: GMiner11154 (Running) Total HR: [176.10Mh/s] Miners running [1] GPUs [AAAAAA]]
[06:26 PM][Uptime: 245d 17:22][root@GMiner11245(10.10.111.54)]




Title: Re: Stop Windows 10 Update
Post by: hows.tech on April 15, 2019, 12:46:04 PM
my windows 10 is updating itself. and claymore mining isnt working in new version. everytime it is updating i retruned back.

i am closing all updates. i tried to stop services.msc, gpedit.msc. but everytime it finds a way and is starting own by own. i couldnt stop to update it.

is there any way to hardstop it?

or
is there anyway to mining with new version

anyone has with this trouble?


See this link, have tried this and solved in a couple of minutes : Disable Windows 10 Updates (https://www.hows.tech/2019/04/disable-windows-10-update.html)


Title: Re: Stop Windows 10 Update
Post by: raghovsing34 on April 15, 2019, 12:52:18 PM
I tried everything. Editing the registry (regedit), changing the policies... Nothing helped.

I'm now using this one:
http://www.site2unblock.com/win-updates-disabler/

Updates stopped so far. :)

I also faced same problem on my windows 10. But after using is my problem is solved very easily. I was very happy when auto updates is stopped.


Title: Re: Stop Windows 10 Update
Post by: WickedPigeon on April 15, 2019, 02:00:42 PM
I use O&O ShutUp 10 (on 6 rigs) and find it to be very good.

https://www.oo-software.com/en/shutup10 (https://www.oo-software.com/en/shutup10)


Title: Re: Stop Windows 10 Update
Post by: sxemini on April 15, 2019, 02:06:09 PM
You manage 1500 GPU Rigs and you must weekly reboot windows? you are a really bad miner. My windows10 runs faster then linux (ethos), more stable than linux, i need no reboot for over 2 month (no miner restarts or what ever).

Do the right job, then windows works fantastic. i work with windows 1703, 1803, 1809 and alle works perfect. my windows make no updates, you must find the right solution ;)

Windows Hashrate 185mh with 6x RX 570, no hardware errors
Ethos Hashrate 178mh with 6x RX 570, i must clock down the cards. with the same speed as in windows, the miner stops working after several hours.

This is my opinion and my experience, i am not a linux hater, but i can´t read this shit about windows, from people who do not work properly with windows.

I love all you keyboard warriors that talk shit with no practical experience. Im so bad I run one of the largest crypto fams in North America! Good job with your couple rigs running Windows. Im sorry you dont know enough about linux to tweak and configure it for performance, but you really shouldnt claim something is better just because you dont understand how to use the other product.

Show me your Windows miners that can do this:

Last login: Fri Oct 19 12:16:56 2018 from 10.30.0.20
[Agent: GMiner11154 (Running) Total HR: [176.10Mh/s] Miners running [1] GPUs [AAAAAA]]
[06:26 PM][Uptime: 245d 17:22][root@GMiner11245(10.10.111.54)]





LOL yes and you talk shit with no practical experience XD

You need 2 bitcointalk accounts? Lost your password and can´t recover?

245d runtime, my rigs can do that easily, but i update my miners with every new release. so normal runtime is 1 - 2 month easily.

The fix is really easy. Run Linux. Windows is crap for mining and it wont get any better.

You will no longer have:

Driver problems
Reliability problems
Windows update breaking things
Random blue screens
Licensing issues



Example of one of my linux miners:

[/root]:# uptime
 14:22:55 up 152 days, 20:40,  2 users,  load average: 0.78, 0.80, 1.06
[Agent: 11152 (Running) Total HR: [2.71Kh/s] Miners running [1] GPUs [AAAAAA]]


This list is completely bullshit, but yes you are the man dude lol


And why the hell you know how many rigs i have? I have never write it, in this thread. Oh you didn´t know that? So why you believe i have only a couple?
You say you manage 1500 rigs, but your answers let me think a little bit different XD


Title: Re: Stop Windows 10 Update
Post by: GhostWithin on April 23, 2019, 07:48:55 PM
You manage 1500 GPU Rigs and you must weekly reboot windows? you are a really bad miner. My windows10 runs faster then linux (ethos), more stable than linux, i need no reboot for over 2 month (no miner restarts or what ever).

Do the right job, then windows works fantastic. i work with windows 1703, 1803, 1809 and alle works perfect. my windows make no updates, you must find the right solution ;)

Windows Hashrate 185mh with 6x RX 570, no hardware errors
Ethos Hashrate 178mh with 6x RX 570, i must clock down the cards. with the same speed as in windows, the miner stops working after several hours.

This is my opinion and my experience, i am not a linux hater, but i can´t read this shit about windows, from people who do not work properly with windows.

I love all you keyboard warriors that talk shit with no practical experience. Im so bad I run one of the largest crypto fams in North America! Good job with your couple rigs running Windows. Im sorry you dont know enough about linux to tweak and configure it for performance, but you really shouldnt claim something is better just because you dont understand how to use the other product.

Show me your Windows miners that can do this:

Last login: Fri Oct 19 12:16:56 2018 from 10.30.0.20
[Agent: GMiner11154 (Running) Total HR: [176.10Mh/s] Miners running [1] GPUs [AAAAAA]]
[06:26 PM][Uptime: 245d 17:22][root@GMiner11245(10.10.111.54)]




I also think that there is no better operating system than Linux, but for some reason many people are afraid to switch to it. although I dont see any advantage in favor of windows. Well, except that updating the firmware on a video card is a little more convenient in Windows


Title: Re: Stop Windows 10 Update
Post by: Anonylz on April 23, 2019, 08:05:37 PM
This works for me...
Windows 10 in various scenarios will turn windows update back if all you do is disable the service.
To disable updates in Windows 10 is go to the Windows update Service property window, disable it, then go to the Log On tab at the top and click This account: and type ".\Guest"(no quotes), clear the password fields and click apply.
You will get a message saying Guest has been enabled to do this, but the hitch is that "Guest" doesn't have permission to do it so Windows update is basically disabled no matter what unless you switch it back which is just as easy.

Really thanks for this very easy and clear instruction to disable windows 10, this has been a bit annoying to me to be honest, i think Microsoft should give users the ability to chose whether they want to update windows or not, not forcing it on users whether it is convenient for them to do so or not, i will be using this guide to disable windows 10 until when am ready to update.


Title: Re: Stop Windows 10 Update
Post by: dunfida on April 23, 2019, 08:24:09 PM
This works for me...
Windows 10 in various scenarios will turn windows update back if all you do is disable the service.
To disable updates in Windows 10 is go to the Windows update Service property window, disable it, then go to the Log On tab at the top and click This account: and type ".\Guest"(no quotes), clear the password fields and click apply.
You will get a message saying Guest has been enabled to do this, but the hitch is that "Guest" doesn't have permission to do it so Windows update is basically disabled no matter what unless you switch it back which is just as easy.

Really thanks for this very easy and clear instruction to disable windows 10, this has been a bit annoying to me to be honest, i think Microsoft should give users the ability to chose whether they want to update windows or not, not forcing it on users whether it is convenient for them to do so or not, i will be using this guide to disable windows 10 until when am ready to update.

This is the problem with windows 10 which you cant really completely disable auto updates which it would automatically launch without your notice even if you have tried all
the said tutorials of disabling on the entire internet. Services.msc etc. etc. but it would still trigger out soon,maybe this is part of the OS which it cant really be disable completely.
I tried it all but still i end up on updating thats why windows 10 suck.I go back to windows7.


Title: Re: Stop Windows 10 Update
Post by: nsummy on April 23, 2019, 08:39:21 PM
Hahah I love this forum.  Some bot shows up and bumps a thread from a year ago, another bot responds, then someone comes in and continues a 6 month old argument  ;D ;D ;D


Title: Re: Stop Windows 10 Update
Post by: nsummy on April 23, 2019, 08:46:14 PM
This works for me...
Windows 10 in various scenarios will turn windows update back if all you do is disable the service.
To disable updates in Windows 10 is go to the Windows update Service property window, disable it, then go to the Log On tab at the top and click This account: and type ".\Guest"(no quotes), clear the password fields and click apply.
You will get a message saying Guest has been enabled to do this, but the hitch is that "Guest" doesn't have permission to do it so Windows update is basically disabled no matter what unless you switch it back which is just as easy.

Really thanks for this very easy and clear instruction to disable windows 10, this has been a bit annoying to me to be honest, i think Microsoft should give users the ability to chose whether they want to update windows or not, not forcing it on users whether it is convenient for them to do so or not, i will be using this guide to disable windows 10 until when am ready to update.

 Don't get me wrong, updates on Windows 10 are an absolute disaster and its indefensible that the OS STILL will reboot on its own without a bunch of extreme hacks that may or may not work.  That said, the arguments on here between windows and linux are comparing apples and oranges.  The problem is that miners are using a consumer OS as a server.  If you require maximum uptime then you really need to be using Windows Server.  Its much more manageable and is actually designed to run for long periods without reboots.


Title: Re: Stop Windows 10 Update
Post by: nsummy on April 23, 2019, 08:52:55 PM
You manage 1500 GPU Rigs and you must weekly reboot windows? you are a really bad miner. My windows10 runs faster then linux (ethos), more stable than linux, i need no reboot for over 2 month (no miner restarts or what ever).

Do the right job, then windows works fantastic. i work with windows 1703, 1803, 1809 and alle works perfect. my windows make no updates, you must find the right solution ;)

Windows Hashrate 185mh with 6x RX 570, no hardware errors
Ethos Hashrate 178mh with 6x RX 570, i must clock down the cards. with the same speed as in windows, the miner stops working after several hours.

This is my opinion and my experience, i am not a linux hater, but i can´t read this shit about windows, from people who do not work properly with windows.

I love all you keyboard warriors that talk shit with no practical experience. Im so bad I run one of the largest crypto fams in North America! Good job with your couple rigs running Windows. Im sorry you dont know enough about linux to tweak and configure it for performance, but you really shouldnt claim something is better just because you dont understand how to use the other product.

Show me your Windows miners that can do this:

Last login: Fri Oct 19 12:16:56 2018 from 10.30.0.20
[Agent: GMiner11154 (Running) Total HR: [176.10Mh/s] Miners running [1] GPUs [AAAAAA]]
[06:26 PM][Uptime: 245d 17:22][root@GMiner11245(10.10.111.54)]




I also think that there is no better operating system than Linux, but for some reason many people are afraid to switch to it. although I dont see any advantage in favor of windows. Well, except that updating the firmware on a video card is a little more convenient in Windows

The learning curve for linux is extremely steep, and many of the posters on here do not have deep technical knowledge to begin with.  I am a sys admin and before mining I had barely dabbled in linux just because it was so time consuming to learn.  There is a wealth of information out there, but even something simple as setting a static ip can take over 30 minutes of searching and reading if you have never done it before.  The world of mining has brought me from a novice linux user to an intermediate one haha.   Windows definitely has to be more convenient when it comes to overlocking and stuff like that.


Title: Re: Stop Windows 10 Update
Post by: WickedPigeon on April 23, 2019, 09:02:40 PM


I also think that there is no better operating system than Linux, but for some reason many people are afraid to switch to it. although I dont see any advantage in favor of windows. Well, except that updating the firmware on a video card is a little more convenient in Windows

The learning curve for linux is extremely steep, and many of the posters on here do not have deep technical knowledge to begin with.  I am a sys admin and before mining I had barely dabbled in linux just because it was so time consuming to learn.  There is a wealth of information out there, but even something simple as setting a static ip can take over 30 minutes of searching and reading if you have never done it before.  The world of mining has brought me from a novice linux user to an intermediate one haha.   Windows definitely has to be more convenient when it comes to overlocking and stuff like that.

Amen. I run a few mining rigs and Windows is a 'Love/Hate' thing. But it's the environment I work, live and mine in. So we it comes time to spending the extra hour or two to learn something, I find doing it in Windows has extra benefits for me. Now, I totally get WHY Linux users love Linux, but it's a lot like religion - I got mine and you got yours.

Now, should we argue between Apple and Samsung  ;)

(Edit: BTW - I'm using the "Guest" fix along with O&O Shut Up 10. Great little fix!)


Title: Re: Stop Windows 10 Update
Post by: corrado25 on April 24, 2019, 07:39:38 AM
Had the same problem. First I could turn off updates on windows10, but then they started turning on themselves and when I stopped them again after a while, they turned on themselves again. How many I did not try to disconnect, none helped. I still decided to go back to Windows 7 and I'm not sorry at a


Title: Re: Stop Windows 10 Update
Post by: P00P135 on April 24, 2019, 08:16:19 AM
Been using this for over a year without any problems.  You're welcome https://www.novirusthanks.org/products/win-update-stop/


Title: Re: Stop Windows 10 Update
Post by: nars28 on April 24, 2019, 08:34:46 AM
This helped me on 1803 build win 10:

https://www.oo-software.com/en/shutup10


Title: Re: Stop Windows 10 Update
Post by: Lizzylove1 on April 24, 2019, 04:54:03 PM
My Window 10 was giving me a hell of constant updates and always asking me to wait when working. Although I use an external wireless network to connect to the internet, which is a MIFI, what I did was to click on the properties of the MIFI connection on my screen, this will lead to Network profile of my MIFI internet settings and connections, I just scroll down and meter network. I now determine when to update anything.


Title: Re: Stop Windows 10 Update
Post by: popolite11 on April 24, 2019, 05:41:39 PM
Had the same problem. First I could turn off updates on windows10, but then they started turning on themselves and when I stopped them again after a while, they turned on themselves again. How many I did not try to disconnect, none helped. I still decided to go back to Windows 7 and I'm not sorry at a
Windows 10 brings too many problems. Even if you stop these updates, they can be (magically?) started again. Windows 7 is OK, but as for me, Windows 8 works better and faster. I would recommend you Pro version.


Title: Re: Stop Windows 10 Update
Post by: Texxi on April 24, 2019, 07:14:04 PM
This poor guy is waiting over a year for the solution. Let me lift the veil of the mistery.

my windows 10 is updating itself. and claymore mining isnt working in new version. everytime it is updating i retruned back.

i am closing all updates. i tried to stop services.msc, gpedit.msc. but everytime it finds a way and is starting own by own. i couldnt stop to update it.

is there any way to hardstop it?

or
is there anyway to mining with new version

anyone has with this trouble?

Go to: C:\Windows\System32\Tasks_Migrated\Microsoft\Windows\UpdateOrchestrator

Take ownership of the file named 'Reboot' via Properties > Security > Advanced

Delete the file.  ;D

Create a new FOLDER named 'Reboot' and Write Lock protect it via Properties > Attributes > Read-only

Now your machine unlearned how to restart and will never turn off on its own ever again. 8)

(Additionally, you may want to use OOSU10 to turn off some unwanted windows services like updates.)

If my little trick helped to increase your profits, I'm happy to take a share.

BTCBTC 1Lop27BKz9a2M63uWMvRQ9KEwKWtp1FL6s BTCBTC


Title: Re: Stop Windows 10 Update
Post by: adterna on April 25, 2019, 04:45:48 AM
The same case happened to me, Windows 10 always updates itself and that made a problem for me, better looking for other mining methods from Claymore, and that's what I did, because Windows 10 was designed to update itself, so if we are mining using Windows to mine Claymore is very troublesome.


Title: Re: Stop Windows 10 Update
Post by: KryptoKai on April 25, 2019, 06:51:56 AM
In addition to blocking the windows update services i would suggest changing the location from which you receive those updates. Use policies and choose a fake proxy service and fake wsus address


Title: Re: Stop Windows 10 Update
Post by: TheHas on April 25, 2019, 08:48:00 AM
It isn't ideal, but an indirect way of stopping it is to leave not enough room on your hard drive for the update to come through (say less than a couple of gigs. Many mining rigs don't have much hard drive space).

It will try to update, then fail and ask you to uninstall/remove files to make enough space, and instead you just hit cancel and it gives up.

This is not recommended for security reasons but can be a short term fix - best bet is to update your claymore and drivers instead.

Also there are ways to just ask Windows to not update without asking your permission first as other people have said, so the above method is just in case that doesn't work for whatever weird Windows reason.


Title: Re: Stop Windows 10 Update
Post by: cepot9 on April 25, 2019, 09:20:25 AM
Windows 10 really sucks in the update because they always do automatic updates and very often it makes us run out of internet data and lose time while waiting for them to restart. you can turn off automatic updates via gpedit or by setting as metered connection in the wifi section so that the windows metics request updates will appear first notification or can't update automatically


Title: Re: Stop Windows 10 Update
Post by: lobat999 on April 29, 2019, 04:18:25 AM
my windows 10 is updating itself. and claymore mining isnt working in new version. everytime it is updating i retruned back.

i am closing all updates. i tried to stop services.msc, gpedit.msc. but everytime it finds a way and is starting own by own. i couldnt stop to update it.

is there any way to hardstop it?

or
is there anyway to mining with new version

anyone has with this trouble?

Maybe you could try to resolve your mining software first since security is paramount to us crypto enthusiasts. I mean if you disable updates with your Windows 10 especially with security updates, you run the risk of your system being compromised and no one would like to be in that situation especially if we store our sensitive files and data on that very same computer. I would not trade mining rewards to having peace of mind due to my system having more security.


Title: Re: Stop Windows 10 Update
Post by: Kasperiko on April 29, 2019, 06:18:36 AM
Windows 10 really sucks in the update because they always do automatic updates and very often it makes us run out of internet data and lose time while waiting for them to restart. you can turn off automatic updates via gpedit or by setting as metered connection in the wifi section so that the windows metics request updates will appear first notification or can't update automatically

These updates are one of the reasons why many users only dream of percussion on the macos system from apple. The option when you completely disable the update solves the problem. But we must understand that there may be security problems because of this.
And here you decide what is more important to you.


Title: Re: Stop Windows 10 Update
Post by: TheBottomTurtle on April 29, 2019, 11:15:14 AM
Here's the little-known bottom line, direct from Microsoft via https://support.microsoft.com/en-us/help/12373/windows-update-faq.  If you use any of the built in Windows tools to "stop" auto-updates they will eventually fail.

https://i.imgur.com/QMycEMI.jpg?1

In addition, even if you have used gpedit, forcibly stopped the process, tricked it into thinking you're on a metered connection, etc...MS will still silently push what they deem to be critical updates onto your computer using some vehicle other than the standard update process.  I haven't been able to figure out exactly how yet.  These mini-updates have never caused me problems with my mining, however they occasionally cause the usual windows boot partition to become non-bootable (presumably because of some of the other steps I've taken to neuter windows updates) until I manually select the windows partition from bios and it finishes the ninja update.  I'm assuming these are patching major vulnerabilities they've discovered (which would explain why they're never mentioned) so I doubt I would stop them even if I figured out how...but it would be nice to have the choice.


Title: Re: Stop Windows 10 Update
Post by: shiming on April 29, 2019, 11:23:37 AM
Windows10 does have this problem, you can consider Windows7, Microsoft for system security, I hope users do not turn off system updates, for their own consideration, we mine, you can consider Windows7 system, a good choice.


Title: Re: Stop Windows 10 Update
Post by: franciscoDC on April 29, 2019, 04:29:27 PM
This is actually annoying that you will restore again what the things are there such as mining apps, actually i still didnt encounter it but i think that there is a way that can stop the system update of your PC.


Title: Re: Stop Windows 10 Update
Post by: FFI2013 on April 29, 2019, 07:04:31 PM
All my rigs are dedicated mining rigs so there's no personal info on them that's why I didn't care about updates and had them disabled for a year with no trouble  than from no where they started updating again and every time I got my rigs set backup and running smooth bam a update I don't no how Microsoft started sneaking them in again but I switched to hiveos and haven't looked back those guys are great at keeping miners updated and problems fixed.


Title: Re: Stop Windows 10 Update
Post by: VasilyS on May 03, 2019, 04:38:48 PM
Had the same problem. First I could turn off updates on windows10, but then they started turning on themselves and when I stopped them again after a while, they turned on themselves again. How many I did not try to disconnect, none helped. I still decided to go back to Windows 7 and I'm not sorry at a
In addition, you have to switch off Schedule Scan in Windows 10. To disable Schedule Scan, you need to perform two steps:
1. In the command interpreter window as administrator execute command: takeown /f c:\windows\system32\usoclient.exe /a
 
2. After successful step one, disable all permissions in the properties of the file usoclient.exe, which is located in folder C:\Windows\System32


Title: Re: Stop Windows 10 Update
Post by: stomachgrowls on May 03, 2019, 07:30:45 PM
Windows 10 really sucks in the update because they always do automatic updates and very often it makes us run out of internet data and lose time while waiting for them to restart. you can turn off automatic updates via gpedit or by setting as metered connection in the wifi section so that the windows metics request updates will appear first notification or can't update automatically
Wont still work even you do put up the settings on notifying you before downloading any updates coz it is already being ran
while giving you out notification.It happens to my case thats why Windows 10 sucks.

If my little trick helped to increase your profits, I'm happy to take a share.

BTCBTC 1Lop27BKz9a2M63uWMvRQ9KEwKWtp1FL6s BTCBTC
Your post might be helpful and worthy to give out some merit(which would i possibly give)
but after seeing some asking for some tips and giving out an address then i do already change my mind.  ;D


Title: Re: Stop Windows 10 Update
Post by: RuMiner on May 03, 2019, 09:47:18 PM
just delete update service via sc delete wuauserv
it's very simple and without third-party apps
Windows won't start a service if it doesn't have it
https://funkyimg.com/i/2TDTc.jpg


Title: Re: Stop Windows 10 Update
Post by: corrado25 on May 04, 2019, 05:58:42 AM
just delete update service via sc delete wuauserv
it's very simple and without third-party apps
Windows won't start a service if it doesn't have it
https://funkyimg.com/i/2TDTc.jpg
Well, such a variant. You can of course delete it, but will not this deletion affect Windows work? I wonder if you have used this version yourself? And how after that works windows ?I just went to win7 and so solved the problem.I do not like that, without my consent, I get something installed on the PC


Title: Re: Stop Windows 10 Update
Post by: RuMiner on May 04, 2019, 03:37:50 PM
Well, such a variant. You can of course delete it, but will not this deletion affect Windows work? I wonder if you have used this version yourself? And how after that works windows ?I just went to win7 and so solved the problem.I do not like that, without my consent, I get something installed on the PC
I'm using it on all the rigs and home PC also. the only problem is when you really need update service: Once I had to install the old .NET version manually in command line because it wants to download it thru update service when you press to install it in contol panel


Title: Re: Stop Windows 10 Update
Post by: sukey2008 on May 04, 2019, 04:44:56 PM
I would really recommand windows 7, whatever which updates, I havn't got any issues with mining...
Thanks for the advice.. I will not install win10 now ...


Title: Re: Stop Windows 10 Update
Post by: Dewi Aries on May 10, 2019, 05:22:45 PM
I would really recommand windows 7, whatever which updates, I havn't got any issues with mining...
Thanks for the advice.. I will not install win10 now ...
I think it is good to use windows 7. As long it is only use for mining. But actually there are a lot of ways wo disable our windows 10 to auto updates because until now i still use it. I heard microsoft not support windows 7 again so it will have risk on security if we keep use it.


Title: Re: Stop Windows 10 Update
Post by: xsantana on May 11, 2019, 06:38:34 AM
my windows 10 is updating itself. and claymore mining isnt working in new version. everytime it is updating i retruned back.

i am closing all updates. i tried to stop services.msc, gpedit.msc. but everytime it finds a way and is starting own by own. i couldnt stop to update it.

is there any way to hardstop it?

or
is there anyway to mining with new version

anyone has with this trouble?

Is it true that the latest Windows 10 update will cause problems to mine claymore, so it won't work.
I didn't immediately activate my PC for updates, so I didn't know it.
If it's a problem, I won't update, until I find a solution to deal with


Title: Re: Stop Windows 10 Update
Post by: Dennicex on May 11, 2019, 09:07:35 AM
Is it true that the latest Windows 10 update will cause problems to mine claymore, so it won't work.
I didn't immediately activate my PC for updates, so I didn't know it.
If it's a problem, I won't update, until I find a solution to deal with
It seems to me that you can not turn off the update Windows. This is a threat to the security of the computer and the data stored on it. In particular, cryptocurrency.


Title: Re: Stop Windows 10 Update
Post by: sxemini on May 11, 2019, 10:54:08 AM
Is it true that the latest Windows 10 update will cause problems to mine claymore, so it won't work.
I didn't immediately activate my PC for updates, so I didn't know it.
If it's a problem, I won't update, until I find a solution to deal with
It seems to me that you can not turn off the update Windows. This is a threat to the security of the computer and the data stored on it. In particular, cryptocurrency.

Wrong, it is possible to turn off the windows updates, without third party tool or deleting a service lol.
My rigs make no updates for over a year.  ;)


Title: Re: Stop Windows 10 Update
Post by: TheHas on May 11, 2019, 11:23:13 AM
It is probably a lot more secure to just allow it to update.

Most updates have a security patch, so may as well let it happen.


Title: Re: Stop Windows 10 Update
Post by: profitgenerator212 on May 11, 2019, 01:56:35 PM
my windows 10 is updating itself. and claymore mining isnt working in new version. everytime it is updating i retruned back.

i am closing all updates. i tried to stop services.msc, gpedit.msc. but everytime it finds a way and is starting own by own. i couldnt stop to update it.

is there any way to hardstop it?

or
is there anyway to mining with new version

anyone has with this trouble?

This is my worry. I have a mining PC which is due for update but I am worried that it may give troubles and I will get to loose important data. I hope to read more on how you got solution to yours


Title: Re: Stop Windows 10 Update
Post by: Dewi Aries on May 11, 2019, 08:46:10 PM
I would really recommand windows 7, whatever which updates, I havn't got any issues with mining...
Thanks for the advice.. I will not install win10 now ...
I think it is good to use windows 7. As long it is only use for mining. But actually there are a lot of ways wo disable our windows 10 to auto updates because until now i still use it. I heard microsoft not support windows 7 again so it will have risk on security if we keep use it.

Microsoft will stop supporting Windows 7 in January 2020 so there also won't be security-updates for Windows 7 after January 14, 2020.
Right, maybe if only for mining purposes it is not really a problem if keep use windows 7. But if we use it to anything else, maybe better to update it first. Actually we can do some setting in windows 10.


Title: Re: Stop Windows 10 Update
Post by: huhhuh18 on May 11, 2019, 11:18:40 PM
Windows automatic virtually stops many Internet activities on computers. It's really messed me up sometimes and one sad thing is that it happens anytime i connect to an internet service. I really don't like using my laptop anymore...ugh!!
I would be glad if anyone could help get me a way to stop mine as well buddy!


Title: Re: Stop Windows 10 Update
Post by: WickedPigeon on May 11, 2019, 11:42:03 PM
Windows automatic virtually stops many Internet activities on computers. It's really messed me up sometimes and one sad thing is that it happens anytime i connect to an internet service. I really don't like using my laptop anymore...ugh!!
I would be glad if anyone could help get me a way to stop mine as well buddy!
I use this on a lot of computers. Let’s me control when or if I update my Windows 10.
Works great.
https://www.oo-software.com/en/shutup10 (https://www.oo-software.com/en/shutup10)


Title: Re: Stop Windows 10 Update
Post by: klaaas on May 12, 2019, 08:52:38 AM
Microsoft announced to stop with the forced updates for now. It was annoying at least on headless miner boxes. more can be read about it here (https://www.windowscentral.com/microsoft-will-no-longer-force-windows-10-feature-updates-users).


Title: Re: Stop Windows 10 Update
Post by: sxemini on February 06, 2020, 07:58:52 AM
I would really recommand windows 7, whatever which updates, I havn't got any issues with mining...
Thanks for the advice.. I will not install win10 now ...

Windows 10 is very unstable, so it is better to install windows 7 and you will not have any problems. The fact is that I had a small mining farm and the whole system rested on Windows 10. Recently I received updates and after that I also received error 0x800f0831 in the set. I searched for a long time how to solve this problem and found instructions on the site. The problem is that I had to roll back the updates and reinstalled the entire mining system. So do not repeat my mistakes!

the error is behind your screen and not windows10  :P :D

Disable windows10 updates takes around 1minute.