How to Modify My "Extensions" Folder to Add Joliet Volume Access Extentions

I am trying to install the software for my Netgear wireless router.
Problem is, you need to download a translating software before installing the Netgear software, which is written in ISO 9660.
The CD containing the Netgear software states the followin:
This Resource CD-ROM is written in a semi-universal file format called ISO 9660, with extended support for long file names. This extended format is called the Joliet format. Apple supports ISO 9660, but without the long file names. This causes the file names on the CD-ROM to be shortened to 8 characters when displayed on a Macintosh. As a result, the file titles lose their meaning and active links may not function.
An extension is available for the Macintosh that allows Joliet format CD-ROMs to be read correctly. The Joliet Volume Access extension, written by Thomas Tempelmann, can be obtained at
http://www.tempel.org/joliet/
Please download this extension and place it in the Extensions folder within your System Folder, then reboot your Macintosh. Then you will be able to correctly read the file names on this CD.
I tried to follow these instructions, but my IBook would not allow me to place the "extension" I downloaded into my Extensions folder. My computer says that the Extensions file can't be modified.
Anyone have any suggestions? Thanks!
I Book G4   Mac OS X (10.4.2)  

Hi H.,
Welcome to the forum.
You do not need to install any software on your Mac in order to enable it to work with your Netgear router. All routers come with a software/driver cd in them but it is unnecessary to install on a Mac.
All you need to do, after connecting the router to your Mac, is fire up a web browser and enter the ip address which you will find in the manual along with a user name and password which is also in the manual. Once you are into the setup pages of the router you can then configure it to your ISP's settings and also enable any security feature you wish. Save the changes, exit and that's it; you will now be able to surf wirelessly.
RD

