DPM 2010; migrated DPM protection group to new storage pool ; data on source disk is not expiring

I am running DPM 2010 with 4 storage pool disks. 2 are iSCSI; 1 is SAS; the fourth, also iSCSI, was recently deployed to replace the SAS storage pool disk.
(1) iSCSI
(2) iSCSI
(3) SAS - Source
(4) iSCSI - Destination
Initially we tried to migrate the entire data source (3) to the new iSCSI storage pool disk destination (4). This failed
Set-ProtectionGroup: The allocation of disk space for storage pool volume failed because there is not enough unallocated disk space in the storage pool (ID: 358). (Sorry, I was not allowed to attach an image).
We believe the source disk previously created dynamic links to the long-term retention device (tape) which resulted in exceeding the available space on the new destination iSCSI storage pool disk. The source storage pool disk was totaling ~2.5TB, but needed
~9TB for the destination.
Instead I've tried to migrate the DPM protection group. The migration was successful. I followed the procedure outlined here
"Microsoft DPM 2012 Sp1 – How To Migrate Data Source using MigrateDatasourceDataFromDPM by ICTtechie" (Sorry, I was not allowed to include a link).
My understanding / expectation was that the data on the source disk would expire within 5 days (as this is our retention time set for disk replication); instead data started to expire from the other 2 iSCSI (1), (2) storage pool disks.
What am I missing here?
Thanks

Ok - you may have bumped into this.
WMF 3.0 is incompatible with some Microsoft products including
DPM 2010.
Windows Management Framework 3.0 (WMF 3.0), which
includes PowerShell 3.0, was made available Dec. 11 on Windows Update as an
optional update but has since been pulled.
More information is available on http://blogs.msdn.com/b/powershell/archive/2012/12/20/windows-management-framework-3-0-compatibility-update.aspx
Resolution
To resolve this issue, uninstall KB2506146 or KB2506143.
Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread. Regards, Mike J. [MSFT]
This posting is provided "AS IS" with no warranties, and confers no rights.

