Go Back   TechArena Community > Technical Support > Computer Help > Windows Server > Server Update Service
Become a Member!
Forgot your username/password?
Register Tags Active Topics RSS Search Mark Forums Read SiteMap

Tags:

Sponsored Links



How to move content folder...

Server Update Service


Reply
 
Thread Tools Search this Thread
  #1  
Old 07-11-2006
Luca Fabbri
 
Posts: n/a
How to move content folder...

Hi.
I need to move content folder from one local disk to another local disk. Is
there a way to do this ?!? Is there a Microsoft Knowledge base that describe
this ?!?
Could Microsoft Technet article:
http://technet2.microsoft.com/Window....mspx?mfr=true ("To migrate only local content") help me ?

Thank you very much for your answer.
Reply With Quote
  #2  
Old 08-11-2006
Dave Mills
 
Posts: n/a
Re: How to move content folder...

wsusutil /movecontent
see
http://technet2.microsoft.com/Window....mspx?mfr=true

On Tue, 7 Nov 2006 00:48:01 -0800, Luca Fabbri
<LucaFabbri@discussions.microsoft.com> wrote:

>Hi.
>I need to move content folder from one local disk to another local disk. Is
>there a way to do this ?!? Is there a Microsoft Knowledge base that describe
>this ?!?
>Could Microsoft Technet article:
>http://technet2.microsoft.com/Window....mspx?mfr=true ("To migrate only local content") help me ?
>
>Thank you very much for your answer.

--
Dave Mills
There are 10 type of people, those that understand binary and those that don't.
Reply With Quote
  #3  
Old 11-11-2006
BobD
 
Posts: n/a
Re: How to move content folder...

I'm glad I read this before posting my next question..."how do you move or
make room in a WSUS Content location?". Wsusutil will apparently do both
along with the "/deleteunneededrevisions" option. Are there any other means
of deleting old content?

When our IT crew installed WSUS, I don't think they had a clue as to how
much space would be needed for updates. If we can't find another disk to
move the content to, "trimming the fat" would be our only other alternative.

--BobD

"Dave Mills" <News1@nospam--djmills-dot-co.uk> wrote in message
news:6fr1l21155vt1kgch6t3a5cbm42d1m695e@4ax.com...
> wsusutil /movecontent
> see
> http://technet2.microsoft.com/Window....mspx?mfr=true
>
> On Tue, 7 Nov 2006 00:48:01 -0800, Luca Fabbri
> <LucaFabbri@discussions.microsoft.com> wrote:
>
>>Hi.
>>I need to move content folder from one local disk to another local disk.
>>Is
>>there a way to do this ?!? Is there a Microsoft Knowledge base that
>>describe
>>this ?!?
>>Could Microsoft Technet article:
>>http://technet2.microsoft.com/Window....mspx?mfr=true
>>("To migrate only local content") help me ?
>>
>>Thank you very much for your answer.

> --
> Dave Mills
> There are 10 type of people, those that understand binary and those that
> don't.



Reply With Quote
  #4  
Old 11-11-2006
Dave Mills
 
Posts: n/a
Re: How to move content folder...

On Fri, 10 Nov 2006 16:08:25 -0500, "BobD" <rm_damore@hotmail.com> wrote:

>I'm glad I read this before posting my next question..."how do you move or
>make room in a WSUS Content location?". Wsusutil will apparently do both
>along with the "/deleteunneededrevisions" option. Are there any other means
>of deleting old content?


See http://wsus.editme.com/MowingtheGrass although the page seems somewhat
broken.

I run a batch job monthly. All I then need to do is decline any content I don't
need once in a while. Usually I decline only superceded updates.. I will decline
all W2K content once all system are XP/Vista/W2003 and remove the product from
WSUS sync. The batch file will then clean up for me.

By then I expect I will be on WWSUS 3.0 (or System Centre Essentials) :-)

=========
Rem Batch file written by From: "Michael D. Ober" <obermd@alum.mit.edu>
Rem and published to WSUS newsgroup Jan 2006
Rem Modified to set the LogDir withing the script - Dave Mills
Rem Modified to use the date format for UK settings - Dave Mills

setlocal
pushd "c:\program files\update services\tools"

Rem Set a Logfile folder
Set LogDir=C:\LogDir

for /F "tokens=1" %%a in ('date /t') do set day=%%a
for /F "tokens=2" %%a in ('date /t') do set date=%%a
for /F "tokens=1, 2, 3 delims=/" %%a in ("%date%") do set date=%%c%%b%%a
set logfile=%LogDir%\WSUSCleanUp
md "%logfile%"
set logfile="%LogDir%\WSUSCleanUp\%USERNAME% on %COMPUTERNAME% - %date%.log"

echo Stopping WSUS %date%:%time%>> %logfile%
net stop "Update Services" >> %logfile%

echo Deleting Unneeded Revisions %date%:%time%>> %logfile%
wsusutil.exe deleteunneededrevisions >> %logfile%

echo Starting WSUS %date%:%time%>> %logfile%
net start "Update Services" >> %logfile%
WsusDebugTool.exe /Tool:PurgeUnneededFiles >> %logfile%

echo Finished %date%:%time%>> %logfile%
popd
endlocal
===============


