Godlike Productions - Discussion Forum
Users Online Now: 1,598 (Who's On?)Visitors Today: 129,539
Pageviews Today: 176,292Threads Today: 83Posts Today: 749
01:27 AM


Rate this Thread

Absolute BS Crap Reasonable Nice Amazing
 

If you are re-installing windows 7, use WSUS offline update instead of windows updates or it will take forever.

 
Anonymous Coward
User ID: 13127957
United States
03/04/2016 08:24 PM
Report Abusive Post
Report Copyright Violation
If you are re-installing windows 7, use WSUS offline update instead of windows updates or it will take forever.
I recently had to reinstall windows 7 and after starting the updates it took over 8 hours to update all the files using windows update.

Found this utility that will download ALL the updates and then you can install them.

[link to download.wsusoffline.net]

It took less time than using windows update.

I thought I would pass this tip along to everyone if you don't want to wait an entire day just to update your reinstall of windows 7
Anonymous Coward (OP)
User ID: 13127957
United States
03/04/2016 08:31 PM
Report Abusive Post
Report Copyright Violation
Re: If you are re-installing windows 7, use WSUS offline update instead of windows updates or it will take forever.
It grabs the updates from microsoft servers and downloads all of them at once, then you simply run the update file and it installs all the updates. You could save these to a USB device and keep it handy if you ever need to have them. It verifies the hashes and checksums, and it is a great utility to have.
Anonymous Coward
User ID: 71600969
Thailand
03/04/2016 08:33 PM
Report Abusive Post
Report Copyright Violation
Re: If you are re-installing windows 7, use WSUS offline update instead of windows updates or it will take forever.
Can you choose the updates to install seperately?
5*
Anonymous Coward
User ID: 70815046
United States
03/04/2016 08:35 PM
Report Abusive Post
Report Copyright Violation
Re: If you are re-installing windows 7, use WSUS offline update instead of windows updates or it will take forever.
I'm doing a clean install right now how dafuq did you know???

damnedagent
Anonymous Coward (OP)
User ID: 13127957
United States
03/04/2016 08:35 PM
Report Abusive Post
Report Copyright Violation
Re: If you are re-installing windows 7, use WSUS offline update instead of windows updates or it will take forever.
Can you choose the updates to install seperately?
5*
 Quoting: Anonymous Coward 71600969


No, not seperately, but if you want to remove the telemetry updates, use this batch file:

CHO OFF
REM --- remember to invoke from ELEVATED command prompt!
REM --- or start the batch with context menu "run as admin".
SETLOCAL

REM --- (as of 2015-08-26):
REM KB3012973 - Upgrade to Windows 10 Pro
REM KB3021917 - Update to Windows 7 SP1 for performance improvements
REM KB3035583 - GWX Update installs Get Windows 10 app in Windows 8.1 and Windows 7 SP1
REM KB2952664 - Compatibility update for upgrading Windows 7
REM KB2976978 - Compatibility update for Windows 8.1 and Windows 8
REM KB3022345 - Telemetry [Replaced by KB3068708]
REM KB3068708 - Update for customer experience and diagnostic telemetry
REM KB2990214 - Update that enables you to upgrade from Windows 7 to a later version of Windows
REM KB3075249 - Update that adds telemetry points to consent.exe in Windows 8.1 and Windows 7
REM KB3080149 - Update for customer experience and diagnostic telemetry
REM KB3044374 - W8,8.1 Nagware for W10
REM KB2977759 - W10 Diagnostics Compatibility Telemetry
REM KB3050265 - Windwos Update services update to upgrade to W10
REM KB3068707 - Customer experience telemetry point. W7,8,8.1


REM --- uninstall updates
echo uninstalling updates ...
start "title" /b /wait wusa.exe /kb:3012973 /uninstall /quiet /norestart
echo - done.
start "title" /b /wait wusa.exe /kb:3021917 /uninstall /quiet /norestart
echo - done.
start "title" /b /wait wusa.exe /kb:3035583 /uninstall /quiet /norestart
echo - done.
start "title" /b /wait wusa.exe /kb:2952664 /uninstall /quiet /norestart
echo - done.
start "title" /b /wait wusa.exe /kb:2976978 /uninstall /quiet /norestart
echo - done.
start "title" /b /wait wusa.exe /kb:3022345 /uninstall /quiet /norestart
echo - done.
start "title" /b /wait wusa.exe /kb:3068708 /uninstall /quiet /norestart
echo - done.
start "title" /b /wait wusa.exe /kb:2990214 /uninstall /quiet /norestart
echo - done.
start "title" /b /wait wusa.exe /kb:3075249 /uninstall /quiet /norestart
echo - done.
start "title" /b /wait wusa.exe /kb:3080149 /uninstall /quiet /norestart
echo - done.
start "title" /b /wait wusa.exe /kb:3044374 /uninstall /quiet /norestart
echo - done.
start "title" /b /wait wusa.exe /kb:2977759 /uninstall /quiet /norestart
echo - done.
start "title" /b /wait wusa.exe /kb:3050265 /uninstall /quiet /norestart
echo - done.
start "title" /b /wait wusa.exe /kb:3068707 /uninstall /quiet /norestart
echo - done.

timeout 10

echo ... COMPLETED (please remember to REBOOT, and Hide the Following KB Updates)
echo ...3012973
echo ...3021917
echo ...3035583
echo ...2952664
echo ...2976978
echo ...3022345
echo ...3068708
echo ...2990214
echo ...3075249
echo ...3080149
echo ...3044374
echo ...2977759
echo ...3050265
echo ...3068707
echo - done.


pause

echo Uninstalling KB3075249 (telemetry for Win7/8.1)
start /w wusa.exe /uninstall /kb:3075249 /quiet /norestart
echo Uninstalling KB3080149 (telemetry for Win7/8.1)
start /w wusa.exe /uninstall /kb:3080149 /quiet /norestart
echo Uninstalling KB3021917 (telemetry for Win7)
start /w wusa.exe /uninstall /kb:3021917 /quiet /norestart
echo Uninstalling KB3022345 (telemetry)
start /w wusa.exe /uninstall /kb:3022345 /quiet /norestart
echo Uninstalling KB3068708 (telemetry)
start /w wusa.exe /uninstall /kb:3068708 /quiet /norestart
echo Uninstalling KB3044374 (Get Windows 10 for Win8.1)
start /w wusa.exe /uninstall /kb:3044374 /quiet /norestart
echo Uninstalling KB3035583 (Get Windows 10 for Win7sp1/8.1)
start /w wusa.exe /uninstall /kb:3035583 /quiet /norestart
echo Uninstalling KB2990214 (Get Windows 10 for Win7 without sp1)
start /w wusa.exe /uninstall /kb:2990214 /quiet /norestart
echo Uninstalling KB2990214 (Get Windows 10 for Win7)
start /w wusa.exe /uninstall /kb:2990214 /quiet /norestart
echo Uninstalling KB2952664 (Get Windows 10 assistant)
start /w wusa.exe /uninstall /kb:2952664 /quiet /norestart
echo Uninstalling KB3075853 (update for "Windows Update" on Win8.1/Server 2012R2)
start /w wusa.exe /uninstall /kb:3075853 /quiet /norestart
echo Uninstalling KB3065987 (update for "Windows Update" on Win7/Server 2008R2)
start /w wusa.exe /uninstall /kb:3065987 /quiet /norestart
echo Uninstalling KB3050265 (update for "Windows Update" on Win7)
start /w wusa.exe /uninstall /kb:3050265 /quiet /norestart
echo Uninstalling KB971033 (license validation)
start /w wusa.exe /uninstall /kb:971033 /quiet /norestart
echo Uninstalling KB2902907 (description not available)
start /w wusa.exe /uninstall /kb:2902907 /quiet /norestart
echo Uninstalling KB2976987 (description not available)
start /w wusa.exe /uninstall /kb:2976987 /quiet /norestart
REM --- EOF
Anonymous Coward
User ID: 70815046
United States
03/04/2016 08:37 PM
Report Abusive Post
Report Copyright Violation
Re: If you are re-installing windows 7, use WSUS offline update instead of windows updates or it will take forever.
4 hours in, still checking for updates... Install has yet to begin.

Should I stop? I think it's close to actually installing now.
Anonymous Coward (OP)
User ID: 13127957
United States
03/04/2016 08:38 PM
Report Abusive Post
Report Copyright Violation
Re: If you are re-installing windows 7, use WSUS offline update instead of windows updates or it will take forever.
4 hours in, still checking for updates... Install has yet to begin.

Should I stop? I think it's close to actually installing now.
 Quoting: R. Wordsworth


Haha, you will be waiting another 4 hours.
Anonymous Coward
User ID: 70815046
United States
03/04/2016 08:39 PM
Report Abusive Post
Report Copyright Violation
Re: If you are re-installing windows 7, use WSUS offline update instead of windows updates or it will take forever.
4 hours in, still checking for updates... Install has yet to begin.

Should I stop? I think it's close to actually installing now.
 Quoting: R. Wordsworth


Haha, you will be waiting another 4 hours.
 Quoting: Anonymous Coward 13127957


tantrum
Lily o' the Valley

User ID: 11213558
United States
03/04/2016 08:41 PM

Report Abusive Post
Report Copyright Violation
Re: If you are re-installing windows 7, use WSUS offline update instead of windows updates or it will take forever.
Added to personal pins.

5* OP!

hf
*** Good deeds bring rewards, bad actions bring troubles. That is a law of the universe. ***
Anonymous Coward (OP)
User ID: 13127957
United States
03/04/2016 08:41 PM
Report Abusive Post
Report Copyright Violation
Re: If you are re-installing windows 7, use WSUS offline update instead of windows updates or it will take forever.
4 hours in, still checking for updates... Install has yet to begin.

Should I stop? I think it's close to actually installing now.
 Quoting: R. Wordsworth


Haha, you will be waiting another 4 hours.
 Quoting: Anonymous Coward 13127957


tantrum
 Quoting: R. Wordsworth


Just download WSUS offline update here:

[link to download.wsusoffline.net]

Unzip the file and run the update generator, wait around 1 hour then after it downloads everything, run the install.
Anonymous Coward
User ID: 70815046
United States
03/04/2016 08:42 PM
Report Abusive Post
Report Copyright Violation
Re: If you are re-installing windows 7, use WSUS offline update instead of windows updates or it will take forever.
What the fuck is it doing, anyways? 50% CPU for 4 hours... Almost zero disk activity.

It should be:

Is KB666420 installed? No? INSTALL!!!
Is KB8675309 installed? No? INSTALL!!!

Is it doing some kind of hash of the whole operating system?

hmm
Anonymous Coward (OP)
User ID: 13127957
United States
03/04/2016 08:45 PM
Report Abusive Post
Report Copyright Violation
Re: If you are re-installing windows 7, use WSUS offline update instead of windows updates or it will take forever.
Added to personal pins.

5* OP!

hf
 Quoting: Lily o' the Valley


Thanks, It actually works!

It downloads all the updates from microsoft's servers and does a hash check on the file checksums on microsoft's servers, so it is safe and fast.
Anonymous Coward (OP)
User ID: 13127957
United States
03/04/2016 08:49 PM
Report Abusive Post
Report Copyright Violation
Re: If you are re-installing windows 7, use WSUS offline update instead of windows updates or it will take forever.
What the fuck is it doing, anyways? 50% CPU for 4 hours... Almost zero disk activity.

It should be:

Is KB666420 installed? No? INSTALL!!!
Is KB8675309 installed? No? INSTALL!!!

Is it doing some kind of hash of the whole operating system?

hmm
 Quoting: R. Wordsworth


Well, its hard to explain actually, their update system works one update at a time, and it downloads each update, reads the file again, then does a checksum, and repeats the process on each file. When the checksum is being checked on the entire file, it has to use CPU to read the entire file back and compare the checksum. That process involves a lot of time reading one file at a time after downloading.

I can't go into details on how it works, it would take too long to explain. This process is much faster and easier.
Anonymous Coward
User ID: 70842159
United States
03/04/2016 08:55 PM
Report Abusive Post
Report Copyright Violation
Re: If you are re-installing windows 7, use WSUS offline update instead of windows updates or it will take forever.
Can you choose the updates to install seperately?
5*
 Quoting: Anonymous Coward 71600969


No, not seperately, but if you want to remove the telemetry updates, use this batch file:

CHO OFF
REM --- remember to invoke from ELEVATED command prompt!
REM --- or start the batch with context menu "run as admin".
SETLOCAL

REM --- (as of 2015-08-26):
REM KB3012973 - Upgrade to Windows 10 Pro
REM KB3021917 - Update to Windows 7 SP1 for performance improvements
REM KB3035583 - GWX Update installs Get Windows 10 app in Windows 8.1 and Windows 7 SP1
REM KB2952664 - Compatibility update for upgrading Windows 7
REM KB2976978 - Compatibility update for Windows 8.1 and Windows 8
REM KB3022345 - Telemetry [Replaced by KB3068708]
REM KB3068708 - Update for customer experience and diagnostic telemetry
REM KB2990214 - Update that enables you to upgrade from Windows 7 to a later version of Windows
REM KB3075249 - Update that adds telemetry points to consent.exe in Windows 8.1 and Windows 7
REM KB3080149 - Update for customer experience and diagnostic telemetry
REM KB3044374 - W8,8.1 Nagware for W10
REM KB2977759 - W10 Diagnostics Compatibility Telemetry
REM KB3050265 - Windwos Update services update to upgrade to W10
REM KB3068707 - Customer experience telemetry point. W7,8,8.1


REM --- uninstall updates
echo uninstalling updates ...
start "title" /b /wait wusa.exe /kb:3012973 /uninstall /quiet /norestart
echo - done.
start "title" /b /wait wusa.exe /kb:3021917 /uninstall /quiet /norestart
echo - done.
start "title" /b /wait wusa.exe /kb:3035583 /uninstall /quiet /norestart
echo - done.
start "title" /b /wait wusa.exe /kb:2952664 /uninstall /quiet /norestart
echo - done.
start "title" /b /wait wusa.exe /kb:2976978 /uninstall /quiet /norestart
echo - done.
start "title" /b /wait wusa.exe /kb:3022345 /uninstall /quiet /norestart
echo - done.
start "title" /b /wait wusa.exe /kb:3068708 /uninstall /quiet /norestart
echo - done.
start "title" /b /wait wusa.exe /kb:2990214 /uninstall /quiet /norestart
echo - done.
start "title" /b /wait wusa.exe /kb:3075249 /uninstall /quiet /norestart
echo - done.
start "title" /b /wait wusa.exe /kb:3080149 /uninstall /quiet /norestart
echo - done.
start "title" /b /wait wusa.exe /kb:3044374 /uninstall /quiet /norestart
echo - done.
start "title" /b /wait wusa.exe /kb:2977759 /uninstall /quiet /norestart
echo - done.
start "title" /b /wait wusa.exe /kb:3050265 /uninstall /quiet /norestart
echo - done.
start "title" /b /wait wusa.exe /kb:3068707 /uninstall /quiet /norestart
echo - done.

timeout 10

echo ... COMPLETED (please remember to REBOOT, and Hide the Following KB Updates)
echo ...3012973
echo ...3021917
echo ...3035583
echo ...2952664
echo ...2976978
echo ...3022345
echo ...3068708
echo ...2990214
echo ...3075249
echo ...3080149
echo ...3044374
echo ...2977759
echo ...3050265
echo ...3068707
echo - done.


pause

echo Uninstalling KB3075249 (telemetry for Win7/8.1)
start /w wusa.exe /uninstall /kb:3075249 /quiet /norestart
echo Uninstalling KB3080149 (telemetry for Win7/8.1)
start /w wusa.exe /uninstall /kb:3080149 /quiet /norestart
echo Uninstalling KB3021917 (telemetry for Win7)
start /w wusa.exe /uninstall /kb:3021917 /quiet /norestart
echo Uninstalling KB3022345 (telemetry)
start /w wusa.exe /uninstall /kb:3022345 /quiet /norestart
echo Uninstalling KB3068708 (telemetry)
start /w wusa.exe /uninstall /kb:3068708 /quiet /norestart
echo Uninstalling KB3044374 (Get Windows 10 for Win8.1)
start /w wusa.exe /uninstall /kb:3044374 /quiet /norestart
echo Uninstalling KB3035583 (Get Windows 10 for Win7sp1/8.1)
start /w wusa.exe /uninstall /kb:3035583 /quiet /norestart
echo Uninstalling KB2990214 (Get Windows 10 for Win7 without sp1)
start /w wusa.exe /uninstall /kb:2990214 /quiet /norestart
echo Uninstalling KB2990214 (Get Windows 10 for Win7)
start /w wusa.exe /uninstall /kb:2990214 /quiet /norestart
echo Uninstalling KB2952664 (Get Windows 10 assistant)
start /w wusa.exe /uninstall /kb:2952664 /quiet /norestart
echo Uninstalling KB3075853 (update for "Windows Update" on Win8.1/Server 2012R2)
start /w wusa.exe /uninstall /kb:3075853 /quiet /norestart
echo Uninstalling KB3065987 (update for "Windows Update" on Win7/Server 2008R2)
start /w wusa.exe /uninstall /kb:3065987 /quiet /norestart
echo Uninstalling KB3050265 (update for "Windows Update" on Win7)
start /w wusa.exe /uninstall /kb:3050265 /quiet /norestart
echo Uninstalling KB971033 (license validation)
start /w wusa.exe /uninstall /kb:971033 /quiet /norestart
echo Uninstalling KB2902907 (description not available)
start /w wusa.exe /uninstall /kb:2902907 /quiet /norestart
echo Uninstalling KB2976987 (description not available)
start /w wusa.exe /uninstall /kb:2976987 /quiet /norestart
REM --- EOF
 Quoting: Anonymous Coward 13127957


Nice!!! Thanks!
Anonymous Coward (OP)
User ID: 13127957
United States
03/04/2016 08:55 PM
Report Abusive Post
Report Copyright Violation
Re: If you are re-installing windows 7, use WSUS offline update instead of windows updates or it will take forever.
Windows 7 is about to be canned in a few month's anyway. Microsoft will no longer support it, but you can still run it.

I say by the year 2020, every PC on the planet will be running windows 10.
Anonymous Coward (OP)
User ID: 13127957
United States
03/04/2016 08:59 PM
Report Abusive Post
Report Copyright Violation
Re: If you are re-installing windows 7, use WSUS offline update instead of windows updates or it will take forever.
Can you choose the updates to install seperately?
5*
 Quoting: Anonymous Coward 71600969


No, not seperately, but if you want to remove the telemetry updates, use this batch file:

CHO OFF
REM --- remember to invoke from ELEVATED command prompt!
REM --- or start the batch with context menu "run as admin".
SETLOCAL

REM --- (as of 2015-08-26):
REM KB3012973 - Upgrade to Windows 10 Pro
REM KB3021917 - Update to Windows 7 SP1 for performance improvements
REM KB3035583 - GWX Update installs Get Windows 10 app in Windows 8.1 and Windows 7 SP1
REM KB2952664 - Compatibility update for upgrading Windows 7
REM KB2976978 - Compatibility update for Windows 8.1 and Windows 8
REM KB3022345 - Telemetry [Replaced by KB3068708]
REM KB3068708 - Update for customer experience and diagnostic telemetry
REM KB2990214 - Update that enables you to upgrade from Windows 7 to a later version of Windows
REM KB3075249 - Update that adds telemetry points to consent.exe in Windows 8.1 and Windows 7
REM KB3080149 - Update for customer experience and diagnostic telemetry
REM KB3044374 - W8,8.1 Nagware for W10
REM KB2977759 - W10 Diagnostics Compatibility Telemetry
REM KB3050265 - Windwos Update services update to upgrade to W10
REM KB3068707 - Customer experience telemetry point. W7,8,8.1


REM --- uninstall updates
echo uninstalling updates ...
start "title" /b /wait wusa.exe /kb:3012973 /uninstall /quiet /norestart
echo - done.
start "title" /b /wait wusa.exe /kb:3021917 /uninstall /quiet /norestart
echo - done.
start "title" /b /wait wusa.exe /kb:3035583 /uninstall /quiet /norestart
echo - done.
start "title" /b /wait wusa.exe /kb:2952664 /uninstall /quiet /norestart
echo - done.
start "title" /b /wait wusa.exe /kb:2976978 /uninstall /quiet /norestart
echo - done.
start "title" /b /wait wusa.exe /kb:3022345 /uninstall /quiet /norestart
echo - done.
start "title" /b /wait wusa.exe /kb:3068708 /uninstall /quiet /norestart
echo - done.
start "title" /b /wait wusa.exe /kb:2990214 /uninstall /quiet /norestart
echo - done.
start "title" /b /wait wusa.exe /kb:3075249 /uninstall /quiet /norestart
echo - done.
start "title" /b /wait wusa.exe /kb:3080149 /uninstall /quiet /norestart
echo - done.
start "title" /b /wait wusa.exe /kb:3044374 /uninstall /quiet /norestart
echo - done.
start "title" /b /wait wusa.exe /kb:2977759 /uninstall /quiet /norestart
echo - done.
start "title" /b /wait wusa.exe /kb:3050265 /uninstall /quiet /norestart
echo - done.
start "title" /b /wait wusa.exe /kb:3068707 /uninstall /quiet /norestart
echo - done.

timeout 10

echo ... COMPLETED (please remember to REBOOT, and Hide the Following KB Updates)
echo ...3012973
echo ...3021917
echo ...3035583
echo ...2952664
echo ...2976978
echo ...3022345
echo ...3068708
echo ...2990214
echo ...3075249
echo ...3080149
echo ...3044374
echo ...2977759
echo ...3050265
echo ...3068707
echo - done.


pause

echo Uninstalling KB3075249 (telemetry for Win7/8.1)
start /w wusa.exe /uninstall /kb:3075249 /quiet /norestart
echo Uninstalling KB3080149 (telemetry for Win7/8.1)
start /w wusa.exe /uninstall /kb:3080149 /quiet /norestart
echo Uninstalling KB3021917 (telemetry for Win7)
start /w wusa.exe /uninstall /kb:3021917 /quiet /norestart
echo Uninstalling KB3022345 (telemetry)
start /w wusa.exe /uninstall /kb:3022345 /quiet /norestart
echo Uninstalling KB3068708 (telemetry)
start /w wusa.exe /uninstall /kb:3068708 /quiet /norestart
echo Uninstalling KB3044374 (Get Windows 10 for Win8.1)
start /w wusa.exe /uninstall /kb:3044374 /quiet /norestart
echo Uninstalling KB3035583 (Get Windows 10 for Win7sp1/8.1)
start /w wusa.exe /uninstall /kb:3035583 /quiet /norestart
echo Uninstalling KB2990214 (Get Windows 10 for Win7 without sp1)
start /w wusa.exe /uninstall /kb:2990214 /quiet /norestart
echo Uninstalling KB2990214 (Get Windows 10 for Win7)
start /w wusa.exe /uninstall /kb:2990214 /quiet /norestart
echo Uninstalling KB2952664 (Get Windows 10 assistant)
start /w wusa.exe /uninstall /kb:2952664 /quiet /norestart
echo Uninstalling KB3075853 (update for "Windows Update" on Win8.1/Server 2012R2)
start /w wusa.exe /uninstall /kb:3075853 /quiet /norestart
echo Uninstalling KB3065987 (update for "Windows Update" on Win7/Server 2008R2)
start /w wusa.exe /uninstall /kb:3065987 /quiet /norestart
echo Uninstalling KB3050265 (update for "Windows Update" on Win7)
start /w wusa.exe /uninstall /kb:3050265 /quiet /norestart
echo Uninstalling KB971033 (license validation)
start /w wusa.exe /uninstall /kb:971033 /quiet /norestart
echo Uninstalling KB2902907 (description not available)
start /w wusa.exe /uninstall /kb:2902907 /quiet /norestart
echo Uninstalling KB2976987 (description not available)
start /w wusa.exe /uninstall /kb:2976987 /quiet /norestart
REM --- EOF
 Quoting: Anonymous Coward 13127957


Nice!!! Thanks!
 Quoting: Anonymous Coward 70842159


Your welcome, simply copy that text and paste it in a file as a batch file, and it will uninstall all the nagware and windows telemetry updates trying to force you to update to windows 10.
Anonymous Coward
User ID: 70815046
United States
03/04/2016 09:05 PM
Report Abusive Post
Report Copyright Violation
Re: If you are re-installing windows 7, use WSUS offline update instead of windows updates or it will take forever.
Windows 7 is about to be canned in a few month's anyway. Microsoft will no longer support it, but you can still run it.

I say by the year 2020, every PC on the planet will be running windows 10.
 Quoting: Anonymous Coward 13127957


I will have to use it at work but my personal rigs will migrate to Linux... actually that's what triggered the clean install on this one.

Figured I would freshen it up since I had to repartition.
Anonymous Coward (OP)
User ID: 13127957
United States
03/04/2016 09:07 PM
Report Abusive Post
Report Copyright Violation
Re: If you are re-installing windows 7, use WSUS offline update instead of windows updates or it will take forever.
I don't know about the rest of you, but I simply do not trust Windows 10 and its bloatware and spyware. It seems that operating system is spying on everyone and transmitting data back to microsoft according to traffic analysis from several programs.

I am sticking to windows 7 as long as possible without the bloatware and privacy invasion.
Anonymous Coward (OP)
User ID: 13127957
United States
03/04/2016 09:10 PM
Report Abusive Post
Report Copyright Violation
Re: If you are re-installing windows 7, use WSUS offline update instead of windows updates or it will take forever.
Windows 7 is about to be canned in a few month's anyway. Microsoft will no longer support it, but you can still run it.

I say by the year 2020, every PC on the planet will be running windows 10.
 Quoting: Anonymous Coward 13127957


I will have to use it at work but my personal rigs will migrate to Linux... actually that's what triggered the clean install on this one.

Figured I would freshen it up since I had to repartition.
 Quoting: R. Wordsworth


Linux will be my chose also. (Ubuntu Desktop is my favorite).

I have given up on microsoft. They have become just too "Big Brother" for me. I am sick of their desire to create a spyware operating system. Windows 10 is nothing but a spyware operating system designed to spy on its users and transmit data back to their servers. I have seen this on traffic analysis software capturing data packets.
Anonymous Coward
User ID: 71603504
New Zealand
03/04/2016 09:13 PM
Report Abusive Post
Report Copyright Violation
Re: If you are re-installing windows 7, use WSUS offline update instead of windows updates or it will take forever.
What the fuck is it doing, anyways? 50% CPU for 4 hours... Almost zero disk activity.

It should be:

Is KB666420 installed? No? INSTALL!!!
Is KB8675309 installed? No? INSTALL!!!

Is it doing some kind of hash of the whole operating system?

hmm
 Quoting: R. Wordsworth


Well, its hard to explain actually, their update system works one update at a time, and it downloads each update, reads the file again, then does a checksum, and repeats the process on each file. When the checksum is being checked on the entire file, it has to use CPU to read the entire file back and compare the checksum. That process involves a lot of time reading one file at a time after downloading.

I can't go into details on how it works, it would take too long to explain. This process is much faster and easier.
 Quoting: Anonymous Coward 13127957


That's right, Microsoft update takes forever, many many hours.
Anonymous Coward (OP)
User ID: 13127957
United States
03/04/2016 09:21 PM
Report Abusive Post
Report Copyright Violation
Re: If you are re-installing windows 7, use WSUS offline update instead of windows updates or it will take forever.
What the fuck is it doing, anyways? 50% CPU for 4 hours... Almost zero disk activity.

It should be:

Is KB666420 installed? No? INSTALL!!!
Is KB8675309 installed? No? INSTALL!!!

Is it doing some kind of hash of the whole operating system?

hmm
 Quoting: R. Wordsworth


Well, its hard to explain actually, their update system works one update at a time, and it downloads each update, reads the file again, then does a checksum, and repeats the process on each file. When the checksum is being checked on the entire file, it has to use CPU to read the entire file back and compare the checksum. That process involves a lot of time reading one file at a time after downloading.

I can't go into details on how it works, it would take too long to explain. This process is much faster and easier.
 Quoting: Anonymous Coward 13127957


That's right, Microsoft update takes forever, many many hours.
 Quoting: Anonymous Coward 71603504


Try WSUS. You will have your system fully updated within 2-3 hours.

[link to download.wsusoffline.net]
Anonymous Coward (OP)
User ID: 13127957
United States
03/04/2016 09:22 PM
Report Abusive Post
Report Copyright Violation
Re: If you are re-installing windows 7, use WSUS offline update instead of windows updates or it will take forever.
If you want to remove telemetry updates and windows 10 update nagware, there is a batch file for that. Look earlier in this thread for it. I posted that for people who didn't want to update to windows 10 and that batch file will uninstall the updates that run that nagware about updating to windows 10.
Anonymous Coward
User ID: 71309406
United States
03/04/2016 09:25 PM
Report Abusive Post
Report Copyright Violation
Re: If you are re-installing windows 7, use WSUS offline update instead of windows updates or it will take forever.
The first thing I do after I install windows is disable Windows update.
Anonymous Coward
User ID: 69665735
Netherlands
03/04/2016 09:28 PM
Report Abusive Post
Report Copyright Violation
Re: If you are re-installing windows 7, use WSUS offline update instead of windows updates or it will take forever.
Yeah overtime that last update takes forever and has this message not to shut down, so I sat there like 5 hours before rebooting the damn thing.
Anonymous Coward (OP)
User ID: 13127957
United States
03/04/2016 09:28 PM
Report Abusive Post
Report Copyright Violation
Re: If you are re-installing windows 7, use WSUS offline update instead of windows updates or it will take forever.
The first thing I do after I install windows is disable Windows update.
 Quoting: Anonymous Coward 71309406


Well that will work also, but you will be vunerable to security updates and drive-by downloads if you are using internet explorer if you do not have the security updates applied. The best thing you can do is simply STOP using internet explorer (Internet EXPLODER in my opinion), haha.

Use Firefox as your primary browser. You will be much safer using that browser instead of internet explorer.
Anonymous Coward (OP)
User ID: 13127957
United States
03/04/2016 09:31 PM
Report Abusive Post
Report Copyright Violation
Re: If you are re-installing windows 7, use WSUS offline update instead of windows updates or it will take forever.
Internet explorer uses a protocol called ActiveX which auto executes when you visit web sites. Firefox does NOT use Active X at all, so you are much safer using Firefox than Internet Explorer for your default browser. If you visit an infected website using internet explorer and there is an active X script running on that site, you could become instantly infected just by visiting a website if you are running internet explorer.
Anonymous Coward (OP)
User ID: 13127957
United States
03/04/2016 09:35 PM
Report Abusive Post
Report Copyright Violation
Re: If you are re-installing windows 7, use WSUS offline update instead of windows updates or it will take forever.
Here is a good tip...STAY AWAY FROM INTERNET EXPLORER!

Download firefox here:

[link to www.mozilla.org (secure)]

You are MUCH SAFER using this browser since Firefox doesn't execute any ActiveX scripts whatsoever.
Anonymous Coward (OP)
User ID: 13127957
United States
03/04/2016 09:39 PM
Report Abusive Post
Report Copyright Violation
Re: If you are re-installing windows 7, use WSUS offline update instead of windows updates or it will take forever.
I have extensive knowledge of the internet and how it works and internet security. If you would like to ask me any questions, email me at [email protected]

I would be more than glad to answer your questions.
Anonymous Coward (OP)
User ID: 13127957
United States
03/04/2016 09:58 PM
Report Abusive Post
Report Copyright Violation
Re: If you are re-installing windows 7, use WSUS offline update instead of windows updates or it will take forever.
Your SAFEST bet is to run Linux. Ubuntu Desktop is much safer than Windows, which you can download here:

[link to www.ubuntu.com]

Linux is a much more secure operating system than windows, and you are less likely to get any viruses/malware at all.

If you run Linux, the chances of you getting a virus or malware are almost zero. The linux operating systems file system is much more secure than windows. I would suggest everyone run Linux than windows.
Anonymous Coward
User ID: 70815046
United States
03/04/2016 10:03 PM
Report Abusive Post
Report Copyright Violation
Re: If you are re-installing windows 7, use WSUS offline update instead of windows updates or it will take forever.
Installing now... I think I'm gonna make it in about 6 hours.

SSD mofo!!!
beebee

User ID: 53586177
Canada
03/04/2016 10:06 PM
Report Abusive Post
Report Copyright Violation
Re: If you are re-installing windows 7, use WSUS offline update instead of windows updates or it will take forever.
Windows 7 is about to be canned in a few month's anyway. Microsoft will no longer support it, but you can still run it.

I say by the year 2020, every PC on the planet will be running windows 10.
 Quoting: Anonymous Coward 13127957


The day I'm forced is the day I switch to Apple
beebee





GLP