Maybe to automate it a bit more or just for your convenience... Here's a
batch script that deletes all user temp files, that resides after a load of
installations. Folder pathes apply to XP and Win7. I changed the extension
from .bat to .txt ín the case the list server does not allow .bat files. It
only deletes and recreates directories with temporary data. But you are
kindly requested to double check for correct folder pathes prior to running
it :)
sven
-----Original Message-----
From: [email protected]
[mailto:[email protected]] On Behalf Of Sven Constable
Sent: Wednesday, August 21, 2013 4:11 PM
To: [email protected]
Subject: RE: Windows 7 or 8
As Stefan said, delete and disable hibernation. No need for that on
rendernodes. I would set the pagefile to "system managed" what makes it
kinda small in the first place or set it manually to maybe a gig or so? But
don't disable it entirely, windows does need it even the machine has a huge
amount of RAM.
The image I use here (clean win7 installation with no applications
installed) is around 6.5GB in size. But compressed, i think.
sven
-----Original Message-----
From: [email protected]
[mailto:[email protected]] On Behalf Of Angus Davidson
Sent: Wednesday, August 21, 2013 3:54 PM
To: [email protected]
Subject: Re: Windows 7 or 8
Hi Stefan
Cleaned the trash/tmp folders, did all the chkdsk, and then ran sysprep.
I was surprised as well that it was that big. (This is on a volume license
installer - not sure if it makes a difference)
Kind Regards
Angus
On 2013/08/21 3:38 PM, "Stefan Kubicek" <[email protected]> wrote:
>I don't think there is anything that speaks against Win8 for use in
>render farms, it's still strange you get such a huge image with Win7.
>Maybe there is a hidden hibernation file (always has the size of your
>machines RAM) or excessive paging file that bloats it that much? Did
>you delete files that might have remained on disk after installation?
>Did you clean the trash bin?
>
>
>> Hi All
>>
>> I am looking at imaging our render farm (mac mini's running bootcamp).
>>I have a very nice workflow via win clone pro . I can using Apple
>>Remote Desktop pump out the images as mac packages to any of the mac
>>on the network and it automatically installs bootcamp and the windows
therein.
>>(I just need to change the machine name, and activate windows and I am
>>good to go)
>>
>> The only problem I have is that even for the base windows 7 install
>>the uncompressed image is about 20Gigs in size. Add the packages I
>>need on it to render and it grows again.
>>
>> Windows 8 has a much smaller footprint upfront. (8Gigs)
>>
>> Which leads to my question. Has anyone had experience with using a
>>windows 8 based render farm vs a windows 7 one. I must admit I am more
>>comfortable in windows 7, But having a much more optimised image is
>>also a great thing when your doing a lot of deployments.
>>
>> Kind regards
>>
>> Angus
>>
>> <table width="100%" border="0" cellspacing="0" cellpadding="0"
>>style="width:100%;">
>> <tr>
>> <td align="left" style="text-align:justify;"><font
>>face="arial,sans-serif" size="1" color="#999999"><span
>>style="font-size:11px;">This communication is intended for the
>>addressee only. It is confidential. If you have received this
>>communication in error, please notify us immediately and destroy the
original message.
>>You may not copy or disseminate this communication without the
>>permission of the University. Only authorised signatories are
>>competent to enter into agreements on behalf of the University and
>>recipients are thus advised that the content of this message may not
>>be legally binding on the University and may contain the personal
>>views and opinions of the author, which are not necessarily the views
>>and opinions of The University of the Witwatersrand, Johannesburg. All
>>agreements between the University and outsiders are subject to South
>>African Law unless the University agrees in writing to the contrary.
>></span></font></td> </tr> </table>
>>
>
>
>--
>---------------------------------------------
> Stefan Kubicek [email protected]
>---------------------------------------------
> keyvis digital imagery
> Alfred Feierfeilstraße 3
> A-2380 Perchtoldsdorf bei Wien
> Phone: +43 (0) 699 12614231
> www.keyvis.at
>-- This email and its attachments are --
>-- confidential and for the recipient only --
>
<table width="100%" border="0" cellspacing="0" cellpadding="0"
style="width:100%;">
<tr>
<td align="left" style="text-align:justify;"><font face="arial,sans-serif"
size="1" color="#999999"><span style="font-size:11px;">This communication is
intended for the addressee only. It is confidential. If you have received
this communication in error, please notify us immediately and destroy the
original message. You may not copy or disseminate this communication without
the permission of the University. Only authorised signatories are competent
to enter into agreements on behalf of the University and recipients are thus
advised that the content of this message may not be legally binding on the
University and may contain the personal views and opinions of the author,
which are not necessarily the views and opinions of The University of the
Witwatersrand, Johannesburg. All agreements between the University and
outsiders are subject to South African Law unless the University agrees in
writing to the contrary. </span></font></td> </tr> </table>
@echo off
IF EXIST c:\windows\temp\ del /f /s /q c:\windows\temp\
DEL /f /s /q %temp%\
IF EXIST "C:\Documents and Settings\" (
for /D %%x in ("C:\Documents and Settings\*") do (
rmdir /s /q "%%x\Local Settings\Temporary Internet Files"
mkdir "%%x\Local Settings\Temporary Internet Files"
)
)
IF EXIST "C:\Documents and Settings\" (
for /D %%x in ("C:\Documents and Settings\*") do (
rmdir /s /q "%%x\Local Settings\Temp"
mkdir "%%x\Local Settings\Temp"
)
)
IF EXIST "C:\Users\" (
for /D %%x in ("C:\Users\*") do (
rmdir /s /q "%%x\AppData\Local\Temp"
mkdir "%%x\AppData\Local\Temp"
)
)
IF EXIST "C:\Users\" (
for /D %%x in ("C:\Users\*") do (
rmdir /s /q "%%x\AppData\Local\Microsoft\Windows\Temporary Internet
Files"
mkdir "%%x\AppData\Local\Microsoft\Windows\Temporary Internet Files"
)
)