Small patch for New-IsoFile

I made a slight change in how New-IsoFile creates the temporary file if needed. The original used a timestamp for the filename, but I wanted to use the real GetTempFileName-call. The two changed parts are bolded below. I would appreciate any feedback!
8< - - - - - 8< - - - - - 8< - - - - - 8< - - - - - 8< - - - - - 8< - - - - - 
function New-IsoFile
  <#
   .Synopsis
    Creates a new .iso file
   .Description
    The New-IsoFile cmdlet creates a new .iso file containing content from chosen folders
   .Example
    New-IsoFile "c:\tools","c:Downloads\utils"
    Description
    This command creates a .iso file in $env:temp folder (default location) that contains c:\tools and c:\downloads\utils folders. The folders themselves are added in the root of the .iso image.
   .Example
    dir c:\WinPE | New-IsoFile -Path c:\temp\WinPE.iso -BootFile etfsboot.com -Media DVDPLUSR -Title "WinPE"
    Description
    This command creates a bootable .iso file containing the content from c:\WinPE folder, but the folder itself isn't included. Boot file etfsboot.com can be found in Windows AIK. Refer to IMAPI_MEDIA_PHYSICAL_TYPE enumeration for possible media
types:
      http://msdn.microsoft.com/en-us/library/windows/desktop/aa366217(v=vs.85).aspx
   .Notes
    NAME:  New-IsoFile
    AUTHOR: Chris Wu
    LASTEDIT: 03/06/2012 14:06:16
 #>
  Param (
    [parameter(Position=0,Mandatory=$true,ValueFromPipeline=$true)]$Source,
    [parameter(Position=1)][string]$Path,
    [string] $BootFile = $null,
    [string] $Media = "Disk",
    [string] $Title = (Get-Date).ToString("yyyyMMdd-HHmmss.ffff"),
    [switch] $Force
  )#End Param
  Begin {
    ($cp = new-object System.CodeDom.Compiler.CompilerParameters).CompilerOptions = "/unsafe"
    if (!("ISOFile" -as [type])) {
      Add-Type -CompilerParameters $cp -TypeDefinition @"
public class ISOFile
    public unsafe static void Create(string Path, object Stream, int BlockSize, int TotalBlocks)
        int bytes = 0;
        byte[] buf = new byte[BlockSize];
        System.IntPtr ptr = (System.IntPtr)(&bytes);
        System.IO.FileStream o = System.IO.File.OpenWrite(Path);
        System.Runtime.InteropServices.ComTypes.IStream i = Stream as System.Runtime.InteropServices.ComTypes.IStream;
        if (o == null) { return; }
        while (TotalBlocks-- > 0) {
            i.Read(buf, BlockSize, ptr); o.Write(buf, 0, bytes);
        o.Flush(); o.Close();
    }#End If
    if ($BootFile -and (Test-Path $BootFile)) {
      ($Stream = New-Object -ComObject ADODB.Stream).Open()
      $Stream.Type = 1  # adFileTypeBinary
      $Stream.LoadFromFile((Get-Item $BootFile).Fullname)
      ($Boot = New-Object -ComObject IMAPI2FS.BootOptions).AssignBootImage($Stream)
    }#End If
    $MediaType = @{CDR=2; CDRW=3; DVDRAM=5; DVDPLUSR=6; DVDPLUSRW=7; `
      DVDPLUSR_DUALLAYER=8; DVDDASHR=9; DVDDASHRW=10; DVDDASHR_DUALLAYER=11; `
      DISK=12; DVDPLUSRW_DUALLAYER=13; BDR=18; BDRE=19 }
    if ($MediaType[$Media] -eq $null) { write-debug "Unsupported Media Type: $Media"; write-debug ("Choose one from: " + $MediaType.Keys); break }
    ($Image = new-object -com IMAPI2FS.MsftFileSystemImage -Property @{VolumeName=$Title}).ChooseImageDefaultsForMediaType($MediaType[$Media])
    if ($Path) {
        if ((Test-Path $Path) -and (!$Force)) { "File Exists $Path"; break }
        if (!($Target = New-Item -Path $Path -ItemType File -Force)) { "Cannot create file $Path"; break }
    } else {
        if (!($Target = [IO.Path]::GetTempFileName() | Rename-Item -NewName { $_ -replace 'tmp$', 'iso' } –PassThru)) { "Cannot create ISO in %TEMP%"; break }
  Process {
    switch ($Source) {
      { $_ -is [string] } { $Image.Root.AddTree((Get-Item $_).FullName, $true); continue }
      { $_ -is [IO.FileInfo] } { $Image.Root.AddTree($_.FullName, $true); continue }
      { $_ -is [IO.DirectoryInfo] } { $Image.Root.AddTree($_.FullName, $true); continue }
    }#End switch
  }#End Process
  End {
    if ($Boot) { $Image.BootImageOptions=$Boot }
    $Result = $Image.CreateResultImage()
    [ISOFile]::Create($Target.FullName,$Result.ImageStream,$Result.BlockSize,$Result.TotalBlocks)
    $Target
  }#End End
}#End function New-IsoFile
      

Hi,
I recommend posting this on the QandA tab of the gallery item:
http://gallery.technet.microsoft.com/scriptcenter/New-ISOFile-function-a8deeffd/view/Discussions#content
Don't retire TechNet! -
(Don't give up yet - 12,950+ strong and growing)

Similar Messages

  • Compiz: small patch for expo

    Hello fellow compiz users,
    I've made a very small patch to the compiz expo plugin which may provide you with some correspondingly small amount of satisfaction.  The patch adds an option to navigate through the view ports in expo mode using h,j,k,l, and also adds an option for wrapping when navigating.  (In non-patched expo, navigation is via the arrow keys and isn't configurable.)
    https://github.com/wes1138/expo-vi-keys
    Nothing special, and not a lot of work, but it was one of the (very few) things in compiz which I couldn't quite make work the way I wanted.  Zen++, I guess.  Or at least zen+=epsilon.

    Maybe you could get it upstream? It's not quite known, but there is still being work done on 0.8.x and a new release is out since last month: http://cgit.compiz.org/compiz/core/log/?h=compiz-0.8

  • Solaris 10 - patch for new DST 2007 changes

    I am trying to track down the one patch I need for the new standard for daylight savings time date changes that took effect in 2007. Each time I get one patch and read the readme file, it tells me I need another patch for the U.S. Energy Policy Act for 2005. I am just about to install Solaris 10 patch 119689-07. I don't need any other patch updates, just the bare minimum new DST patch. Thanks for your help.

    119689-07 is obsoleted by 118836. http://sunsolve.sun.com/search/document.do?assetkey=1-21-119689-07-1
    118836-36 is latest rev of this patch -- the kernel patch, whic has latest timezone data for the OS
    You'll need to make sure java has latest tz data, too:
    http://java.sun.com/javase/timezones/
    As far as I know, these are the bare minimums for a system to function properly re: latest DST schedule

  • Satellite 5200 - Need master/slave patch for new DVD drive

    I need a patch for DVD to use in a Satellite 5200.
    My original DVD is broken, so i bought a Toshiba SD-C2512 DVD but it is not working inside the Satellite, but with adaptor at my Desktop PC.
    I have to patch the DVD to Master.
    Where can I get the file and prog to patch?

    Hi
    I think such patches that you mean are not available and as far as I know if you can switch a notebook from Master to Slave for example there is a jumper on the drive.
    However, for me it sounds like that the drive is not compatible with this notebook. Not every drive is compatible with every notebook (e. g. pin assignment, ) ;)
    You should buy another one and check the user manual. There you should find a list of compatible drives.
    Bye

  • Oracle 9i patch for new DST changes

    For oracle 9i is there any patch available to take care DST 2007 changes?
    How oracle get the current date?
    Is oracle depending on Operating System?

    Patch is not yet released. You can check the bugs listed in this note in Metalink : Note:359145.1

  • What are the patches released for new browsers

    Hi Gurus,
    It's a general question.
    Is oracle released any patches for new browser versions?
    Our client is experiencing the different issue with the latest browsers.
    This is one of the error message which they had received: iRecuitment - oracle error 1403:java.sqlSQLException:ORA-01403: from Chrome user - need latest Patch.
    Regards,
    Joshna.

    You need to use a certified browser -- Please see the docs referenced above for the list of supported browsers and client OS.
    If you still get the same error, please see these docs.
    Critical Patch Released For Release 12.1.1 and Higher Customers Using Projects Web ADI Functionality [ID 1315848.1]
    Accessing Application Get Error: Fnd_session_management.Updatessioncontext Sql Exception [ID 1316294.1]
    Thanks,
    Hussein

  • The new Update with the Patch for Camera Raw is not working. Code U44M1P34

    Hi there,
    i have a problem with the new CC Update - including the patch for Camera Raw 8.7.1
    Error Code: U44M1P34
    Photoshop CC (2014)
    After Effects CC (2014)
    Brisge CC
    The logfile shows 1 fatal error:
    FATAL: Payload 'Photoshop Camera Raw 8_8.7_AdobeCameraRaw8.0All 8.0.0.22 with a number following.
    I have tried to uninstall an reinstall. Did not work at all, because the same Problem is shown.
    I did not install in other folders. All other updates worked - but not this update. The problem seems to bee only caused by the Camera Raw Update.
    Are there others with the same Problem? Any ideas?
    Thanks in advance and Greetings,
    Joerg

    Hi Jeff,
    it seems that i have found a dirty, but working solution for my problem on this site: Getting fatal Exit Code 34 when installing an app
    To change these 3 folder names and reinstalling of my Programs worked fine without any errors:
    Adobe PCD -> Adobe PCDold
    backup -> backupold
    caps -> capsold
    Now the Programs are on the actual status with all updates included and everythings seems to be fine.

  • I have cs5 and bought new camera olympus e-m1 photoshop does not open raw files is there a patch for it?

    I have cs5 and bought new camera olympus e-m1 photoshop does not open raw files is there a patch for it?

    Familiarize yourself with these tables
    http://helpx.adobe.com/creative-suite/kb/camera-raw-plug-supported-cameras.html
    Camera Raw-compatible Adobe applications
    The E-M1 was first supported by Camera Raw 8.3 which is only compatible with CS6 and CC. It is not compatible with CS5 or lower and never will be.
    Some options:
    Upgrade to CS6
    Join the Cloud
    Download the free Adobe DNG converter, convert all the Raw E-M1 files to DNGs then edit the DNGs in CS5
    Camera raw, DNG | Adobe Photoshop CC

  • Has there been any new drivers or patches for kensington trackball expert using mountain lion?

    are there new drivers or patches for the kensington trackball expert?  i'm using mountain lion on the imac 3.06 ghz intel i3 and it will not recogmize any driver i install.  all this after the installation of mountain lion.

    Kensington has a new version of Trackball Works 1.1.1 available, try it and see if your problems go away.
    It is made for Lion & Mountain Lion.
    TrackballWorks for Mac v1.1.1
    March 11, 2013
    Welcome to version 1.1.1 of TrackballWorks for Mac. This document describes the latest changes.
    Compatibility
    Mac OS X 10.8 Mountain Lion
    Mac OS X 10.7 Lion
    Mac OS X 10.6 Snow Leopard
    Supported Hardware
    SlimBlade™ Trackball (K72327)
    Expert Mouse® (K64325)
    Orbit™ Wireless Mobile Trackball (K72352)
    Orbit™Trackball with Scroll Ring (K72337)
    Orbit™ Optical Trackball (K64327)
    Installation Instructions
    To run the installer, double-click on the DMG file, then double-click  on"Kensington TrackballWorks.pkg". Follow the on-screen instructions.
    Fixes Issues
    Resolves an installation problem with Mountain Lion where  TrackballWorks may  not install properly with the Mountain Lion default  security settings.
    Resolves an issue with settings persistence where, after a reboot, some settings  become reset to their defaults.
    Changes & New Features
    Button actions that are dependent on the Mac OS X version now  correctly  display or hide depending on the version of Mac OS X being  used.
    Button action "Launchpad" has been added for Mountain Lion.

  • New security patch for ios 6.1.3 on iphone

    just read a new article on yahoo news, urging folks with iphones, ipads and the itouch, to update the latest patch for a newly discovered security vulnerability.
    The article gave instructions on how to update ios 6.1.3 on the iphone but those instructions don't work for me because my iphone 4s only shows the update to upgrade to ios7 and I do not want to do that.
    is there a way to get rid of the prompt to upgrade to 7?  And is there a way to update ios 6.1.3 and get the security patch? 
    Thanks.
    Susie

    deggie wrote:
    Because of the security bug that it patches.
    So they should update to iOS 7.0.6.
    It's the customer's choice to update or not update.  If they want the security patch, they update.  If they don't, then they don't.
    Only the customer can decide what is more important to them; retaining iOS 6 on their device or improving the security of the device.
    The only 'rock & hard place' are because of their personal choices.
    Oldhippie, only YOU can decide that.  IMHO, security is more important than aesthetics.  But you need to be comofrtable with the decision, and no one here can help with that.

  • New patch for MSI Media Center Deluxe II

    all-
    forgive if this has been posted before, but there is a new patch for the MCD II. it upgrades it revision 3. i will try it out tonight when i get back from my LSAT class.
    http://www.msi.com.tw/program/support/driver/dvr/spt_dvr_detail.php?UID=447%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20&NAME=MS-8912
    i wish MSI would make it easier to find or notify somewhere on the website about these patches. also it would be nice to read what exactly these patches fix.
    currently the only issues i have with MCD II is the slideshow doesn't work for My Pictures, and you can't stop a video file in the middle and switch to another entity- say TV, DVD, or even music without have the sound in the video file continue onwards.
    not sure if i should uninstall current patch to install 2nd patch, but will try all combinations to see which one works.

    what a waste of 18 MB. the update did not fix anything at all. the slideshow bug is still there, as is the video file sounds.
    i did a clean uninstall of the previous version, and installed from the CD, then applied the patch. no difference.
    did a clean install from CD, applied patch 1, then applied patch 2. no difference.
    worse of all, the program, when exited, does not switch the monitor refresh rate back to what it was before. (this was fixed from the previous patch).
    but i won't discourage those who had issues with the first patch not to use the second patch- maybe it will fix mcd2 for them. for i had no real problems with the 1st patch.

  • GW Monitor and new DST patch for webaccess, now shows Unknown

    It seems that after we installed the DST patch for webaccess the now our
    GroupWise Monitor shows the Webaccess agent as an unknown status? Anyone
    else have this issue? Is there maybe something else I can look at to fix
    this?
    Thanks

    LifeFitness,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Do a search of our knowledgebase at http://support.novell.com/search/kb_index.jsp
    - Check all of the other support tools and options available at
    http://support.novell.com.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://support.novell.com/forums)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://support.novell.com/forums/faq_general.html
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://support.novell.com/forums/

  • Helpful hints for new Creative Zen MP3 2/4/8/16/32 GB (flash) Users On

    Summary of helpful hints (from this forum and me) for new Creative Zen MP3 2/4/8/6/32 GB (flash) Users Only!
    Rev..
    Date: 4/28/2008
    Author: ZenAndy
    Creative terminology:
    MP3 Player Recovery Tool - A program that resolves the majority of player problems quickly.
    One click is all it takes to update your player to the latest available firmware, and to give your player a clean bill of health.
    Link: http://www.creative.com/products/mp3...me.asp region=
    Note: You can also go to "Creative" "Support" "downloads" choose your MP3 Player type to obtain the latest firmware and software releases.
    Note: On your Zen you can look under "System" & "Information" and then compare the firmware download
    releases OR you can have the "MP3 Player Recovery Tool" (above) do it for you automatically.
    Note: Creative Zen 4/8/6 GB "MP3 Recovery Tool" DOES NOT stop on a firmware comparison match.
    Note: All firmware releases/revisons for the 4/8/6 GB Zen also works (is the same as) for the 2 GB & 32 GB Zen.
    Recovery Mode - If you experience one or more of the following symptoms, it is recommended that you boot the player into its unique Recovery Mode, and then clean up, format or reload the firmware.
    . The player is not detected in Creative MediaSource or Windows Media Player
    2. The battery does not last as expected
    3. Your computer stops responding during file transfers
    4. There is a power outage during file transfers
    5. There is an error about firmware
    6. LCD displays a "Firmware Problem" message
    7. Your player is not responding.
    8. The player is performing erratically.
    Getting Started
    . Load your Creative Zen software from CD FIRST and BEFORE plugging the Zen MP3 player, using the short cable, into the PC USB port to charge it.
    2. Try charging the Zen MP3 player directly from the USB port on the PC. If not, make sure the USB Hub you are using is adequately powered to provide full charging current to the Zen player. Also, try to have the Zen MP3 player as the only USB device, if possible, on the USB hub.
    Some/most Creative Zen flash MP3 Music players come "fully discharged" so, in the mean time, just read the manuals.
    FULLY charge the Zen MP3 player for several hours (~4.0 hrs max) until the battery symbol is NOT flashing AND the battery symbol/icon has a small plug/key symbol in the middle.
    After the first full charge - additional charging is much quicker about 2 /4 hours. (From 0% empty to full)
    3. Go to Creative/Support/Downloads and check for the latest software releases for the Creative Zen. Then check on your Zen MP3 player under System/Information for your firmware revision. Make sure you have the latest software downloaded on your PC and firmware on your Zen MP3 player. < Latest revision [.2.0] 28Feb08>
    OR
    You can run MP3 Player Recovery Tool - see above.
    4. In some cases you might have to do the Recovery Mode "paper clip reset" to get the Zen MP3 flash player started.
    See the Zen User's Guide FAQ. The paper clip reset hole is on the bottom edge below the music pause/run switch.
    (Not the slotted mic hole on the top edge of the player near the earphone jack and SD card slot!!!)
    5. My preference is to have the player shutdown/off before inserting and removing the earphone/headphone plug.
    Recovery Mode Using The Paper Clip OR
    Alternati've Method For Recovery Mode Without The Paper Clip.
    Why use it's
    If you experience one or more of the following symptoms:
    . The player is not detected in Creative MediaSource or Windows Media Player
    2. The battery does not last as expected
    3. Your computer stops responding during file transfers
    4. There is a power outage during file transfers
    5. There is an error about firmware
    6. LCD displays a "Firmware Problem" message
    7. Your player is not responding.
    8. The player is performing erratically.
    Save a copy of your player's content, if possible, before cleaning up the memory!
    Recovery Mode Using The Paper Clip Reset Method
    #. Turn off player if not already turned off
    #2. Press/hold play/pause button. If you accidentally release
    the button, start this reset procedure over again.
    #3. Gently push the end of a metal paper clip into the reset hole on
    the botton edge below the play/pause switch.
    (Do not use the slotted mic hole at the top edge near the earphone jack)
    #4. Slide the on/off/lock switch towards the on position - slide it to the botton hold
    until the display lights up and then release.
    #5. The recovery mode screen appears and four menu items are shown - see below
    <Alternati've Method For Recovery Mode Without The Paper Clip>
    #. Turn off player if not already turned off
    #2. Press/hold play/pause button. If you accidentally release
    the button, start this reset procedure over again.
    #3. Slide the on/off/lock switch towards the on position - slide it to the botton hold
    until the display lights up and then release. Be patient and wait!
    #4. The recovery mode screen appears and four menu items are shown:
    < Clean Up> - cleans, rebuilds and reorganizes your player's memory and restores it to optimal efficiency.
    When the cleanup is complete, select Reboot. Your player restarts and starts rebuilding its music library.
    Note: Your player's firmware is reset to default settings after your player's memory is cleaned up.
    Note: This procedure the hide/show password is reset.
    <2 Format All>- Warning - Formatting your player erases all content on your player's memory and resets your player's firmware to default settings. If possible, back up all data on your player before proceeding.
    Also, you can do this from the PC see Zen User's Guide. FAQ
    <3 Reload Firmware> - Caution !!!! Selecting Reload Firmware erases your player's firmware.
    DO NOT select Reload Firmware unless you have downloaded a newer firmware version for your player, or have been advised to do so by Creative Customer Support.
    Note: My advice when loading/replacing firmware is to connect directly
    to the PC USB port without using a USB hub.
    <4 Reboot> Restarts the player just like the "on/off/lock switch" when switched ON.
    Note: Having NO battery energy/charge/juice this procedure will not work.
    Lithium-Ion Polymer Battery Hints
    Ref:
    http://www.omnica.com/omniview_electronics2.htm
    http://en.wikipedia.org/wiki/Lithium_ion_battery
    . Allow the battery to completely discharge from time-to-time then recharge it fully.
    2. Lithium-Ion batteries loses about 5%- 0% capacity per month.
    3. Lithium-Ion polymer batteries have about 300-500 discharge/charge cycles.
    4. A half full battery indication (50% @ /2 the battery color) used up about 24 hrs worth of battery. Below 50% the indication goes fairly fast to the max of 30 hrs. Note: The battery level indication seems non-linear through out its range.
    5. Battery is Empty~0% - warning screen will appear on LCD and player might shutdown.
    6. Battery is Full- 00% with battery symbol NOT flashing AND plug/key symbol in the center of the battery.
    7. It takes about 2 /4 hours to charge the battery from empty to full.
    8. It takes about 4 hours max to charge a "New" Zen player shipped from the factory.
    9. There is a battery manufactuer's failure rate, which is normal ~ % or less, in which the Lithium-Ion Polymer battery refuses to charge. Creative, ships the Zen MP3 players with some or no charge so there is very small probability that you could have one. I call it the "Deep Six Discharge Battery" Contact/call Creative for replacement.
    Documentation
    There are several pieces of documentation you might need to read to fully understand and use your Creative Zen MP3 flash player to its fullest capabilities.
    #. Zen Users Guide "English" - For Zen MP3 Player - download from Creative/Support/Product documentation
    #2. Zen Quick Users Guide /Front/Back - download from Creative/Support/Product documentation
    #3. Sync Manager (Creative Zen) Click on sync symbol on PC task bar then help
    #4. Creative Zen Media Explorer - Just look under the main help menu
    #5. Windows Media Player <if used>(Microsoft)Use the help files with this program.
    General Tips to increase/decrease the playing time on your Creative Zen flash player.
    <Creative Battery Spec: 5 Hrs. Video & "UP TO" 30 Hrs. Audio/Songs>
    Please do the following:
    . Volume control lower/higher - higher volume settings will decrease playing times. This is logical. More output "volume power" decreases the battery juice.
    2. Audio Settings: EQ, Smart Vol, & Bass Boost will effect your playing time but I believe they are not critical as the Volume & Bit Rates(28 kbsp and others) / File Format (MP3,WMA) & Lock Switch.
    3. Bit Rates & File Formats Do Matter. Bit Rates and File formats will increase/decrease your playing time.
    Per Catherina-CL
    "WMA files will use up more power than MP3 files, and higher bitrates more so than standard ones (like 28kbps MP3). Best thing to do is rip an album in 28kbps MP3 and leave it playing in a loop on a normal volume level. See how long the battery lasts then."
    Please Note: The main difference between MP3 and WMA is the compression. According to Microsoft a 64KBPS WMA file is the same quality 28KBPS MP3. This is of course up to a person's preference but you may find you can get better compression out of WMA.
    4. FULLY CHARGE your Zen. This means the battery symbol is NOT flashing AND there is a plug/key symbol embedded within the battery symbol. The battery is 00% FULL under BOTH conditions. Having just the battery symbol all green will not do it.
    From the link:
    http://www.omnica.com/omniview_electronics2.htm
    Regarding lithium-ion shelf life, one of our engineers recently met with a battery-house representati've. It has come to their attention that repeated charging and re-charging of a less than fully discharged Li-ion cell affects the battery "gas gauge" included with many devices. Over a number of cycles there is a resultant loss in accuracy. Frequently, the indicated remaining charge has little relationship to the actual amount of life left in the cell! Fortunately, according to the battery expert, the gauge will reset itself if the battery is allowed to completely discharge from time-to-time.
    5. Having different types of earphones/headphones will increase or decrease the playing time by how much "electronic load" the earphones/headphones create on the Zen player. There are some power hungry earphones/headphones out there.
    The 6 ohm earbuds conserves battery power more than the 32 ohm earbuds supplied by Creative. (About 0% more)
    6. Always, always lock your Zen player while playing music. This cuts off the power drain from the color 2.5" LCD and blank the LCD screen. After all, you can't read the LCD screen if it is in your shirt pocket and playing music!
    7. Make sure you have the latest firmware upgrades in order to get the best of your Creative Zen Flash MP3 Player.
    Troubleshooting
    Your Creative Zen is extremely complex.
    Check this link to peek inside player http://www.anythingbutipod.com/archi...isassembly.php
    Also, this link:
    http://arstechnica.com/journals/hard...ssor-behind-it
    There could be a million things that could go wrong with your player so you will not be the FIRST or LAST to have a problem. Keep in mind, there are many, many others that have the Zen with no problems whatsoever. Things happen, but Creative is there to help.
    Dropping a Zen or any other player might/will/possibly ruin the player for good!!!
    Since this player is solid-state (no moving parts e.g. mini-disk dri've) then the only thing that will keep it from running for years is the non-user replaceable Lithium-Ion battery. I will concentrate on some troubleshooting tips which are battery related but I hope you have already the latest firmware downloaded and installed on your player
    Battery - Lithium-Ion Polymer
    #. Battery won't charge "out of the box" new player.
    A. First, read above "Getting Started"
    B. Next, try a different USB mini cable.
    C. Next, there is a battery manufactuer's failure rate < %, in which the Lithium-Ion Polymer battery refuses to charge.
    Creative, ships the Zen MP3 players with no charge so there is very small probability thatyou could have one.
    I call it the "Deep Six Discharge Battery" Call / Contact Creative.
    #2. Battery won't charge properly after using the player for some time.
    A. When you plug in your player into the USB port via mini USB patch cable, the connection resets the player to the "docked screen" with the battery level gas guage , in the right hand corner.
    Sometimes this action does not reset the player properly but there is no indication to you that the player is charging.
    Just disconnect/connect the USB cable again.
    B. Sometimes, the Zen player gets confused and you have to do a Recovery Mode "paper clip reset" which forces the player into a "special menu screen" to clean-up the player and to reset the player which allows showing the "docked screen" while charging the unit. See Zen User's Guide for explicit instruction und FAQ.
    C. Since the Zens came out late in 2007, the maximum of 300-500 charge/discharge should not apply YETbut users beware, as with any other Lithium-Ion Polymer battery it will not charge fully "like new"because of a " fixed shelf life" (2-3 yrs) OR too many charge/discharge cycles. A battery replacement is in order.
    Methods of charging the Creative Zen MP3
    . The short mini-standard USB cable provided by Creative from the factory. Plugs into a PC USB port.
    2. Uni'versal Power Adapter (Creative) plugs into the wall. Works "anywhere in the world"
    Note: Different countries have different wall AC voltages and hertz requirements. This has adapters for different countries/locations wall outlets and a uni'versal power supply for all voltage and hertz requirements.
    Note: This is a heavy duty high/fast charging wall outlet charging adapter. (2400 ma)
    3. Auto/Vehicle 2 VDC charger (Creative) or other compatible vehicle 2 VDC to USB charger.
    4. EARHUGGER IPOD POWER POD - MP3-8370 (White compact module)
    http://www.earhugger.com/powerPod.html
    http://www.amazon.com/Earhugger-MP3-.../dp/B000QTTKSS
    This compact module will solve all the following travel modes and conditions:
    . Camping, hiking or outdoor travel - no PC or noAC or maybe no auto/car.
    2. Airplane travel - no PC or no AC or no auto/car.
    3. Train/subway travel - no PC or no auto/car
    4. Car travel - no PC or no AC
    5. Foot travel - no PC or no AC or no auto/car
    It uses 4 ways to charge the Zen:
    . Retractable mini-standard USB cord for PC charging. <--- does not communicate with PC! - only for charging
    2. Retractable mini USB cord for auto/vehicle charging (Fused)
    3. Retractable mini USB cord for wall 0-20 VAC 50/60Hz charging. (non-international use plug style)
    4. 9 VDC battery terminal for using standard alkaline 9 VDC or high ma Lithium 9 VDC to charge the Zen via
    mini USB cable. Note:You might need several alkaline batteries to charge the internal 550 ma hr Zen battery!
    Great for remote destinations.
    5. Rechargeable portable battery packs.
    Black & Decker has several "Power To Go"models CPI0B-C & CPI20XB (not for international use because of 20 AC 60Hz only charging wall wart)
    Note: There are other brands that also do this method of charging.
    http://www.blackanddecker.com/Produc...Path=4033.4040
    You charge this portable NiMH battery pack from the AC wall outlet so you can carry with you on trips to charge the Zen.
    6. Mobile phone chargers. Some have a mini-USB plug for charging the phone but it could be used to charge the Zen BUT BEWARE IT COULD RUIN THE ZEN IF IT IS NOT COMPATIBLE! The output should have a voltage of 5 VDC +- 5% (4.75-5.25 VDC) ON THE PROPER MINI-USB PINS and a charging current at least 200 ma to 2400 ma. See this forum for the recommend phone phone chargers to use with the Zen.
    Note: You are charging an internal Lithium-ion polymer 550 mahr battery in the Zen so the lower the charging current the longer it takes to charge.
    Note: You will find that charging the Zen from the wall charger is much faster than the "current limited" charging on the standard PC USB port.
    Note: For diagnostic purposes and emergency charging of the Zen it is wise to have an external (non-PC) charging device for your Zen.
    Note: Only the battery charging symbol shows up on the Zen when using an external charger.
    Scratches
    All plastic screens will scratch, doesn't matter which type you have.
    For minor scratches you could use the Novus three part cleaner, polish and scratch remover system. Do not use the #3 coarse abrasi've in this system! Be extremely careful in using this product !!!! Please check the web.
    OR
    Low abrasi've toothpase <--- some say this works
    OR
    CD scratch remover/repair kit <---- have not tried this.
    The Zen (Flash) MP3 glass LCD screen is covered by the overlay plastic you see on the front. Worst case, you can have only the outer shell repaired and replaced by Creative.
    To prevent scratches in the first place:
    Use the Zen cloth bag which comes with the unit (sometimes ) to prevent scratches.
    OR
    Buy the Zen clear plastic case (Clear Case #70AB2600002). Sold by Creative.< I use this>
    OR
    Buy an clear plastic overlay. (Screen protector #70AB2600003) which goes over the LCD protector screen for protection. Sold by Creative.
    OR
    Also, you can cut up a "generic" PDA screen protector to fit the Zen.
    OR
    Obtain a "digital camera lcd screen protector" from a camera store or internet
    OR
    "Invisible shield" -The best protection money can buy
    http://www.zagg.com/invisibleshield/...ns-shields.php
    How to destroy your Zen - WHAT NOT TO DO
    . Leave it in the auto/car/vehicle - the vehicle inside heats up 20-35 F higher than the outside temperature.
    2. Leave it outside in freezing temperature 0C 32F. The LCD will freeze/discolor/absorb water.
    Note: It is remotely possible it could recover when warm-up at room temperature.
    Note: Just keep the Zen near your body heat when outside in freezing temperatures.
    3. Dropping it might cause the LCD screen to crack or loosen up the internal connections to the electronics or short out the internal electronics.
    Note: Use a protecti've case to cushion the blow from dropping the Zen.
    4. Dropping or submerging or getting the Zen wet in water might short out the electronics and battery.
    You could prevent destruction by immediately shaking the Zen vigorously in open air to dry it out.
    5. Sitting on it could flex the electronics and short or open circuits which would cause a defecti've/faulty Zen.
    <A bit of humor ... There is No Santa Claus, Easter Bunny or Tooth fairy and Creative does NOT give away money. If you destroy or damage your Zen you will pay not Creative>
    How can you tell if your Zen is defecti've/faulty
    . A "white screen" or a "totally blank black screen" shows up on the Zen LCD.
    2. You cannot force the Zen into the special "Recovery Mode" menu screen.
    3. The Zen refuses to "take a charge"(To charge up the internal Lithium-Ion Polymer battery)
    4. The Zen LCD is cracked or distorted due to dropping or handling abuse.
    5. The Zen clock does not keep accurate time (within 2 mins max per month)
    Contact Creative if any of the above faults occur - the Zen is bad and nothing you can do will fix it!
    WSOD "White Screen of Death"
    The "White Screen of Death" is really caused by a hardware problem. You see, the internal Freescale/SigmaTel STMP3700 MP3 processor has to write to the LCD. If this operation is prevented by internal electronic opens or shorts, bad STMP3700, locked-up firmware, bad LCD or any other electronic component failure then the CPU might/will halt and refuse to write to the LCD which will be reflected in a "white screen of death" I cannot cover all the causes of the "white screen of death" but rest assured Creative should pick these problems up in their quality control manufacturing process with a 99% success rate. Problems do show up after the manufacturing process but Creative has warranty protection for this other % fault rate. (Which is normal in electronics manufacturing)
    Media Content
    Listening to the built-in music on the Zen is OK but after a while your question now becomes "What else can I do with my Zen "
    Note: The "How to" instructions for adding Media content can be found in the Zen documentation.
    Terminology:
    Album: Collection of tracks or songs under one "album" title.
    Artist: Track or song artist
    DRM: Digital rights management - copy protection scheme - Zen cannot use music with this music protection scheme. (itunes) (But "itunes plus" will work)
    Genres: Type or kind of music
    <The following genres are defined in ID3v>
    Blues,Classic Rock,Country,Dance,Disco,Funk,Grunge,Hip-Hop,Jazz,Metal,New Age,Oldies,Other,Pop,
    R&B,Rap,Reggae,Rock,Techno,Industrial,Alternati've ,Ska,Death Metal,Pranks,Soundtrack,Euro-Techno,
    Ambient,Trip-Hop,Vocal,Jazz+Funk,Fusion,Trance,Classical,Instru mental,Acid,House,Game,Sound Clip,
    Gospel,Noise,AlternRock,Bass,Soul,Punk,Space,Medit ati've,Instrumental Pop,Instrumental Rock,
    Ethnic,Gothic,Darkwave,Techno-Industrial,Electronic,Pop-Folk,Eurodance,Dream,Southern Rock,
    Comedy,Cult,Gangsta,Top 40,Christian Rap,Pop/Funk,Jungle,Nati've American,Cabaret,New Wave,
    Psychadelic,Rave,Showtunes,Trailer,Lo-Fi,Tribal,Acid Punk,Acid Jazz,Polka,Retro,Musical,Rock & Roll,
    Hard Rock
    <The following genres are Winamp extensions>
    Folk,Folk-Rock,National Folk,Swing,Fast Fusion,Bebob,Latin,Revival,Celtic,Bluegrass,Avantg arde,
    Gothic Rock,Progressi've Rock,Psychedelic Rock,Symphonic Rock,Slow Rock,Big Band,Chorus,
    Easy Listening,Acoustic,Humour,Speech,Chanson,Opera,Cha mber Music,Sonata,Symphony,
    Booty Bass,Primus,Porn Groove,Satire,Slow Jam,Club,Tango,Samba,Folklore,Ballad,Power Ballad,
    Rhythmic Soul,Freestyle,Duet,Punk Rock,Drum Solo,A capella,Euro-House,Dance Hall
    <A bit of humor: I think the above Genres lists are missing two - "elevator music" & Crying and Whining e.g. Country Western>
    ID3 Tags: Internal file information associated with an Mp3 or wav audio file. This format contains
    Track number, Album name/title, Genre, Artist and Song Title which can be sorted and indexed by
    the Zen device.
    IPTV: Is a system where a digital television service is deli'vered using Internet Protocol over a network infrastructure, which may include deli'very by a broadband connection. http://zencast.com/
    JPEG: Is a commonly used method of compression for photographic images.
    This is the only photo format used by the Zen.
    MP3 and WMA music tracks: Music format used by the Zen.
    Note: Having the wrong bit rates will drain the Zen battery faster. (See above)
    MP3: Is a digital audio encoding format using a form of lossy data compression.
    Non-protected AAC: Files are regular AAC files without any DRM: they can be converted to other formats (like MP3) and can be played on an unlimited amount of devices and burned an unlimitd amount of times. They have no restrictions.
    Podcast: Is a series of digital-media files which are distributed over the Internet using syndication feeds for playback on portable media players and computers. http://zencast.com/
    Protected AAC: Files are AAC audio files that contain DRM (Digital Rights Management), most often music purchased from the iTunes store. The Creative Zen cannot use these files.
    Note: "Itunes Plus Store" have songs without DRM which the Zen can use.
    Ripping CDs: Copying tracks from an audio CD on a PC and downloading tracks to the Zen.
    Note: Use the Creative Zen Media Explorer for ripping audio CD is one method.
    Song Title: Name of song or track
    Track Number: Numerical number of track of CD album.
    Track: General name for song or song title.
    Unprotected AAC format: Music format used by the Zen
    WMA:Is an audio data compression technology developed by Microsoft. The name can be used to refer to its audio file format or its audio codecs.
    WAV: (or WAVE), short for Waveform audio format, is a Microsoft and IBM audio file format standard for storing an audio bitstream on PCs.
    Note: The Zen's built-in microphone produces this audio file format.
    Zen Audio Format:MP3, WMA, WAV, non-protected AAC (.m4a), Audible (2, 3, 4)
    Zen Media Content: Video, Music, Audio, Photos/Images transferred/dowloaded into the Zen
    Zen Photo Format:JPEG
    Note: You can copy/drag/paste JPEG photos from your PC to your Zen for viewing.
    Note: You can import photos & view photos from the SD card.
    Zencast Organizer: Seamlessly integrates ZENcast media files with Creative portable media players and/or your computer
    Zen Video Format:MJPEG, WMV9 and (with transcoding - MPED4-SP, DivX 4/5 and XviD)
    Warning - In some countries (including the US) its illegal to do:
    Copying audio DVD & DVDs
    Defeating DRM MP3 Music (Digital Rights Management)
    Intercepting/copying (non purchased) music.
    Downloading music/songs from an illegal or "free" rouge website.
    General Media Content links:
    http://pro-music.org/Content/GetMusi...lineStores.php
    Note: Check to see if your music files/tracks contains ID3 tags.
    Note: ZEN also supports iTunes Plus tracks from the iTunes store,
    Note: The following media content is only a small fraction of means and ways
    of collecting/dowloading media content to the Zen.
    Media Content from Creative Website(s)
    Note: The Media Content can be found under "Fill your Zen" on the bottom of the Creative Zen product page.
    http://zencast.com/
    ZENcast is the ultimate source for free IPTV channels, video blogs and podcasts on the Internet. It provides quick and easy access to a wide range of interesting and entertaining video and audio content online.
    http://www.audible.com/adbl/site/cre...seBVCookie=Yes
    Audible.com - Audible.comis the Internet s leading audio provider of bestselling audio books, comedy programs and today s most relevant magazines and newspapers
    http://creative.vongo.com/
    VONGO is the video download service that gives you instant access to over 2500 hit movie and video selections from Starz .
    Watch movies whenever, wherever on your ZEN. A great entertainment venue for watching movies while on the road or on the go.
    http://www.napster.com/creative/
    Transfer unlimited music to your ZEN without paying per song.
    With Napster To Go you can:
    Choose from over 5 million songs, plus new releases every week
    Play music instantly from any internet-connected computer
    Find old favorites and discover new music by exploring playlists, radio, Billboard charts and more
    Create a library of your favorite music and build custom playlists.
    http://www.emusic.com/ZEN
    Choose from over ,500,000 songs
    Burn unlimited CDs
    Compatible with every MP3 player
    No confusing restrictions-Own your music!
    http://www.lala.com/frontend/action/...=user:2672@223
    Why pay 99per song when you can get the whole album for $At lala.com, you can trade your used CDs for new music.
    .8 million titles available for trade. CD quality guaranteed.
    Every CD you receive is yours to keep - no restrictions.
    Pay only $ per CD received. No monthly fees or commitments. Sign up is FREE.
    http://www.amazon.com/b/ &node=62663
    Buy or Rent Movies Online
    Watch DVD-quality video downloads on your PC or ZEN
    Conveniently download from your PC at work to your PC at home
    Discover thousands of TV shows & movies available for download
    I started this thread in April 08 to help other new Creative Zen MP3 (Flash) users. If there are common threads that are posted from new users then I try to make a section to inform other new users in solving their similar problems. I cannot believe that this thread was viewed over 0,000 times! Thank you for your "viewing" support.
    Please note: This thread is constantly changing so check back for any new helpful hints, problem solving, troubleshooting and practical solutions for the Creative Zen.
    "The Creative ZenR O C K S"
    Zenandy
    Message Edited by Zenandy on 08--2008 08:26 AM

    Hi,
    I'm from germany so no 'best buy' but I think I will lock around sleeve/bag for a different product with same measures. Any tip?
    The clear plastic case is not what I want. I would like to use the player without such protections. I just want a sleeve to protect the player while its in my jacket/pants.
    Btw, i have bought this version: Creative Zen (maybe european version?). I also doesn't seem to have your mentioned sleeve. I also couldn't find it on the website.
    Anyway, thank you,
    Chris

  • Patch for MediaSou

    After applying the Gracenote patch for MediaSource, I am getting the following error: "MediaSource/ctcms.exe--abnormal program termination error" when trying to find CD info.
    It works but after getting info for the first CD, and you load a second CD to get info, the error will come up, and MediaSource will crash. After reopening, it will work, but it will crash each time a new CD is put in your dri've, and you have to go through the close and reopen routine.
    Is there a quick fix for this, or is this going to require a reinstall of the software.
    I do have my CD (which I'll have to dig up), as I noticed under the download page for the Sleek Photo, there is nothing there except the original firmware and the patch and a Zencast download. (As a suggestion, Creative should expand the Sleek Photo downloads somewhat).
    I also found a smaller patch from Gracenote, is this patch necessary at all, and again, is there a fix anyone knows about that doesn't require a reinstall.
    Thanks.

    micromouse wrote:
    Perhaps, you can give my earlier advice a try:
    Go to the menu "Tools->Settings". In the Audio CD/Rip tab page, did you enable "Automatically download CD information for new CD"? If so, you may want to disable this auto download of CD info. You can always click the Click Info to manually retrieve the CD info. Let us know whether this works for you.
    Note: My experience shows that it may help if you wait for a while for the CDROM dri've to "settle down" before you manually click Get Info.
    Tried it, didn't work. Not a big thing, more of an annoyance than anything.
    I used to use MediaSource to transfer files onto my device. Last night, I was transferring a hugh amount of music files using Sleek Photo Explorer, and this transfeered much faster than MediaSource, so I made a new discovery. I like the Sleek Photo Explorer, it is very useful.Message Edited by Tony3 on 09-9-2006 06:54 AM

  • Period is locked for new data [Message 131-107]

    Hi all,
    One of my client was faced this problem "Period is locked for new data [Message 131-107]" when they do Period-End-Closing for Year 2008 in SAP Business One 2007A Patch 42.
    Can anyone help me?
    Thank you.
    Best regards,
    danny

    Hi Danny,
    Check the link
    Period End Closing
    *Close the thread if issue solved
    Regards
    Jambulingam.P

Maybe you are looking for

  • PDF printing errors with HP Officejet Pro 8000

    When printing from FireFox PDF preview I always get a print feed jam error when printing the last 2 pages pages using double sided printing. There as been several documents that fail to print correct characters when using the HP (prints correctly usi

  • Acrobat 9 Standard keeps opening my forms in Acrobat Reader XI.

    It tells me that I cannot save data typed into the form.  Acrobat 9 Standard is set as the default for ALL .pdf documents.  If I right click the icon and choose "open with" and then select Acrobat 9, it will work, but if I double click the icon, it o

  • Will my bootcamp continue functioning after upgrading to Mavericks?

    Hello, everybody! I have an early 2011 13-inch MacBook Pro running Lion and I consider upgrading to Mavericks. The "problem" is that I also have Windows installed on the computer via Bootcamp and I would like to know if this is supposed to continue w

  • Returnable Packing - Sales order maintainance / Item Category determination

    Gurus, I have question about returnable packing regarding sales order entry and item category determination 1) Sales order : Should we do entry of returnable packing in Sales Order as a regular item Example : The material M1 - 100unites needs returna

  • Is there a way to search 3rd party downloads?

    It's great that apple provides an organized collection of 3rd party downloads: http://www.apple.com/downloads/macosx/ I can't always find the specific software that I am looking for. In the past, I recall that Apple provided a way to search these. Bu