E71: Duplicate/Dead Icons in Installations folder

My E71 came with the Tiger Woods PGA Tour game pre-installed, but recently the game icon began to duplicate itself... Now I am left with three PGA game icons in my installations folder and none of them works... I also tried to uninstall the game, but only one of the icons allows uninstall and that too it gives an error halfway thru, saying 'Removing Failed!'...
I've tried Nokia MIDlet restorer, but that didn't work either...
Any ideas??

i have nokia e71 and tigerwoods pga tour game icon duplicates itself into the installations folder.....it doesnt get deleted even after uninstallation and also comes again automatically even after a hard reset.....plzz help

Similar Messages

  • Each time I click on an icon or file folder, the installation of Adobe Professional 9.5 restarts.

    Each time I try to click on ANY file folder or desktop icon, windows installer starts and begins re-installation of the 9.5 upgrade!  After installing 9.5.1, same problem  There was no such problem until I upgraded form the orignal software Adobe Professional 9.0.  I have windows Vista Home Professional with service pack 2.  ALL installs of Adobe at all times seem to go to completion without a problem. I've tried restarting my pc many times.  Suggestions?

    What happens if you simply try to open Acrobat?

  • Automatically create folders then attach custom icon to each folder.

    This is my current working script, does anyone know how I can now add customer icons to the folders in Applescript
    Many thanks
    Matt
    set theWeekNumber to ""
    repeat
    display dialog "Please enter the week number:" default answer theWeekNumber
    set theWeekNumber to text returned of result
    try
    if theWeekNumber = "" then error
    set theWeekNumber to theWeekNumber as number
    exit repeat
    on error
    set thePrefix to "INVALID ENTRY! "
    end try
    end repeat
    set theAFolder to "AFolder_WK" & theWeekNumber
    set theBFolder to "BFolder_WK" & theWeekNumber
    set theEnd to "_PSD"
    set theEnd2 to "todo"
    tell application "Finder"
    make folder at folder "Studio:Users:matthewchild:Desktop" with properties {name:theAFolder & theEnd}
    make folder at folder "Studio:Users:matthewchild:Desktop" with properties {name:theBFolder & theEnd}
    make folder at folder "Studio:Users:matthewchild:Desktop" with properties {name:theAFolder & theEnd2}
    make folder at folder "Studio:Users:matthewchild:Desktop" with properties {name:theBFolder & theEnd2}
    end tell

    The following script uses a handler that will set a custom icon to a file item. In this example, you are prompted for the icon file and the file item to set to the icon, but you can just pass the desired image and folder paths directly to the handler.
    <pre style="
    font-family: Monaco, 'Courier New', Courier, monospace;
    font-size: 10px;
    font-weight: normal;
    margin: 0px;
    padding: 5px;
    border: 1px solid #000000;
    width: 720px; height: 340px;
    color: #000000;
    background-color: #FFD891;
    overflow: auto;"
    title="this text can be pasted into the AppleScript Editor">
    -- assign an icon to a folder or file (requires Developer Tools)
    -- any image file can be used for the icon
    property startingDirectory : (path to home folder) -- a place for the file choice dialogs to start from
    on run -- example
    try -- check for tools
    get "/Developer/Tools/" as POSIX file as alias
    on error
    error "Developer Tools not installed"
    end try
    set iconFile to (choose file with prompt "Choose an image file for the icon:" default location startingDirectory)
    if (do shell script "/usr/bin/file " & quoted form of POSIX path of iconFile) does not contain "image" then -- check image file
    error "The icon file is not an image"
    end if
    tell application "Automator Runner" to tell open panel -- using this panel allows the choice of a file or folder
    set floating to true
    set can choose directories to true
    set can choose files to true
    set allows multiple selection to false
    call method "setShowsHiddenFiles:" of it with parameters {false}
    set title to "Select an item to set to the custom icon:"
    set prompt to "Set Icon" -- this is actually the button text
    activate
    if (display it in directory startingDirectory) is 0 then -- cancel button
    error number -128
    else
    my (setCustomIcon from iconFile to (it's path names as text)) -- just one item
    end if
    end tell
    end run
    to setCustomIcon from imageFile to destination
    Set the icon of a destination file item to the image contained in imageFile
    parameters - imageFile [various]: an imagefile for the icon (Finder alias or POSIX text)
    destination [various]: a destination item to set to the icon (Finder alias or POSIX text)
    returns [boolean]: true if icon is set, false otherwise
    set imageFile to imageFile as text
    if imageFile starts with "/" then -- check for POSIX file
    set imageFile to imageFile as POSIX file as alias
    else
    set imageFile to imageFile as alias
    end if
    set destination to destination as text
    if destination does not start with "/" then -- check for POSIX file
    set destination to POSIX path of destination
    end if
    try
    tell application "Finder" -- copy the icon image to a temporary file
    (duplicate imageFile to (path to temporary items) with replacing) as alias
    set tempImage to quoted form of POSIX path of the result
    end tell
    set tempResource to quoted form of (POSIX path of (((path to temporary items) as text) & "TempResource"))
    do shell script "/usr/bin/sips -i " & tempImage -- add a Finder icon to the image
    do shell script "/Developer/Tools/DeRez -only icns " & tempImage & " > " & tempResource -- get the icon resource
    do shell script "/usr/bin/file " & quoted form of destination -- determine the destination file type
    if the result contains "directory" then -- folder
    set theTarget to quoted form of (destination & "/Icon" & return) -- create Icon\r file
    set Command to "rm " & theTarget & "; " -- remove any existing custom icon
    set Command to Command & "/Developer/Tools/Rez -a " & tempResource & " -o " & theTarget & "; " -- add resource file to a folder
    set Command to Command & "/Developer/Tools/SetFile -a V " & theTarget & "; " -- make it invisible
    else -- file
    set Command to "/Developer/Tools/Rez -a " & tempResource & " -o " & quoted form of destination & "; " -- add resource to a file
    end if
    set Command to Command & "/Developer/Tools/SetFile -a C " & quoted form of destination -- set custom icon attribute
    do shell script Command -- do it
    on error errmess number errnum -- oops
    log errmess
    -- display alert "Error " & errnum message errmess buttons {"OK"}
    return false
    end try
    try -- remove temporary files
    do shell script "rm " & tempImage & space & tempResource
    end try
    tell application "Finder" to update (destination as POSIX file)
    return true
    end setCustomIcon
    </pre>

  • Is there way to point to KM repository outside the EP installation Folder

    Hi,
    Is there way to point to KM repository outside the EP installation Folder.  BY default Ep gives defualt folder structure like
    KM Content  -> Root
    under root we have many folders like
    1. attachment
    2. collaboration_sessions
    3. discussiongroups
    4. documents
    Instead of built in struture , is there way to define my own repository structure which I will define in my windows system. From EP , I will point to this repositorty as starting point.
    Is this possible .
    or I would like go to the Ep's Built in folder ..  say
    "documents" ... from there instead of creating all the folder structure inside the documents folder .. I would like to create a link which will point to the my own folder strucure which is outside the Ep's default repository strcture.
    Is this possible ?
    thanks
    pK

    Hi PK G
    You can map an already existing folder outside KM into KM by creating repository manager. If the external folder is having documents that also will be mapped.
    1.Log on as an Admin user and choose System Administration @ System Configuration @ Knowledge Management @ Configuration @ Content Management @ Repository Managers.
    2.To create a CM Repository Manager, choose CM Repository.  You can copy (Duplicate) an existing CM Repository Manager or choose New.
    3.Please see the KM Administration Guide for all properties and valid values for configuring a repository manager.Save your repository manager choose OK.
    4.To ensure you repository manager has been created, go to Content Administration @ KM Content @ Repositories @ Root.  You should now see your repository manager you created.
    Regards
    Geogi

  • Duplicate application icons when I right click "open with" ??

    When I right click on an file and use "open with" command I get duplicate application icons in my finder window. Anyone know why? Solution?
    Thanks Ed

    Open the Terminal application in your Utilities folder and paste the following command in its entirety immediately after the Terminal prompt:
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/L aunchServices.framework/Versions/Current/Support/lsregister -kill -r -domain system -domain local -domain user
    Now press RETURN. Your finished when the prompt returns.
    Duplicates may still appear if you have different versions of the same program installed and if you have the software installed on multiple drives.

  • Every time that I play a tune from my itunes the file duplicates itself into my 'MyDocuments' folder. If I delete this the song is erased from itunes totally. Ideas??

    Everything worked fine for the last two years but now every time that I play a tune from my itunes the file duplicates itself into my 'MyDocuments' folder. If I delete this the song is erased from itunes totally. Ideas??

    You are of course deleting the tunes from within the iTunes interface.
    The settings that I am referring to are your device settings for the iPad. It should show in the left column of iTunes when your iPad is plugged in.
    Go through your playlists and make sure that the tunes(s) are removed from any playlist. You can prevent the sync as noted above then do a sync and the iPad should update with the content from you Mac.
    MJ

  • How can I assign an icon to a folder using Powershell?

    How can I assign an icon to a folder using Powershell?

    I'm trying to make a script that goes through a folder recursively, checks for every folder if it's name is "template", and if so it changes the icon of that folder to an icon
    I chose.
    I searched for an answer here, and I've only managed to find a way to assign an icon to a shortcut, but not to an existing file.
    Thanks in advance (:

  • How can I install Firefox SILENTLY in a specific installation folder, -ms with which parameters ?

    How can I install Firefox SILENTLY in a specific installation folder, -ms with which parameters ?
    "Firefox.exe_path" -ms OPTIONS ??
    Thanks.

    '''Is there a way to download FF to a USB from another computer and install it from that USB on my PC? '''
    You basically answered your own question. If you have access to another computer just go download the appropriate language and OS version of Firefox 5.0 from http://www.mozilla.com/en-US/firefox/all.html and put it on you usb drive and then go and install it onto you pc.

  • How to select a group of icons in a folder?

    This may seem dumb, but I'm a new Mac (OS X) user. In windows I used to be able to shift-click a group of adjacent icons within a folder to select them, in order to copy them etc. On my Mac, I can only seem to do this in list or column view, and as a visually orientated person, I don't find this helpful - I want to see the icons I'm selecting. How do I do this?
    Thanks,

    From the Help menu 'selecting items':
    +Click to select a single item. Drag to select a group of items.+
    +Press the Shift key and click other items to include them in the selection. Click a selected item to deselect it.+
    +To select multiple items in a list that are not next to one another, press the Command key and click the items you want. Click a selected item again to deselect it.+

  • Just installed CC on my PC, Windows 7, 64 bit system. Not seeing any applications on the desktop or installation folder. However, all the resource files are present in the installation folder. What am I doing wrong?

    Just installed CC on my PC, Windows 7, 64 bit system. Not seeing any applications on the desktop or installation folder. However, all the resource files are present in the installation folder. What am I doing wrong?
    I've installed three times with no luck. I downloaded the Creative Cloud Packager off the licensing site: https://licensing.adobe.com. I unpacked and choose my applications. The install seemed to be successful, but I don't so any of the applications anywhere.

    Hi,
    Creating package doesn't mean it will install the product,
    You will need to install the package now. Please follow the instructions mentioned in the below articles
    Creative Cloud Help | Creating or editing packages
    Creative Cloud Help | Deploying packages
    Please let me know if it doesn't help.
    Regards,
    Devendra

  • What does the icon of a folder with a question mark inside mean?

    After an overnight power outage I tried to turn on my iMac this morning, but all I got was clicking sounds and a gray full screen with the icon of a folder with a question mark inside it, blinking. (There's no tool bar that appears anywhere). What does that mean?
    I've tried unplugging the system and waiting a while before attempting another boot. Same screen.
    I recently (a month ago) upgraded to Snow Leopard from my original OS X software. Never had this sort of a problem before.The iMac was purchased around 2005 or 2006. Intel Dual Core processor.
    Thanks for any help on this.

    Thanks, Paul, for the prompt reply.Obviously, your answer isn't what I wanted to hear, but feared. When I get home tonight I'll try finding the install disk and booting from that. Fortunately, I still have a MacBook Pro that is running fine.  Incidentally, I have a Western Digital external Hard Drive that has very little, if anything on it. But since I can't open anything on the iMac, I guess I'll have to see if the install disk works before I try to figure out IF I can use that WD-External drive temporarily rather than replace the HD on the iMac. Any clues on what a replacement drive and labor runs for that sort of iMac repair?
    j

  • After trying to backup  my hard drive i can't get my G4 quicksilver to boot. I get the old icon of a folder with a split face that alternetes with a flashing question  mark

    My G4  won't boot. I have tried holding down the c key to boot from a 10.3 disc and it doesn't boot. I keep getting the icon of a folder with a split face that flashes to a question mark. I know that usually means that the startup drive can't be found, but I have 2 good drives i have tried to boot with and it won't start up. Any ideas from out there/ Thanks in advance.

    I doubt it's CCC's fault, possibly a bad DIMM, or slot, or corrosion in the slot.
    How large is the drive? Which G4? Some can only handle 128-123 GB Drives. Is it an old drive?
    So we know more about it...
    At the Apple Icon at top left>About this Mac, then click on More Info, then click on Hardware> and report this upto but not including the Serial#...
    Hardware Overview:
    Model Name: eMac
    Model Identifier: PowerMac6,4
    Processor Name: PowerPC G4 (1.2)
    Processor Speed: 1.42 GHz
    Number Of CPUs: 1
    L2 Cache (per CPU): 512 KB
    Memory: 2 GB
    Bus Speed: 167 MHz
    Boot ROM Version: 4.9.2f1
    If you don't know the model, find the Serial# & use it on one of these sites, but don't post the Serial# here...
    http://www.chipmunk.nl/klantenservice/applemodel.html
    http://www.appleserialnumberinfo.com/Desktop/index.php
    How to find the serial number of your Apple hardware product...

  • HT1338 MacBook Pro 13.3: Desktop screen will not come up when turned on.  Screen is blank except for an icon of a folder with a question mark on it, in the middle of an otherwise blank screen, laptop making a clicking noise.

    My MacBook Pro 13.3 MAC OS  X v10.7 laptop will not come up.  Blank screen comes up, no color/desktop, etc., only an icon of a folder in the middle of the screen with a question mark on the folder.  Laptop making a clicking noise. Suggestions? Thanks!

    It's under warranty. Take it in to have Apple fix it.
    The "flashing ?" means the machine can't find the start up disk. The clicking noise is a give away that the drive is damaged.

  • Changing Win 8.1 Pro Store App Installation Folder

    I have a Dell Venue 8 Pro tablet with Windows 8.1.  The c:\ is very limited capacity at only 24GB.  With the OS only on the c:\ I just have 8.6GB of free space.  So I have added a 64gb SSD to the machine and want to install all my apps on
    it and not the C Drive.  I know the apps get installed in c:\Program Files\WindowsApps folder so I have ROBOCOPY'd all the files to d:\Program Files\WindowsApps and created a symbolic link using mklink.  It seems that new apps are install correctly
    now on d:\ however the existing apps fail to open. What is the Microsoft's solution to making this happen seamlessly?

    Hi,
    I am sorry to say the action about changing the folder location is not supported. And the APP installation folder is designed hidden by default, which means the folder should better not be modified by users.
    So if we have any backups available, please consider to restore to the point before the modification, and then using Diskpart to make the C:/ drive larger. Or we might consider to
    reset the PC.
    Best regards
    Michael Shao
    TechNet Community Support

  • How to change icon of a Folder-track?

    By Folder-track I mean the Folder in Arrange window that is created from "packing reions". Is that even possible in LogicPro7 - to change it's icon?
    I mean I know how to change icons for my audio tracks, audio-instrument tracks. And it would be nice if I can assign different icons for different Folder-tracks.
    I did not find how to do that

    It is possible... use option-command-hold on the icon of the folder in a track in the arrange and up pops the many icons to choose from.
    You can set the icon to something other than the folder.
    To make different folders I guess you would have to do some image editing
    and make your own icons but that is pretty easy.
    Put your user create icons here...
    ~/Library/Application Support/Logic/Images/Icons
    and logic will load your numbered image file instead of the default ones that
    Logic would normaly use.
    Note: 1.png is the file name of the regular folder icon.

Maybe you are looking for

  • How do i put my apps and music onto my new computer

    How do I put apps and music onto my new computer.

  • Rename file name & format using ftp sender

    Hi all, This is regarding the renaming of file at sender file(FTP) communication channel and placeing the same file in the same folder. At FTP server at sender side (i.e.clients place) is in .txt format.But now .txt file has to rename and change into

  • 11 pm modem mysteriously dialing, connecting, exchanging data

    I've been trying to figure out why my PowerBook has been waking up at 11pm, dialing, making network connection and exchanging data with a remote server. I suspect that it's looking for a software update but have no assurance that it's not something m

  • Need Help!!! Solaris 8 on SPARC

    Hello I'm trying to install Solaris 8 on ULTRA1 170. I cut all 3 CD's without any problem. Booting from the Install CD with "BOOT CDROM" command. It goes through the CD, reboots the machine and asks for the Software CD1. I put in CD1 click OK and it

  • Copying an Object?

    I am having trouble copying an object: http://www.birt-exchange.com/documentation/BIRT_220/EngineJavadoc/model/api/org/eclipse/birt/report/model/api/TableHandle.html I have 4 predefined TableHandles in a lookup List. I then need to create x copies fr