Jump to content

Quick question about another thread


Recommended Posts

Hey guys I have a quick question regarding this particular thread

http://www.msfn.org/board/Streamline-Micro...indows++updates

the actual question I have is regarding this

create c:\msupdate
stop the automatic updates service and rename the %windir%\softwaredistribution\datastore\datastore.edb file to datastore.old.
start the automatic updates service so it creates a "clean" datastore.edb file (1mb) and then stop the service again.
copy the datastore.edb file to c:\msupdate
delete %windir%\softwaredistribution\datastore\datastore.edb
rename %windir%\softwaredistribution\datastore\datastore.old to datastore.edb
start the automatic updates service
copy %windir%\system32\muweb.dll to c:\msupdate
save the bolded text beneath as c:\msupdate\msupdate.cmd

@echo off
copy "muweb.dll" %windir%\system32
net stop wuauserv
del %windir%\SoftwareDistribution\DataStore\DataStore.edb
copy "DataStore.edb" %windir%\SoftwareDistribution\DataStore
regsvr32 /s muweb.dll
net start wuauserv
REG ADD "HKLM\SOFTWARE\Policies\Microsoft\Windows\CurrentVersion\Internet Settings\ZoneMap\Domains\microsoft.com" /v "*" /t REG_DWORD /d "2" /f
REG ADD "HKLM\SOFTWARE\Policies\Microsoft\Windows\CurrentVersion\Internet Settings\ZoneMap\Domains\windowsupdate.com" /v "*" /t REG_DWORD /d "2" /f
REG ADD "HKLM\SOFTWARE\Policies\Microsoft\Windows\CurrentVersion\Internet Settings\Zones\1" /v "1001" /t REG_DWORD /d "0" /f
REG ADD "HKLM\SOFTWARE\Policies\Microsoft\Windows\CurrentVersion\Internet Settings\Zones\1" /v "1809" /t REG_DWORD /d "3" /f
REG ADD "HKLM\SOFTWARE\Policies\Microsoft\Windows\CurrentVersion\Internet Settings\Zones\1" /v "1200" /t REG_DWORD /d "0" /f
REG ADD "HKLM\SOFTWARE\Policies\Microsoft\Windows\CurrentVersion\Internet Settings\Zones\2" /v "1200" /t REG_DWORD /d "0" /f
REG ADD "HKLM\SOFTWARE\Policies\Microsoft\Windows\CurrentVersion\Internet Settings\Zones\2" /v "1001" /t REG_DWORD /d "0" /f
REG ADD "HKLM\SOFTWARE\Policies\Microsoft\Windows\CurrentVersion\Internet Settings\Zones\2" /v "1809" /t REG_DWORD /d "3" /f

Now this actually works however the only problem with this is when it runs at the guirunonce in hfslip after it runs that little .cmd the dos prompt stays open

the only way to actually continue the installation is to type Exit or close the dos box so it can go onto the next screen

how do the dos box just close by itself

(by the way that little .cmd that was written works very well it installs the active X silently and works perfecly fine)

Thanks! :)

Link to comment
Share on other sites


Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...