Similar Messages

  • How to modify an existing query to add a column

    Hi all, I have an existing query :
    SELECT 2 as SOURCE_SYSTEM_ID, LI.IPROD AS SYSTEM_ID, LI.IPROD AS PART_NUMBER, LI.IDESC AS PART_DESCRIPTION, IsNULL((SELECT LZ.CCDESC FROM HCMEUP01.FRDA385A.LBPCSF.ZCC LZ WHERE (LZ.CCTABL = 'SIRF2') AND LI.IREF02 = LZ.CCCODE), '') AS PLANT_CODE, LIS.ISSTSD
    AS lifecycle_status, CASE LI.ILDTE WHEN 0 THEN convert(date, GETDATE()) ELSE (SUBSTRing(convert(varchar, LI.ILDTE), 1,4)+'-'+SUBSTRing(convert(varchar,LI.ILDTE), 5,2)+'-'+SUBSTRing(convert(varCHAR,LI.ILDTE), 7,2)) END AS LAST_ACTIVITY_DATE,
    LZPA.DATA AS PRODUCTION_TYPE, (CASE (LI.IITYP) WHEN '6' THEN 'SERVICE' ELSE 'ITEM' END) AS ITEM_TYPE, LI.IVEND AS PRIMARY_VENDOR, (SELECT LZ.CCDESC FROM HCMEUP01.FRDA385A.LBPCSF.ZCC LZ WHERE LZ.CCTABL='UNITMEAS' AND LZ.CCCODE=LI.IUMS AND LZ.CCLANG = '') AS
    UOM_INVENTORY, (SELECT LZ.CCDESC FROM HCMEUP01.FRDA385A.LBPCSF.ZCC LZ WHERE LZ.CCTABL='UNITMEAS' AND LZ.CCCODE=LI.IUMS AND LZ.CCLANG = '') AS UOM_BOM, (SELECT LZ.CCDESC FROM HCMEUP01.FRDA385A.LBPCSF.ZCC LZ WHERE LZ.CCTABL='UNITMEAS' AND LZ.CCCODE=LI. IUMR
    AND LZ.CCLANG = '') AS UOM_SELL, (SELECT LZ.CCDESC FROM HCMEUP01.FRDA385A.LBPCSF.ZCC LZ WHERE LZ.CCTABL='UNITMEAS' AND LZ.CCCODE=LI.IUMP AND LZ.CCLANG = '') AS UOM_PURCHASE, IsNULL((SELECT LZ.CCDESC FROM HCMEUP01.FRDA385A.LBPCSF.ZCC LZ WHERE LZ.CCTABL='BUYER'
    AND LZ.CCCODE=LI.IPURC), '') AS BUYER, (LI.IMHIGH) AS ITEM_HEIGHT, SUBSTRING(IsNULL((SELECT LZ.CCDESC FROM HCMEUP01.FRDA385A.LBPCSF.ZCC LZ WHERE LZ.CCTABL='SIRF5' AND LZ.CCCODE=LI.IREF05), ''), 1, 20) AS APPLICATIONS, IsNULL((SELECT LZ.CCDESC FROM HCMEUP01.FRDA385A.LBPCSF.ZCC
    LZ WHERE LZ.CCTABL='SIRF3' AND LZ.CCCODE=LI.IREF03), '') AS PORGRAM, (LI.IMWIDE) AS ITEM_WIDTH, LI.IMLONG AS ITEM_DEPTH, LI.IWGHT AS ITEM_WEIGHT_NET, LI.IMNNWU AS ITEM_WEIGHT_TARE FROM HCMEUP01.FRDA385A.LBPCSF.IIM LI, HCMEUP01.FRDA385A.LBPCSF.ISC LIS,HCMEUP01.FRDA385A.LBPCSF.ZPA
    LZPA WHERE LI.ICOND = LIS.ISSTSC AND LZPA.PKEY=('ITEMTYP'+LI.IITYP )
    Now I need to add a column called WORK_CENTER. I added a subquery to the existing one.  It looks like this:
    SELECT 2 as SOURCE_SYSTEM_ID, LI.IPROD AS SYSTEM_ID, LI.IPROD AS PART_NUMBER, LI.IDESC AS PART_DESCRIPTION, IsNULL((SELECT LZ.CCDESC FROM HCMEUP01.FRDA385A.LBPCSF.ZCC LZ WHERE (LZ.CCTABL = 'SIRF2') AND LI.IREF02 = LZ.CCCODE), '') AS PLANT_CODE, LIS.ISSTSD
    AS lifecycle_status, CASE LI.ILDTE WHEN 0 THEN convert(date, GETDATE()) ELSE (SUBSTRing(convert(varchar, LI.ILDTE), 1,4)+'-'+SUBSTRing(convert(varchar,LI.ILDTE), 5,2)+'-'+SUBSTRing(convert(varCHAR,LI.ILDTE), 7,2)) END AS LAST_ACTIVITY_DATE,
    LZPA.DATA AS PRODUCTION_TYPE, (CASE (LI.IITYP) WHEN '6' THEN 'SERVICE' ELSE 'ITEM' END) AS ITEM_TYPE, LI.IVEND AS PRIMARY_VENDOR, (SELECT LZ.CCDESC FROM HCMEUP01.FRDA385A.LBPCSF.ZCC LZ WHERE LZ.CCTABL='UNITMEAS' AND LZ.CCCODE=LI.IUMS AND LZ.CCLANG = '') AS
    UOM_INVENTORY, (SELECT LZ.CCDESC FROM HCMEUP01.FRDA385A.LBPCSF.ZCC LZ WHERE LZ.CCTABL='UNITMEAS' AND LZ.CCCODE=LI.IUMS AND LZ.CCLANG = '') AS UOM_BOM, (SELECT LZ.CCDESC FROM HCMEUP01.FRDA385A.LBPCSF.ZCC LZ WHERE LZ.CCTABL='UNITMEAS' AND LZ.CCCODE=LI. IUMR
    AND LZ.CCLANG = '') AS UOM_SELL, (SELECT LZ.CCDESC FROM HCMEUP01.FRDA385A.LBPCSF.ZCC LZ WHERE LZ.CCTABL='UNITMEAS' AND LZ.CCCODE=LI.IUMP AND LZ.CCLANG = '') AS UOM_PURCHASE, IsNULL((SELECT LZ.CCDESC FROM HCMEUP01.FRDA385A.LBPCSF.ZCC LZ WHERE LZ.CCTABL='BUYER'
    AND LZ.CCCODE=LI.IPURC), '') AS BUYER, (LI.IMHIGH) AS ITEM_HEIGHT, SUBSTRING(IsNULL((SELECT LZ.CCDESC FROM HCMEUP01.FRDA385A.LBPCSF.ZCC LZ WHERE LZ.CCTABL='SIRF5' AND LZ.CCCODE=LI.IREF05), ''), 1, 20) AS APPLICATIONS, IsNULL((SELECT LZ.CCDESC FROM HCMEUP01.FRDA385A.LBPCSF.ZCC
    LZ WHERE LZ.CCTABL='SIRF3' AND LZ.CCCODE=LI.IREF03), '') AS PORGRAM, (LI.IMWIDE) AS ITEM_WIDTH, LI.IMLONG AS ITEM_DEPTH, LI.IWGHT AS ITEM_WEIGHT_NET, LI.IMNNWU AS ITEM_WEIGHT_TARE,
    (SELECT LC.LWRKC FROM HCMEUP01.FRDA385A.LBPCSF.LCR LC WHERE RTRIM(LTRIM(LC.LITEM)) = RTRIM(LTRIM(LI.IPROD)) ) AS WORK_CENTER FROM HCMEUP01.FRDA385A.LBPCSF.IIM LI, HCMEUP01.FRDA385A.LBPCSF.ISC LIS,HCMEUP01.FRDA385A.LBPCSF.ZPA LZPA WHERE
    LI.ICOND = LIS.ISSTSC AND LZPA.PKEY=('ITEMTYP'+LI.IITYP )
    Please see the bolded and italic part.   The problem is that the subquery is non distinct.  I am getting an error "
    Msg 512, Level 16, State 1, Line 2
    Subquery returned more than 1 value. This is not permitted when the subquery follows =, !=, <, <= , >, >= or when the subquery is used as an expression."
    Can you let me know how I can resolve this issue? it is an urgent request.  Thank you
    Thank You Warmest Fanny Pied

    I was given the existing query and the subquery as they were.  The subquery is as it is returning multiple records on the columns selected.  The person who give me the sub query is sure those are the correct tables to use to develope/change the
    query. 
    select
      DISTINCT a.litem,
    b.IPROD,b.idesc,a.lwrkc
    from HCMEUP01.FRDA385A.LBPCSF.LCR
    a, HCMEUP01.FRDA385A.LBPCSF.IIM
    b
    where
    a.litem=b.iprod
    Thank you for your help.
    Thank You Warmest Fanny Pied

  • How do I install a Thunderbird add-on for all users? Putting the XPI file into Extensions folder didn't work.

    I'm trying to install Enigmail 1.8.2 for all users. I thought I read somewhere that you don't need to unpack the XPI file.
    Whilst writing this, I did some experimenting and found a solution, but it's messy (see below). Is there an easier way?
    Fresh install of Thunderbird 31.6 on Windows 7 x64. Have observed the following:
    1. If I install the extension for one user via the Add-Ons GUI (from the marketplace, not from a local file), it does work. The Appdata\Roaming\Mozilla\Extensions folder is empty. Folder {847b3a00-7ab1-11d4-8f02-006008948af5} is created in Appdata\Roaming\Thunderbird\Profiles\xxxxxxxx.default\extensions\staged\ and moved from staged to extensions when TB is restarted.
    2. If I download the XPI file from Enigmail site and copy it to Program Files(x86)\Mozilla Thunderbird\Extensions folder, then Thunderbird's Extensions screen says "You don't have any add-ons of this type installed".
    3a. If I rename the xpi to zip (e.g. enigmail-1.8.2-tb+sm.xpi.zip) then I can open it and see that the contents are similar to what was created at point (1). If I unzip the contents, then Thunderbird doesn't recognise the add-on, unless I rename the folder to the GUID above (which could be found in install.rdf or chrome.manifest, once you know what you're looking for).
    Presumably I could also have done a per-user install, copied the folder from the profile, removed the extension, then pasted the copy into the program folder. That would save looking up the GUID but is only a little less fiddly.
    3b. After renaming the folder and restarting TB, it gives me a new tab "Install Add-on" which says "Another program on your computer would like to modify Thunderbird with the following add-on: ... Location: C:\Program Files (x86)". Once I allow the add-on, it is listed in Profiles\xxxxxxxx.default\extensions.ini.
    Aside: Disabling the add-on simply removes the line from extensions.ini, so how does TB distinguish between an unapproved add-on and a disabled one? It seems to be in extensions.json.

    Is Thunderbird already installed in the computers? If so, you could download the .xpi file and drag and drop it into the extensions window (after opening that) to install it in all the computers, following which you click the Install buttons when they become enabled, and you might have to restart Tbird afterwards.

  • "Another program on your computer would like to modify Firefox with the following add-on" - how do I allow extensions?

    I cannot get extensions to run or enable, nor does the browser remember my preference.
    For example, after I install or Enable an extension, when I restart Firefox I get a tab for every extension that forces me to check "Allow this installation" after the prompt "Another program on your computer would like to modify Firefox with the following add-on".
    Moreover, when I click 'Options' on an installed extension, Firefox freezes permanently.
    Note that I DO NOT have any extensions.* files in my Profile folder, nor do they appear.
    I am trying to get MozRepl running. I am able to install it, but the menu option does not get added in the 'Tools' menu. Moreover none of the installed extensions are able to add to the menu.
    I've tried every solution in the following links
    https://support.mozilla.org/en-US/questions/929335
    http://kb.mozillazine.org/Preferences_not_saved
    https://support.mozilla.org/en-US/kb/how-to-fix-preferences-wont-save
    I have made the Profiles\ folder and all subfolders Read-only, including the files.
    I have tried the "Reset Firefox to its default state".
    I have tried uninstalling (including removing all profiles/data) and re-installing Firefox, and I get the same issues.
    My operating system is Windows 7 and I have McAfee SiteAdvisor Enterprise Plus and McAfee VirusScan Enterprise + AntiSpyware Enterprise.

    Check that Firefox isn't set to run as Administrator.
    Right-click the Firefox desktop shortcut and choose "Properties".
    Make sure that all items are deselected in the "Compatibility" tab of the Properties window.
    * Privilege Level: "Run this program as Administrator" should not be selected
    * "Run this program in compatibility mode for:" should not be selected
    Also check the Properties of the firefox.exe program in the Firefox program folder (C:\Program Files\Mozilla Firefox\).

  • How do I add output module to Bridge if I don't have an extension folder?

    I tried adding the output module to Bridge (why didn't it come with this???) but it says to put a folder in the Bridge Extensions folder.  I don't seem to have one.  What to do now???

    There are two different Libraries on the Mac
    The wrong one is located in users>Library (Hidden hold option)>Application Support>Adobe> No Bridge Extensions folder
    The Correct one is Located here: Macintosh HD > Library (Not Hidden) > Adobe > Bridge CC Extensions > Workspaces
    Two very big differences in folder location and the instructions found here: Install Adobe Output Module Only show the Library folder not which one it is. Problem solved.

  • "Another program on your computer would like to modify Firefox with the following add-on" - how to disable?

    I am using the latest Firefox (28.0) on Windows XP in a shared computer environment. Although I do not have Administrator access, I installed Firefox myself and can change whatever Firefox config settings I want (including about:config and mucking with the files in the installation directory).
    I want to disable the tab that appears on Firefox startup, "Another program on your computer would like to modify Firefox with the following add-on". This tab usually appears once per day (the first time I startup Firefox each day). I want the tab not to appear at all, from now on.
    The "another program" in question is some program that is used in the facility where I'm using the computer, so I can't just uninstall that program. Although this is a shared computer environment, they don't "wipe" the machine every day, just reboot. So the Firefox I installed is still there with all my config settings intact. As far as I know, I'm the only person who uses Firefox on this computer.
    Solutions that don't work:
    "Just click Continue" -- but then I still see the "Another program" tab every day, and don't want to see it.
    "Click Remove in the Add-ons list" -- I removed the Add-on in question but the tab still appears every day.
    I would like a solution that either eliminates the Add-on request for that particular application, or eliminates all such requests ("Another program...") regardless of what application requested it. The ideal solution would be if the request itself had a checkbox for "never ask this again" but, alas, no such luck.

    Gosh... I spent about an hour preparing a response, then accidentally did control-something or alt-something which took me back a page and I lost everything I typed (even after I clicked Forward to try to get back to where I was). If anyone knows of a config setting like "don't ever trash an entire page of user input unless the user explicitly confirms it", or, "keep form input data even if the user goes Back or Forward", I think that would be a great feature.
    OK, back to the original question...
    I appreciate the responses thus far, but I think there have been some misunderstandings. Maybe a multiple-choice version would help:
    Question: Is there a way to suppress the appearance of the notification tab that says, "Another program on your computer would like to modify Firefox with the following add-on" (meaning, any request from another program to install an add-on is to be silently ignored and discarded)?
    Answer:
    (A) Yes, you can suppress that notification (please state how).
    (B) No, but you can request that feature (please state where).
    (C) No, you can't do that or request that feature.
    That's basically my question in a nutshell. If the answer is (B), I might envision a boolean about:config setting like "extensions.allowProgrammaticAddonRequests" that defaults to "true" and can be set to "false" manually. I think that would be the most direct solution (if it were possible).
    I will respond to some comments from above:
    "I don't understand why you are using a mozilla.cfg file to lock those preferences when you can modify the preferences for your current Firefox profile via about:config" -- This is because the "other program" in question (iCafe Manager) was setting certain config options (browser.startup.homepage, and browser.newtab.url) on every reboot (which happens every morning at that facility). I got tired of manually changing the settings back every day. Using the above-mentioned files, I successfully defeated iCafe Manager's daily interference with those config settings. The other things (like stuff related to Socks tunnelling) I probably could have just set once in about:config but doing a lockPref seemed to do no harm. The settings for "enabledScopes" and "xpinstall" were to see if they'd help with the problem I originally asked about, but they did not.
    "I would look in about:config to make sure those preference modifications are in effect" -- yes, I confirmed that the settings are in effect and locked. That much works as expected.
    "A) removing the iCafe Toolbar extension from the Firefox Addons -> Extensions panel results in the "Another program" tab at startup" -- true, but I think it would be more accurate to say: while the toolbar extension is not installed (due to either having been removed, or, never having been installed at all), the "Another program" tab appears on at least the first startup of Firefox after every reboot.
    "B) when you allow the installation it shows up as "(disabled)" in the Extensions list but the unwanted toolbar still shows up (correct?)" -- yes, correct.
    "You could explain the problem to the system administrator of your facility" -- unfortunately, there's no administrator on site, only a person who makes sure the lights are on. They'll call a tech if there's a catastrophic problem (like the net connection goes dead). Since I installed Firefox myself, and since iCafe Manager is a program they installed, I don't think they'll go out of their way to help me with Firefox (especially if I'm trying to defeat iCafe Manager's attempts to interfere with Firefox). From their point of view, their systems are working just fine.
    "allow the installation and then see if you can go to the Firefox Customize menu and HIDE the toolbar as a workaround" -- since I'm not in that facility now (and probably won't be again until this summer or so), I can't experiment with those systems now. But I do recall clicking just about everything I could, including "View - Toolbars" (which seems to be the same menu as when I right-click on a toolbar line). That menu allows hiding toolbars, but from my recollection, the offending toolbar was not displayed in the list, so I could not hide it that way. Also, the Customize menu ("View - Toolbars - Customize") seems to allow only modifications to a toolbar, and not a way to hide an entire toolbar.
    "it might help if you could post a new troubleshooting information list after you allow the iCafe Toolbar installation" -- ok, that troubleshooting report is included below.
    Thanks again for your help.
    Application Basics
    Name: Firefox
    Version: 28.0
    User Agent: Mozilla/5.0 (Windows NT 5.1; rv:28.0) Gecko/20100101 Firefox/28.0
    Crash Reports for the Last 3 Days
    All Crash Reports
    Extensions
    Name: iCafe Manager Toolbar
    Version: 5.2.0.6
    Enabled: false
    ID: {C058FE28-1E07-4FD1-8092-046F8A964D12}
    Important Modified Preferences
    accessibility.typeaheadfind.flashBar: 0
    browser.cache.disk.capacity: 358400
    browser.cache.disk.smart_size.first_run: false
    browser.cache.disk.smart_size.use_old_max: false
    browser.cache.disk.smart_size_cached_value: 358400
    browser.newtab.url: about:blank
    browser.places.smartBookmarksVersion: 6
    browser.sessionstore.upgradeBackup.latestBuildID: 20140314220517
    browser.startup.homepage: http://www.google.com/ncr
    browser.startup.homepage_override.buildID: 20140314220517
    browser.startup.homepage_override.mstone: 28.0
    dom.mozApps.used: true
    extensions.lastAppVersion: 28.0
    gfx.blacklist.direct2d: 3
    gfx.blacklist.layers.direct3d10: 3
    gfx.blacklist.layers.direct3d10-1: 3
    gfx.blacklist.layers.direct3d9: 3
    gfx.blacklist.layers.opengl: 3
    gfx.blacklist.stagefright: 3
    gfx.blacklist.suggested-driver-version: 6.1400.1000.5218
    gfx.blacklist.webgl.angle: 3
    gfx.blacklist.webgl.msaa: 3
    gfx.blacklist.webgl.opengl: 3
    network.cookie.prefsMigrated: true
    network.websocket.enabled: false
    places.database.lastMaintenance: 1398414928
    places.history.enabled: false
    places.history.expiration.transient_current_max_pages: 53428
    plugin.disable_full_page_plugin_for_types: application/pdf
    plugin.importedState: true
    plugin.state.npgoogleupdate: 1
    privacy.sanitize.migrateFx3Prefs: true
    privacy.sanitize.sanitizeOnShutdown: true
    storage.vacuum.last.index: 1
    storage.vacuum.last.places.sqlite: 1396778909
    Graphics
    Adapter Description: Intel(R) G33/G31 Express Chipset Family
    Adapter Drivers: igxprd32
    Adapter RAM: Unknown
    Device ID: 0x29c2
    Direct2D Enabled: Blocked for your graphics driver version. Try updating your graphics driver to version 6.1400.1000.5218 or newer.
    DirectWrite Enabled: false (0.0.0.0)
    Driver Date: 11-3-2008
    Driver Version: 6.14.10.5009
    GPU #2 Active: false
    GPU Accelerated Windows: 0/1 Basic Blocked for your graphics driver version. Try updating your graphics driver to version 6.1400.1000.5218 or newer.
    WebGL Renderer: Blocked for your graphics driver version. Try updating your graphics driver to version 6.1400.1000.5218 or newer.
    Vendor ID: 0x8086
    windowLayerManagerRemote: false
    AzureCanvasBackend: skia
    AzureContentBackend: cairo
    AzureFallbackCanvasBackend: cairo
    AzureSkiaAccelerated: 0
    JavaScript
    Incremental GC: true
    Accessibility
    Activated: false
    Prevent Accessibility: 0
    Library Versions
    NSPR
    Expected minimum version: 4.10.3
    Version in use: 4.10.3
    NSS
    Expected minimum version: 3.15.5 Basic ECC
    Version in use: 3.15.5 Basic ECC
    NSSSMIME
    Expected minimum version: 3.15.5 Basic ECC
    Version in use: 3.15.5 Basic ECC
    NSSSSL
    Expected minimum version: 3.15.5 Basic ECC
    Version in use: 3.15.5 Basic ECC
    NSSUTIL
    Expected minimum version: 3.15.5
    Version in use: 3.15.5

  • I have installed Adobe packages and cannot find the Acrobat extension folder please advise how can I get these applications to load onto my computer?

    I have installed Adobe Creative Cloud for teams CC Packages which says that Acrobat XI Pro is installed. Your support page says it does not install Acrobat and I have to look in the Extensions folder for an MSI file.  I have run a number of searches and  cannot find the Acrobat extension folder please advise how can I get these applications to load onto my computer?
    Also I now administer the teams and have accepted the invitation to I received to be a team member and download the apps.  The admin page shows that I have been sent an invitation but does not show my account as "ACtive" unlike my other team members.  I tried to use the link in the invite to accept it become active but the link displayed an error saying I had already accepted the invite... why is no account not active?
    Finally what other product downloads in Creative Cloud do not actually download as part of the Creative cloud Packager for downloading the apps? e.g. acrobat and what else?

    My apologies Eadeszoo I believe our support agents are unavailable on January 1.
    Are you able to copy the contents of the DVD to your computer?  Are you receiving any particular error messages when you are trying to install?  Finally which operating system are you using?

  • I have files in my iTunes media folder that somehow are not in my library. How do I get iTunes to scan my media folder and add missing files to my library without making a copy of each file in the same location?

    I have files in my iTunes media folder that somehow are not in my library. How do I get iTunes to scan my media folder and add missing files to my library without making a copy of each file in the same location? If I use add file / folder to library, it scans the folder and then makes a copy of any file that is not in my library in the exact same location; I recal in older versions of iTunes being able to just drag my media folder into my library and it would update missing links.

    Only the songs that are connected to iTunes will be copied when you consolidate to a new folder.
    Splitting the media folder away from the usual location makes it harder to move iTunes in the future.
    Are you go move everything back once you've tidied up or are you going to leave it that way? Either way I'd recommend you create an iTunes folder at the new location, an iTunes Media folder inside that, and consolidate to this new iTunes Media folder. You should also use the option File > LIbrary > Organize Library > Rearrange files in the folder "<Media Folder"> if you have not already done so.
    tt2

  • I want to reinstall my operating system,How can I back up all my add ons, extensions and personas for reinstallation when Im done?

    I want to reinstall my operating system,How can I back up all my add ons, extensions and personas for reinstallation when Im done?
    Im using fire ftp,downthem all,wot , antiporn pro,and various personas.
    I dont want to renstall them all one at a time, rather I would like to ireinstall a back up like I do with my bookmarks,
    Is this possible??

    See this support article. <br />
    https://support.mozilla.com/en-US/kb/Backing+up+your+information

  • How can I stop Firefox asking to install things from its extension folder every time it starts up?

    This happens with both versions of Firefox 3.6.28 and 22. (I have removed the latest version because I had so much trouble with it and no, I don't want it back and I am fully aware of the dangers the old versions put me in, thank you!) I have tried to delete the things from the extension folder, but the items it is asking to install aren't in there.
    I am using XP with SP3.

    This can happen if you use the same profile folder with different Firefox versions (i.e. the version listed in compatibility.ini is different).<br />
    You should always use separate profiles for each Firefox version.
    *https://developer.mozilla.org/en/Mozilla/Multiple_Firefox_Profiles
    It is possible that there is a problem with the file(s) that store the extensions registry.
    Delete the extensions.* files (e.g. extensions.sqlite, extensions.ini) and compatibility.ini in the Firefox profile folder to reset the extensions registry.
    *https://support.mozilla.org/kb/Profiles
    New files will be created when required.
    See "Corrupt extension files":
    *http://kb.mozillazine.org/Unable_to_install_themes_or_extensions
    *https://support.mozilla.org/kb/Unable+to+install+add-ons
    If you see disabled or not compatible extensions in "Firefox/Tools > Add-ons > Extensions" then click the Tools button at the left end side of the Search Bar to check if there is a compatibility update available.
    If this hasn't helped then also delete the addons.sqlite file.

  • How can I get extensions to load in a Microsoft App-V environment?

    I am trying to install Firefox 25.0.1 as a virtual application through Microsoft App-V. Everything works fine, until I attempt to install an extension. The extension installs, I can see it in the list of installed extensions, and I see the *.xpi file in the profile. However, the extension never loads when I restart the browser. Also, if I go to Extensions in the Add-ons Manager and click on Options, it freezes the entire browser. This behavior is consistent with any extension that I add. I have confirmed that these extensions work on an identical Windows 7 system where Firefox is installed as a standard application.
    Note that App-V will allow changes to the user profile, which is why I can see the *.xpi files. App-V does not allow any modifications to the installation directory in Program Files. When an extension is added, what gets modified in the Firefox directory in Program Files? Also, if there is a file that gets modified in the installation directory, is there a way to redirect that?

    As far as I know and have seen over my years of testing Firefox, installing a addon does not modify any files in the Program Files installation directory.
    Everything is saved in the individual Firefox profile.
    Your problem sounds pretty unusual for sure. I'd recommend reading over these 2 guides in case there may be any tips that can help you figure this out. If I come across anything more helpful, I'll post it here.
    * http://stealthpuppy.com/prepare-mozilla-firefox-for-enterprise-deployment-and-virtualization/
    * http://stealthpuppy.com/sequencing-mozilla-firefox-with-app-v-5-x/
    How exactly are you installing the addons? Sounds like you're placing the .xpi files directly into the Firefox profile folder. But you shouldn't be doing that.
    Instead try putting the .xpi files into C:\Program Files\Mozilla Firefox\browser\extensions then start Firefox once. You should get a message asking if you want to install the addons, click yes and then Firefox will create a extensions folder in the Firefox profile folder and add the .xpi files there.
    Or you could manually create a extensions folder in the firefox profile and place the .xpi files in there. That should work too.

  • Message "another program on your computer would like to modify Firefox with the following add-on" appears every time a new user logs in... Bad problem

    I have just deployed an image to over 500 workstations, and they are all deep frozen using deepfreeze.
    When users are logging in, and open Firefox they are getting the message "another program on your computer would like to modify firefox with the following add-on:" Adobe Acrobat - Create PDF 1.2
    Yes I know u can do a one-time click and allow, but we have potentially 50,000+ students logging into these PCs and it is unacceptable that they are greeted with this message rather than the Homepage.
    This is very dissapointing, as we upgraded to the latest version of firefox in preperation for rollout, and then added some software like adobe.
    The profile is kept in the default user, so everytime a user logs in, they will get prompted with the message, and this will always happen because we use deepfreeze.
    I need a FIX ASAP from mozilla on how to disable this pop-up via Group Policy...
    Not at all happy,
    Sharpy

    Hi,
    One way you could try is to install Firefox on a fresh PC/image which has the same Adobe software versions installed as the clients. You may also have to install the same extensions as well as software for any additional plugins as on the clients. Start Firefox and make sure everything is okay. After that you can copy and overwrite the '''extensions.ini''', '''extensions.sqlite''' and '''pluginreg.dat''' files and probably the '''extensions''' folder and any supporting files of the extensions from this fresh profile, onto a client profile after temporarily disabling/unfreezing Deep Freeze. If everything is okay you can then push the changes onto the other clients via a logon/startup script after temporarily disabling Deep Freeze and then re-enable Deep Freeze.
    [http://kb.mozillazine.org/Profile_folder Firefox Profile Folder]
    [http://kb.mozillazine.org/Profile_folder_-_Firefox Firefox Profile Folder & Files]

  • How to uninstall CS Extension Builder 1.5 or update to 2.0?

    Hi,
    I'm in Flash Builder 4.6. Bellow is a long procedure on why I'm here asking this simple question. But a shorter version of my question is exactly the title of this thread: How can I uninstall 1.5 or, better, simply upgrade to 2.0? Does someone know if it's possible without uninstalling Flash Builder completly?
    Here are the (ho so long and painfully long to read) steps that leads to my problem:
    I've installed CS Extension Builder 1.5 TRIAL whitout any issues. Even coded some working extensions.
    Then, a license have been bought.
    I've updated the files through the Install Software menu. No problems.
    To what I can remember, there was no menu option at this point in the Help menu to get information about the license or log out from the Adobe ID
    Later, I had to show to my coworkers how to install the CS Extension plugin into Flash Builder. A few weeks have already went by since I've done it myself, so just to remember how to do it properly, I figured I should try to do it again.
    Help/Install Software/What's Already Installed/Selected all CS Extension releated plugins/Uninstall/Restard Flash Builder
    Problem #1: All the extension features and menu options are still in Flash Builder. BUT, they are correctly removed from the "Installed Software" window.
    I've searched all over the Internet, I've done nothing wrong. The right way to remove a plugin is from the Installed Software window.
    So, how to clean CS Extension from Eclipse?
    I looked at the CS Extension plugin package to find back which files were copied in the plugins folder of Eclipse and figured I could just remove them manually. Which I did.
    Restart Flash Builder
    CS Extension Builder seems to be sucessfully removed from Eclipse.
    Problem #2: While trying to re-install CS Extension Builder 1.5, Eclipse throws an error. Some files I've removed are missing. Damn.
    Those files were still in my Recycle Bin, so I restored them.
    Install again
    Restart
    Success
    Note that here, 2 new menu options in the Help menu are available to me: one to get information about my license and one to log out from my Adobe ID. There is also a link at the bottom left of Eclipse where I see the Adobe ID register name.
    I don't remember if I needed to enter my serial key the first time, but this one, it seems that only linking Eclipse with the Adobe account does the trick.
    Ok. So far so good, everything's working fine again. But ho, suprise, CS Extension 2 is released and my coworkers are getting this copy instead of 1.5. So hey, I need to upgrade too.
    I figured that I didn't need to uninstall 1.5. Just installing the new files should do it. So Help/Install New Software/Add/Local/CS Extension 2 package/Update
    It tells me that I already have CS Extension Builder and that an upgrade will be done instead. Great, that's what I needed.
    Everyting updates. No errors.
    Restart
    Problem #3: I'm stuck with 1.5. No options to create a project in CS6, and if I go to Help/About Create Suite Extension Builder, it's still displaying the 1.5 panel (my coworkers are getting the red panel, I still have the gray one).
    I do the exact same steps than before (uninstall via Eclipse all plugins related to CS Extension and manually remove the files, restart Eclipse, voilà it's gone).
    But before trying to install again, I read somewhere that I should clean the Installation History to make sure Eclipse unlink itself from the old versions of the files. So I clear everything, leaving the history blank but the Current Installation (which doesn't contains any references to CS Extension.
    Restart Eclipse
    Try to install 2.0
    Same error that is telling my that some files are missing (like com.adobe.cside. core....).
    Get back the plugin files from the recycle bin.
    Now it works but version 1.5 is back
    I notice in the Installation History that a state is there, not containing any CS plugins. I say hey, why not trying to revert there.
    Problem #4 and last one: Now not only I'm still stuck with 1.5, which asn't been unistalled, but the plugins are still in the Installed Software list and, worse, the Uninstall button is grayed out on CS Extension plugins...
    What is going on here! I just want to uninstall and upgrade! Everything I did is a mess, and I know the easy way out is probably to re-install Flash Builder. But I don't want to know how to easily fix it, I want to know WHY it happened, and if it can be fixed. And if you want the real reason... (I have tons of projects in there, and I'm lazy. I don't want to import them all again. But it's better just to say I want to get a lesson from this, don't you agree.)
    Thanks to anybody who might have any kind of hint!
    David
    PS: Sorry if my english syntax isn't perfect. I'm trying very hard.

    I didn't answered my question, but I got it to work without having to re-install.
    Delete all these files and folders from the eclipse/plugins and eclipse/features folder of your Flash Builder installation folder
    com.adobe.cslib
    com.adobe.inverurie
    com.adobe.xmp
    Open the CS Extension Builder plugin package
    Copy all .jar files from the plugin directory and paste them into the eclipse/plugins folder of the Flash Builder installation
    Copy all .jar files from the features directory and paste them into the eclipse/features folder of the Flash Builder installation
    Extract every jar (ex: com.adobe.cside.feature_2.0.0.4-33034.jar file is extracted into a com.adobe.cside.feature_2.0.0.4-33034 folder)
    Delete the .jar files
    Restart Flash Builder
    Everything works fine so far. There is a small glitch where the "CS Extension Builder Start Page" seems to miss its stylesheet, but the panel is working anyway. At this point, it's fine by me. And I'm still not able to uninstall the plugin with the "Installed Software" window (the button is grayed out).
    So much for being lazy. And for wanting to repair my mistakes, of course.

  • Customizing icons in sys folder extension folder IO...kext pkg issues

    I currently run a mbp 17" early 2011. For years of OS iterations including Lion 10.7.3 I've customized my icons throughout the system folder, including the extensions folder. Till now. I don't know if the issue is recent firmware /smc update related. I do know that my system does not like the customizations to icons as basic as "CD-R.icns" and all the rest of the IO function sets in the kext packages. I lose all functionality of Superdrive, Firewire, USB, etc.. Changing the internal HD icon creates a loss of Finder. Ouch! I had to use a TimeMachine backup off a jump drive to restore/fix it. The names of the .icns swaps are exact. Odd... What's up? Thanks in advance, William

    Just about everything these days is codesigned; modifying a codesigned component it in any way will make it inoperative (changing the icon adds a custom icon file).  You should not be messing with anything in the /System folder.

  • How to modify NI Xcontrol

    Hi,
    I'd like to know how to modify the Xcontrol that National Instruments made?
    For instance, with the Sound and Vibration toolkit, you get those nice colormap and spectral map Xcontrol. If I right click the Xcontrol and select advanced=> Show diagram, I can see the block diagram but I can't make any modification. Is it possible to modify those Xcontrol?
    Best regards,
    peper

    Did you plan to move (or add) the active cursor to center? I noticed that the current order/frequency does not move when I invoke the 'Bring to Center' from the cursor legend. You may want to respond to that as well if you are implementing this feature for your customers. 
    Modify your copy of the XControl. Specifically, edit your copy of the following VI:
    <LabVIEW>\vi.lib\addons\_XControls\Colormap\subVIs\svx_Colormap Facade.vi
    Make your edits in the "Colormap": Shortcut Menu Activation? and "Colormap"hortcut Menu Selection.vi events.
    The facade VI is not password protected. You do have to make sure that the XControl is not running in order to make edits to the facade VI. The XControl is running if the XControl is present on any front panel of a VI in memory.
    Post back with your results. Perhaps this extension can be added to the Sound and Vibration Colormap XControl in a future release.
    Doug
    NI Sound and Vibration

Maybe you are looking for

  • Error in ALE

    Scenarion : The IDOC should generate while saving the purchse order in ALE distribution. 1. Creating a TRFC port with RFC destination 2. Creating a partner profile for the vendor (LI). Vendor Name, Partner function, Orders & Ordchg message type, Assi

  • CRM LEAD STATUS CHANGE : BAPI_LEAD_CHANGEMULTI

    Hi everyone, I see that you were able to change status via BAPI_LEAD_CHANGEMULTI. I am currently using CRM 4.0 trying to do the same thing; but unsuccessfully. Any help in this matter will be greatly appreciated. I undated statusx-status = 'X', fille

  • Problems with XsltListViewWebPart and Migrated Libraries

    I have migrated some libraries and lists from SharePoint 2007 directly to SharePoint 2013 (using some creative scripting). While this mostly works, I have a few stubborn libraries that refuse to work properly. The problem seems to be focused around t

  • Upgraded to snow leopard wireless dropping

    With the recent change in MobileMe Calendar, I upgraded my MBP to Snow Leopard.  Ever since doing so, my wireless connection is constantly dropping where it appears that there is difficulty maintaining the DNS connection/info.  I noticed some threads

  • HT1311 Is it possible to sync two accounts on itunes?

    I would like to share apps bought with my account with my wife's devices? Is this possible?