• This article indicates Instant File Initialization is only for data files.

    http://www.microsoft.com/technet/prodtechnol/sql/2005/physdbstor.mspx

    Instant File Initialization

    SQL Server 2005 added support for the Windows instant file initialization feature. By default, when a file is created or grows larger, the pages in that file are initialized by writing zeros before the file gets used. This overwrites any existing data that remains on the disk. Instant initialization is only used for data files (not log files) and is enabled when the account running SQL Server has the Windows SE MANAGE VOLUME NAME privilege, which is available only on Microsoft Windows XP, Windows Server 2003 or later versions. This occurs in five scenarios:

    During file creation

    CREATE DATABASE, including tempdb creation at server startup.

    RESTORE DATABASE

    During file modification

    ALTER DATABASE...MODIFY FILE.

    Modifications that result in autogrow activity.