Similar Messages

  • Migrating Protection group to new storage pool

    Hello all running DPM 2012. The environment was setup prior to my arrival and it was setup with 10 1.5TB storage pools.  I heard the thinking was this was the recommended size for storage pools.  Problem is now we are/have run out of disk space
    on those storage pools and jobs are failing with "DPM does not have sufficient storage space available on the recovery point volume to create new recovery points (ID 214)"
    I have created new 4 new storage pools of 10TB each and I want to know how I can migrate the protection group data to the new storage pools and have the protection group use the new storage pool moving forward.  I want to empty the smaller storage pools
    so I can kill them off and create larger storage pools.
    Unfortunately the GUI does not allow me to point to specific storage pools, it should, and I'm not familiar with DPM Shell commands.
    Any suggestions would be appreciated.

    Hi,
    http://technet.microsoft.com/en-us/library/dd282970.aspx
    The following commands can be used with the ntdisk number as seen in either the get-DPMDISK output, the Windows Disk Management GUI or DPM Management - Disks GUI.  In my example disk-0 is the system/boot disk and not used by DPM storage pool.
    EXAMPLE These commands show the migrations going from NTDisk 1,2,3,4,5,6,7,8,9,10 to NTDisks 11,12,13,14 
    $source = get-dpmdisk -dpmserver DPM-SVR-NAME | where {1,2,3,4,5,6,7,8,9,10 -contains $_.ntdiskid}
    $source
    $destination = get-dpmdisk -dpmserver DPM-SVR-NAME | where {11,12,13,14  -contains $_.ntdiskid}
    $destination
    Once you are satisfied the outputs are what you want, then run the following to do the migration:
    MigrateDatasourceDataFromDPM.ps1 -DPMServername DPM-SVR-NAME -source $source -destination $destination
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread. Regards, Mike J. [MSFT]
    This posting is provided "AS IS" with no warranties, and confers no rights.

  • DPM 2010 to DPM 2012R2 configuration transfer failure

    Hello,
    I’m doing a side by side upgrade from DPM 2010 to DPM 2012R2 and I’m trying to transfer my configuration with
    Ruud Baar's PS scripts DPMsaveConfig and DPMcreateConfig.
    On the new DPM 2012R2 box, when I run DPMcreateConfig it fails. 
    Here is the end of the log:
    “[14:07:30]      Allocating 
    DPM -Calculate = True for [C:\]...
    [14:07:42] Committing protectiongroup [Client Group 1]
    [14:07:54] Processing group [Client Group 1] finished
    [14:07:55] TRAP: DPMcreateConfig
    Exception calling "GetProtectionGroups" with "0" argument(s): "Object
    reference not set to an instance of an object."
    At C:\DPMcreateConfig.ps1:147 char:2
    +     $pg = $srv.GetProtectionGroups() | ?{$_.FriendlyName -eq $xgrp.GroupName}
    +     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo         
    : NotSpecified: (:) [], MethodInvocationException
        + FullyQualifiedErrorId : NullReferenceException
    Set-protectiongroup : Connection to the DPM service has been lost. (ID: 917)
    Review the application event log for information about a possible service
    shutdown. Verify that the following services are not disabled:
    DPM
    DPM Replication Agent
    SQLAgent$MSSQLSERVER2
    MSSQL$MSSQLSERVER2
    Virtual Disk Service
    Volume Shadow Copy
    At C:\DPMcreateConfig.ps1:358 char:2
    +     Set-protectiongroup $2ndmpg
    +     ~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo         
    : NotSpecified: (:) [Set-DPMProtectionGroup], DlsE
       xception
        + FullyQualifiedErrorId : UICantConnectToEngine,Microsoft.Internal.Enterpr
       iseStorage.Dls.UI.Cmdlet.ProtectionCmdLets.CommitProtectionGroup “
    Any help would be appreciated.
    Thanks,
    Ivan
    Ivan

    Hi Buchatech,
    Nope, I haven't tried the updated script.  I completed the migration manually 9 months ago.
    Thanks, 
    Ivan
    Ivan
    Ok. I knew this was an old thread. I thought I would respond anyway to make sure you figured it out. I do know that the updated script does not error out on SCDPM 2012 R2. 
    My Blog | www.buchatech.com | www.systemcenterportal.com
    If you found this post helpful, please give it a "Helpful" vote. If it answered your question, remember to mark it as an "Answer". This posting is provided "AS IS" with no warranties and confers no rights! Always test ANY suggestion
    in a test environment before implementing!

  • Upgrade from DPM 2010 to DPM 2012 R2

    Dears,
    is it possible to upgrade DPM from 2010 to 2012 R2.
    Thanks

    from
    https://social.technet.microsoft.com/Forums/en-US/18db5fd3-213b-4d60-b853-646daf780e3e/upgrade-from-2010-to-2012-r2?forum=dpmsetup
    I recommend to watch the video to upgrade DPM
    Update DPM 2010 to DPM 2012 -
    http://www.youtube.com/watch?v=v6hUyg5ePww
    Update DPM 2012 to DPM 2012 SP1 -
    http://www.youtube.com/watch?v=4VcN1jv_q_g
    and read the articles (you can translate using
    http://itools.com/tool/google-translate-web-page-translator)
    Обновление System Center DPM 2010 до DPM 2012 (текст)
    Обновление System Center DPM 2012 до DPM 2012 SP1 (текст)
    Обновление System Center DPM 2012 SP1
    до DPM 2012 R2 (текст)
    Have a nice day !!!
    DPM 2012 R2: Remove Recovery Points
    DPM blog

  • Creation of new storage pool on iomega ix12-300r failed

    I have a LenovoEMC ix12-300r (iomega version).
    IX12-300r serial number: 2JAA21000A
    There is at present one storagepool (SP0) consisting of 8 drives (RAID5).
    HDD 1-8 (existing SP0): ST31000520AS CC38
    I have aquired 4 new Seagate ST3000DM001 drives as per recommendation on this forum:
    https://lenovo-na-en.custhelp.com/app/answers/detail/a_id/33028/kw/ix12%20recommended%20hdd 
    I want to make a new storage pool with these 4 drives:
    HDD9-12 (new HDD and SP1): ST3000DM001-1CH166 CC29
    I have used diskpart to clean all 4 drives and the IX12-300r can see the drives just fine.
    When I try to make a new storage pool, naming it SP1 as the only storage pool is named SP0, I get an error: "Storage Pool Creation Failed"
    Please advise as to how I can get these drives up and running.
    Regards
    Kristen Thiesen
    adena IT

    I have pulled the 8 hdd from storage pool 0.
    Then I rebooted with the 4 new hdd in slot 9 - 12.
    Result: http://device IP/manage/restart.html, with the message: Confirmation required. You must authorize overwrite existing data to start using this device. Are you sure you want to overwrite existing data?k [yes] / [no]
    I then answer yes four times anticipating that each new drive needs an acceptance, but the dialog just keeps poping up...
    Then I shut down the device and repositioned the 4 new drives to slot 1-4 - but the same thing happened...
    Any suggestions?

  • Migrate data from DPM 2010 to DPM 2012

    Hello.
    I am currently using DPM 2010. I want to move to DPM 2012, but not as an upgrade. I am using a 20 TB storage pool for nightly backups and tape for weekly backups. The goal of the upgrade is to upgrade the OS as well as DPM, so this will be a fresh installation,
    not an in place upgrade. Is there a way to get the recovery point information for tapes and the storage pool migrated into DPM 2012 from DPM 2010?

    This topic is closer to system center forum and even there the answer is well beyond the scope. I would recommend
    1. MS System Center Guides
    2. Survival guides
    http://social.technet.microsoft.com/wiki/contents/articles/7075.system-center-2012-configuration-manager-survival-guide.aspx
    http://social.technet.microsoft.com/wiki/contents/articles/11414.system-center-2012-orchestrator-survival-guide.aspx
    http://social.technet.microsoft.com/wiki/contents/articles/11417.system-center-2012-endpoint-protection-survival-guide.aspx
    http://social.technet.microsoft.com/wiki/contents/articles/8113.system-center-2012-service-manager-survival-guide.aspx
    http://social.technet.microsoft.com/wiki/contents/articles/7809.system-center-2012-operations-manager-survival-guide.aspx
    http://social.technet.microsoft.com/wiki/contents/articles/11867.system-center-2012-data-protection-manager-survival-guide.aspx
    http://social.technet.microsoft.com/wiki/contents/articles/11415.system-center-2012-app-controller-survival-guide.aspx
    3. Book from Packt Publishing
    http://www.packtpub.com/microsoft-system-center-data-protection-manager-2012-with-service-pack-1/book
    Make experiments on test system before doing changes in production environment.
    Regards
    Milos

  • DPM 2010 to DPM 2012 Upgrade

    Hello
    We did an in-place upgrade on a few of our DPM 2010 servers to DPM 2012 and it went well. In the Reporting section, we have configured tape management reports on a weekly basis. The issue is that the information on 'overdue tapes' is not mentioned in the
    report which is now being sent. This issue persists on all the DPM servers that we upgraded. Any suggestion?
    Regards
    Pavit
    Pavit Bhutani

    Hi,
    This issue is fixed in UR3.
    2756127-Description of Update Rollup 3 for System Center 2012
    http://support.microsoft.com/kb/2756127
    Also - be aware of the following issue after installing UR3 if you are protecting SharePoint.
    KB2809773-The Data Protection Manager database grows and the console crashes after installing Update Rollup 3
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread. Regards, Mike J. [MSFT]
    This posting is provided "AS IS" with no warranties, and confers no rights.

  • DPM 2010 reinstall secondary, format storage pool

    I have 2 DPM servers, both 2010, a primary and secondary. The secondary is at a separate site and backs up the primary. The OS disk on the secondary died. Single disk. I did not have a backup of the system state nor the DPM db/configuration. The storage
    pool data is still in tact. I have managed to reinstall DPM and configure a protection group for the primary DPM server and attempt backups.
    The issue is that all of the DPM data in the storage pool from before the crash is still there. The storage pool is 7tb and was about 40% used. Since I've run new replication from the primary with the new jobs, it's about 80% used. This is my secondary server,
    so I think I can afford to wipe the entire storage pool on the secondary DPM and start over.
    But how do I completely format the storage pool? Is there a better way to accomplish what I'm doing? I do not need to keep the old recovery points/storage pool data, it's months old.

    I have another question for this configuration. I'm trying to understand whether the secondary DPM server "touches" or directly backs up the "protected servers" in the PG's on the primary? What I mean - does the secondary only pull data
    and backup the data from the storage pool on the primary or does it actually pull data and backup directly from the protected server, ie - Exchange or file server?
    I'm trying to best setup recovery points and sync on the secondary. I have a full PG setup on the primary with proper sync's and recovery points for my servers, but what is best for the secondary? It's simply replication of the primary, so a 1-time copy of
    the data, probably nightly would suffice for my business needs. Do I need to schedule any synchronization at all for the replication?
    On the secondary PG, do I need to choose each "protected server" and it's volumes and db's and applications, etc.?
    I know this question is all over the place. Sorry.

  • DPM 2010 Short and Long Term goals

    My question is related to size restrictions.
    Our existing DPM 2010 is setup with two protections groups, System State, and a Default (file) protection group. Both are set up the same. A co worker recently had to re-create a protection group due to his negligence and deleted it without looking at how
    it was setup in the first place, since then I've been having errors in backing up to tape:
    Synchronization frequency is set to just before recovery point
    Short term goals are:
    Recovery points are at 8:00 AM, 12:00PM, 6:00PM Everyday, Express Full is 8:00PM Everyday
    Long term goals are:
    Retention range 2 weeks, Frequency Weekly (1 recovery point every 1 week for the last 2 weeks)
    Full backups are set to Saturday at 11:00 PM
    Here's the thing, we have 3x3TB external drives that, historically have been swapped out weekly (Monday mornings, using Firestreamer for tape emulation). Since the co-worker broke, and re-created the protection groups, when we view DPM Console on Monday
    morning, we see that the backup jobs are failing, the 3TB drive is full. 
    Could this 3TB drive be full due to this weekly swapping out when it is set to a retention range of 2 weeks? Obviously, it could be because the protection group actually contains that much data, but I'm trying to wrap my head around sync frequency, recovery
    points and how that works into recovery goals. 
    Any help is appreciated.

    Hi,
    Right. After the registry key is added, all new recovery points written to tape will show they expire at midnight (12:00am) on they day they expire so any tape jobs that run later that day will be able to use that tape after the expiry
    date.
    To prevent tape jobs from failing because there are no tapes available, you can also add this registry value.
    During a new tape backup or if a tape becomes full and there are no other tapes marked free, Free (contains data) or expired in the library, DPM will raise an alert to prompt for another free tape to continue backup.  The same is true during a
    restore, if the needed tape is not in the library an alert will be raised.  By Default, DPM It will wait for
    1 hour before failing the job.
    This prompting timeout can be configured by the registry entry “PromptingTimeOut” under “HKLM\Software\Microsoft\Microsoft Data Protection Manager\1.0\Prompting”
    PromptingTimeOut:REG_Dword:43200000  (dec) = 12hrs
    The Formula is   (#hrs * 1000 * 60 * 60)
    1HR =  1*1000*60*60 =  3600000  decimal
    So for each hour to wait, multiply by 3600000.
    8hrs = 28800000  decimal
    Restart the DPMRA service.
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread. Regards, Mike J. [MSFT] This
    posting is provided "AS IS" with no warranties, and confers no rights.

  • Restore from DPM 2010 backup in DPM 2012

    Hi,
    I am planning to move from current DPM 2010 to DPM 2012 R2.
    In-place upgrade to DPM2012 does not seem to be possible due to upgrade errors so I will have to wipe off the physical server and install DPM2012 from scratch. I use virtual tape drive (firestreamer) and backup to disk for long term protection.
    The problem is how will I read my existing DPM2010 backups in DPM2012.
    Is there a way to attach old virtual tapes  and be able to restore data from it?
    Thanks for all your feedback.
    Tech Farmer

    Hi Eugene,
    Thanks for your reply.
    Your solution will work for inplace upgrade. My scenario is building DPM2012r2 from scratch., which means I will not be restoring DPM2010 DB. Due to this, DPM will have no record of the tape catalog/contents.
    Firestreamer will be able to mount the vTape but not identify whats in the vTape.
    With this in mind, I trying to figure out if there is a way to read the old virtual tapes (files) in the new DPM2012r2.

  • Manage DPM servers, running DPM jobs, etc from SCOM 2012 SP1

    Hi,
    Little background about our systems.
    We have a dedicated SCOM 2012.
    We have 22 DPM servers, DPM 2010 and DPM 2012 (we are upgrading to 2012 SP1, we have customers that still using Windows 2003 servers) to be managed by SCOM
    We have a few DPM servers that are not located on the same domain as the SCOM server (untrusted domain).
    Some problem we have
    1. When we try to manage the DPM servers from the SCOM server.
    From SCOM 2012 server I can “Manage DPM server” that are located in our domain but I cannot manage DPM servers located on untrusted domains (customer’s domains). I receive the below error message
    "Unable to connect to <untrusted domain DPM SERVER> ID: 948
    Verify that the DPM service is running on this computer"
    I guess it’s because the account that I’m using to run SCOM server located in our domain and does not have the permission to open the DPM console on the untrusted domain. So I wonder if it is possible to use “RUN AS profiles/accounts”
    to solve this issue, and how?
    2. I have installed SCOM 2012 Operations Manager Console on my computer and then installed DPM Central Console.
    When I select one dpm server (from my computer), that is on our domain, and then click “Manage DPM server” I got this error message
    "Unable to connect to <our domain DPM SERVER> ID: 33333
    1. Verify that the DPM service is running on this computer (YES)
    2. Verify that the current user has been added to at least one of the roles in Operations Manager. (YES)
    3. Open Operations Manage console and then try launching the DPM Console (THAT IS WHAT I AM TRYING TO DO)
    4. If you have re-imported the management pack recently, the role configuration may be corrupt. Open the DPM-specific roles and check if the roles have task assigned to them. If not, delete the roles and recreate the...."
    When I click on “Get more information” I get this error message.
    "You don´t have access permission to connect to the System Center Data Access service on <SCOM SERVER>. Please check if it is a permission issue".....
    Do you know why I cannot connect to any DPM server on our own domain?
    Why do I get access permission error on my computer but not on the SCOM server (using the same account)?
    What should we do to be able to connect to DPM servers that are on untrusted domain?
    3. Is it possible to see Last Recovery Point date/time in SCOM alerts?
    For me it is the first thing I look at. If it has failed 10 min ago it is not critical.
    But if it is a date and time more than 1 day old, then it is critical.
    I hope someone can help us with this
    Br
    SvBoho

    Hi,
    To manager DPM, I think we may need to add the account to local admin group of the DPM server.
    In addition, to connect to DPM the user needs permissions to DPM/SQL Server DPMDB.
    For your DCs, have your enabled agent proxy option? If not, please enable that option for all DCs.
    To monitor DPM with SCOM, please also go through the below links:
    http://kevingreeneitblog.blogspot.com/2011/10/managing-and-monitoring-system-center.html
    http://damatisystemcenter.com/2013/10/14/monitor-data-protection-manager-2012-using-scom-2012-sp1/
    Please Note: Since the web site is not hosted by Microsoft, the link may change without notice. Microsoft does not guarantee the accuracy of this information.
    Regards,
    Yan Li
    Regards, Yan Li

  • How to revert inactive protection group to active

    Hello Everyone,
    We have one DPM 2012 R2 server. Few days back I had stopped the protection of a member. Now i want to again add that member to active protection group.
    Drive letter, server name and other settings are same.
    Is there any way to accomplish this? I already have gone through the threads which talk about such issue and suggest to modify the protection and select the member which is inactive but that didn't work for me.
    Thanks,
    Arun
    Arun Kumar

    Hi,
    Modifying an existing protection group or making a new protection group and selecting the same data source should bring it out of inactive.  If it does not it is because one of the the data source properties or location has changed. 
    IE: For a volume, the volume GUID changed, for a Virtual machine, the VM GUID changed etc.   Worst case it does not come out of inactive and we make new replica / recovery point volume for it.  After new recovery points are made for the
    desired retention range, then manually remove the data source from inactive protection to free up the disk space.
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread. Regards, Mike J. [MSFT]
    This posting is provided "AS IS" with no warranties, and confers no rights.

  • Cannot re-add SQL database to protection group

    Hello,
    I have a situation where my BES database was inconsistent in DPM 2012 SP1. I removed the DB from my SQL protect group and deleted the replica data from the server. When I try to re-add it back to the protection group, I am unable to see the DB in the list
    of DBs on the instance.
    BES DB is mirrored (no FS Witness)
    Principal is 2008 R2 SP1 Cluster
    Mirror is 2008 R2 SP1 Server (No Cluster)
    DPM Server is DPM 2012 SP1, version 4.1.3417.0
    Protection Group is Auto-Protection enabled
    I have stopped protection on the entire SQL Cluster (keeping data), recreating the Protection Group. I have also disabled and re-enabled Auto-Protection. No dice.
    Any ideas?
    Shawn

    Hi,
    What was the original casuse of the inconsistency to begin with - that may hold a clue why we cannot re-protect ?
    Please make sure the mirroring role has not been switched.
    Any mirrored database will be listed on the principal server only and can be selected there for protection.
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread. Regards, Mike J. [MSFT]
    This posting is provided "AS IS" with no warranties, and confers no rights.

  • At what point should the storage pool be connected to a replacement DPM server?

    I have backed up the DPMDB and  SQL DB from our "old" DPM server, removed it from the domain, and installed the same version, DPM 2007, SP1, on a new server with the same FQDN.  At what point do I connect the storage pool to the new server? 
    Before restoring the db, or after restoring the db but before doing a dpmsync?  Nowhere in the sea of documentation on migrating and upgrading have I found that little detail mentioned.  Please help!

    Mike, I'm doing another DPM rebuild and upgrade, and I connected the storage pool too soon.  Can I save the situation, or do I need to detach the disks, uninstall DPM, delete the db, reinstall, restore the db from the previous backup, and then attach
    the disks and sync?  Thank you! 

  • Cannot create protection groups from Azure Portal

    Trying to setup Azure Site Recovery. Have successfully added the Hyper-V Sites and installed the provider and applied the registration key. Both servers show green. 
    The issue is when moving to the next step in the process of creating a Protection Group. I click create new protection group and the normal drop down list and options do not show up. I get an error saying "An
    error occurred while retrieving the required data for this view."  I have tried logging off and on trying different browsers (Chrome, IE, Mozilla) with same results. Have also tried multiple computers and servers same result. 
    I have looked up the PowerShell commands to try to find how to create the protection group from PowerShell but no luck finding specific command. 
    For now I am going to try to delete the sites, vault, and create everything from scratch. 
    <button aria-label="Replication Settings" class="fx-balloonicon-button" type="button"></button>

    Hello,
    Please can you share the following detail with me
    1) Go to the Jobs view of the ASR Vault & find the jobs which were run during the Registration of both your servers.
    2) Drill into the job and from the properties page please send us the JobId.
    We will need this information to understand what could have potentially gone wrong with the Vault.
    Regards,
    Anoop KV

Maybe you are looking for

  • How do i transfer my downloads to my i pod

    how do i transfer my downloads to my i pod manually my pc crashed at the point of sync so did not go all the way through and now i cannot transfer my purchases to my ipod

  • How do I change the admin name in the popup dialog

    I am giving my old MacBook (10.6.8) to my mother and for certain reasons I didn't want to wipe it clean but just clear out some of my stuff and transfer it to her.  Everything has been successful, including changing the User directory name from mine

  • IChat is timed out, can't log in

    Whenever I try to load iChat, it takes a while and then comes up with a message that says Could not connect to AIM The connection could not be completed because it timed out. Try again. but i try again but it won't log on. does anyone have a solution

  • Comment on JRE Size

    http://forums.java.net/jive/thread.jspa?threadID=959&tstart=0 There is a thread on java.net on jre size, if you want to comment. .V

  • Music stops after 30 seconds

    Music stops playing after 30 seconds, I can change the song but nothing sounds and time line continues working.