>
>When our IT crew installed WSUS, I don't think they had a clue as to how
>much space would be needed for updates. If we can't find another disk to
>move the content to, "trimming the fat" would be our only other alternative.
>
>--BobD
>
>"Dave Mills" <News1@nospam--djmills-dot-co.uk> wrote in message
>news:6fr1l21155vt1kgch6t3a5cbm42d1m695e@4ax.com...
>> wsusutil /movecontent
>> see
>> http://technet2.microsoft.com/Window....mspx?mfr=true
>>
>> On Tue, 7 Nov 2006 00:48:01 -0800, Luca Fabbri
>> <LucaFabbri@discussions.microsoft.com> wrote:
>>
>>>Hi.
>>>I need to move content folder from one local disk to another local disk.
>>>Is
>>>there a way to do this ?!? Is there a Microsoft Knowledge base that
>>>describe
>>>this ?!?
>>>Could Microsoft Technet article:
>>>http://technet2.microsoft.com/Window....mspx?mfr=true
>>>("To migrate only local content") help me ?
>>>
>>>Thank you very much for your answer.

>> --
>> Dave Mills
>> There are 10 type of people, those that understand binary and those that
>> don't.

>

--
Dave Mills
There are 10 type of people, those that understand binary and those that don't.
Reply With Quote
  #5  
Old 13-11-2006
BobD
 
Posts: n/a
Re: How to move content folder...

Thanks, Dave. Once again, you have been most helpful. --BobD

"Dave Mills" <News1@nospam--djmills-dot-co.uk> wrote in message
news:9gfal2dm5r9j21tqb96nv0no408q9ksr6s@4ax.com...
> On Fri, 10 Nov 2006 16:08:25 -0500, "BobD" <rm_damore@hotmail.com> wrote:
>
>>I'm glad I read this before posting my next question..."how do you move or
>>make room in a WSUS Content location?". Wsusutil will apparently do both
>>along with the "/deleteunneededrevisions" option. Are there any other
>>means
>>of deleting old content?

>
> See http://wsus.editme.com/MowingtheGrass although the page seems somewhat
> broken.
>
> I run a batch job monthly. All I then need to do is decline any content I
> don't
> need once in a while. Usually I decline only superceded updates.. I will
> decline
> all W2K content once all system are XP/Vista/W2003 and remove the product
> from
> WSUS sync. The batch file will then clean up for me.
>
> By then I expect I will be on WWSUS 3.0 (or System Centre Essentials) :-)
>
> =========
> Rem Batch file written by From: "Michael D. Ober" <obermd@alum.mit.edu>
> Rem and published to WSUS newsgroup Jan 2006
> Rem Modified to set the LogDir withing the script - Dave Mills
> Rem Modified to use the date format for UK settings - Dave Mills
>
> setlocal
> pushd "c:\program files\update services\tools"
>
> Rem Set a Logfile folder
> Set LogDir=C:\LogDir
>
> for /F "tokens=1" %%a in ('date /t') do set day=%%a
> for /F "tokens=2" %%a in ('date /t') do set date=%%a
> for /F "tokens=1, 2, 3 delims=/" %%a in ("%date%") do set date=%%c%%b%%a
> set logfile=%LogDir%\WSUSCleanUp
> md "%logfile%"
> set logfile="%LogDir%\WSUSCleanUp\%USERNAME% on %COMPUTERNAME% -
> %date%.log"
>
> echo Stopping WSUS %date%:%time%>> %logfile%
> net stop "Update Services" >> %logfile%
>
> echo Deleting Unneeded Revisions %date%:%time%>> %logfile%
> wsusutil.exe deleteunneededrevisions >> %logfile%
>
> echo Starting WSUS %date%:%time%>> %logfile%
> net start "Update Services" >> %logfile%
> WsusDebugTool.exe /Tool:PurgeUnneededFiles >> %logfile%
>
> echo Finished %date%:%time%>> %logfile%
> popd
> endlocal
> ===============
>
>
>>
>>When our IT crew installed WSUS, I don't think they had a clue as to how
>>much space would be needed for updates. If we can't find another disk to
>>move the content to, "trimming the fat" would be our only other
>>alternative.
>>
>>--BobD
>>
>>"Dave Mills" <News1@nospam--djmills-dot-co.uk> wrote in message
>>news:6fr1l21155vt1kgch6t3a5cbm42d1m695e@4ax.com...
>>> wsusutil /movecontent
>>> see
>>> http://technet2.microsoft.com/Window....mspx?mfr=true
>>>
>>> On Tue, 7 Nov 2006 00:48:01 -0800, Luca Fabbri
>>> <LucaFabbri@discussions.microsoft.com> wrote:
>>>
>>>>Hi.
>>>>I need to move content folder from one local disk to another local disk.
>>>>Is
>>>>there a way to do this ?!? Is there a Microsoft Knowledge base that
>>>>describe
>>>>this ?!?
>>>>Could Microsoft Technet article:
>>>>http://technet2.microsoft.com/Window....mspx?mfr=true
>>>>("To migrate only local content") help me ?
>>>>
>>>>Thank you very much for your answer.
>>> --
>>> Dave Mills
>>> There are 10 type of people, those that understand binary and those that
>>> don't.

>>

> --
> Dave Mills
> There are 10 type of people, those that understand binary and those that
> don't.



Reply With Quote
Reply

  TechArena Community > Technical Support > Computer Help > Windows Server > Server Update Service


Thread Tools Search this Thread
Search this Thread:

Advanced Search


Similar Threads for: "How to move content folder..."
Thread Thread Starter Forum Replies Last Post
Where can I find Content.MSO folder The-Farmer MS Office Support 3 4 Weeks Ago 04:10 PM
Is there any way to move pictures around in a folder Yago16 Operating Systems 3 31-12-2010 07:26 AM
How to Move Public Folder Content from one Public Folder Database to Another Public Folder Database Caden Tips & Tweaks 1 22-07-2009 04:37 PM
How to move content around MySpace Rebella Windows Software 2 15-04-2009 12:12 PM
Add Copy to Folder and Move to Folder functions in the menu! Jackie Customize Desktop 2 27-02-2009 01:23 PM


All times are GMT +5.5. The time now is 05:31 AM.