Completely remove all LF from a file and output it with no LF or CRLF

My organization receives an XML file from an outside entity and we're getting <LF> (newline) characters in the middle of some records. Is there a way to remove all <LF> characters without inserting a <CRLF> after every line?
I tried using the following, but it puts in a <CRLF> after each line:
Get-Content $inputfile| foreach-object {$_.replace("`n","")} | out-file $newfile -Encoding ascii
Essentially I want to end up with an XML file that is a continuous long line with no new lines or carriage returns.
[email protected]

Try this:
$content = Get-Content $inputfile| foreach-object {$_.replace("`n","")}
$content -join(" ")| out-file $newfile -Encoding ascii
-Robert

Similar Messages

  • How can I input read a line from a file and output it into the screen?

    How can I input read a line from a file and output it into the screen?
    If I have a file contains html code and I only want the URL, for example, www24.brinkster.com how can I read that into the buffer and write the output into the screen that using Java?
    Any help will be appreciate!
    ======START FILE default.html ========
    <html>
    <body>
    <br><br>
    <center>
    <font size=4 face=arial color=#336699>
    <b>Welcome to a DerekTran's Website!</b><br>
    Underconstructions.... <br>
    </font> </center>
    <font size=3 face=arial color=black> <br>
    Hello,<br>
    <br>
    I've been using the PWS to run the website on NT workstation 4.0. It was working
    fine. <br>
    The URL should be as below: <br>
    http://127.0.0.1/index.htm or http://localhost/index.htm
    <p>And suddently, it stops working, it can't find the connection. I tried to figure
    out what's going on, but still <font color="#FF0000">NO CLUES</font>. Does anyone
    know what's going on? Please see the link for more.... I believe that I setup
    everything correctly and the bugs still flying in the server.... <br>
    Thank you for your help.</P>
    </font>
    <p><font size=3 face=arial color=black>PeerWebServer.doc
    <br>
    <p><font size=3 face=arial color=black>CannotFindServer.doc
    <br>
    <p><font size=3 face=arial color=black>HOSTS file is not found
    <br>
    <p><font size=3 face=arial color=black>LMHOSTS file
    <br>
    <p><font size=3 face=arial color=black>How to Setup PWS on NT
    <BR>
    <p><font size=3 face=arial color=black>Issdmin doc</BR>
    Please be patient while the document is download....</font>
    <font size=3 face=arial color=black><br>If you have any ideas please drop me a
    few words at [email protected] </font><br>
    <br>
    <br>
    </p>
    <p><!--#include file="Hits.asp"--> </p>
    </body>
    </html>
    ========= END OF FILE ===============

    Hi!
    This is a possible solution to your problem.
    import java.io.*;
    class AddressExtractor {
         public static void main(String args[]) throws IOException{
              //retrieve the commandline parameters
              String fileName = "default.html";
              if (args.length != 0)      fileName =args[0];
               else {
                   System.out.println("Usage : java AddressExtractor <htmlfile>");
                   System.exit(0);
              BufferedReader in = new BufferedReader(new FileReader(new File(fileName)));
              StreamTokenizer st = new StreamTokenizer(in);
              st.lowerCaseMode(true);
              st.wordChars('/','/'); //include '/' chars as part of token
              st.wordChars(':',':'); //include ':' chars as part of token
              st.quoteChar('\"'); //set the " quote char
              int i;
              while (st.ttype != StreamTokenizer.TT_EOF) {
                   i = st.nextToken();
                   if (st.ttype == StreamTokenizer.TT_WORD) {          
                        if (st.sval.equals("href")) {               
                             i = st.nextToken(); //the next token (assumed) is the  '=' sign
                             i = st.nextToken(); //then after it is the href value.               
                             getURL(st.sval); //retrieve address
              in.close();
         static void getURL(String s) {     
              //Check string if it has http:// and truncate if it does
              if (s.indexOf("http://") >  -1) {
                   s = s.substring(s.indexOf("http://") + 7, s.length());
              //check if not mailto: do not print otherwise
              if (s.indexOf("mailto:") != -1) return;
              //printout anything after http:// and the next '/'
              //if no '/' then print all
                   if (s.indexOf('/') > -1) {
                        System.out.println(s.substring(0, s.indexOf('/')));
                   } else System.out.println(s);
    }Hope this helps. I used static methods instead of encapsulating everyting into a class.

  • How do you remove a person from a photo and replace her with another person

    How do you remove a person from a photo and repalce her with another person.

    There are many tool and "tricks" to accomplish this manipulation. However, depending on the image one technique might be more appropriate than an other. And then there is the question of how to do it "skillfully". For example, the shadows in the person that is being substituted might be different than in the original image creating the obviously "photoshopped" look.
    Doing an Internet search on your posting title brings up lots of examples.

  • Read from .txt file and output the content as two arrays

    I am using the contoured move to control the x-y stage. The trajectory datas for x and y axis are generated using my interpolation program and it is stored in a .txt file as two columns. What I want to do is read .txt file and output the content of this file as two arrays. Is there anyone has any ideas? Thanks, the .txt file is attached.
    Attachments:
    R.75.txt ‏172 KB

    Hi Awen,
    This is quite easy to do, you can merely use the "read from spreadsheet file" function to get a 2D array (2 columns and n rows) and then use the index array function to get whatever row/colums you want..
    Hope the attached VI helps you
    When my feet touch the ground each morning the devil thinks "bloody hell... He's up again!"
    Attachments:
    read sprdsheet file.vi ‏27 KB

  • I have changed computers and installed iTunes on my new computer. I want to sync my iphone now but the "sync" program indicates that it will remove all data on my phone and replace it with the newly installed itunes that does not have my information.

    I have a new computer and have installed iTunes on it.
    Now I want to sync my iphone but the new itunes on the new computer wants to remove everything on my niphone and replace it with what's on the newly installed itunes data but it does not have my data.
    How can I sync the new itunes with my iphone and not have my phone data wiped out?
    Thanks,
    hscllc

    hscllc wrote:
     How can I sync the new itunes with my iphone and not have my phone data wiped out?
    There is no way to stop iTunes from doing exactly what it is designed to do.
    The iPhone is designed to sync with one and only one computer.
    If you have moved/copied your iTunes library from your old computer to your new one, then iTunes wiping your device is no problem.  You would simply sync and iTunes will put all the content back.

  • I would like to completely remove an app from my iPad and the cloud.  Is that possible?

    I seem to be having a challenge connecting an app to Facebook to access my friends list, etc.  I read that if there is a problem, I need to uninstall the app and reinstall it.  I am just pulling back the saved data from the cloud which does not do me any good.  I just began the game and do not mind beginning from the beginning since I have not invested any money yet.  Thank you!

    Hello FeyQueen,
    You may be able to remove existing game data by via the following:
    On your iOS device, go to Settings > iCloud, then tap Storage & Backup.
    On your Mac, go to Apple () menu > System Preferences, click iCloud, then click Manage.
    On your Windows computer:
    Windows 8.1: Go to the Start screen and click the down arrow in the lower-left corner. Click the iCloud app, then click Manage.
    Windows 8: Go to the Start screen and click the iCloud tile, then click Manage.
    Windows 7: Choose Start menu > All Programs > iCloud > iCloud, then click Manage.
    Once in the 'Manage' dialog, look for the name or icon of the affected game. If present, you should be able to delete any data the game has saved to your iCloud account.
    Managing your iCloud storage
    http://support.apple.com/kb/HT4847
    Cheers,
    Allen

  • After updating to ios 8 on my iphone 4s, my all music from iphone disappeared and cant sync with my itune from macpro. I tried all the suggestions. I dont see music folder in my settings also. So there is no option valid of deleting all music from my

    After updating to ios 8 on my iphone 4s, all my music from iphone disappered. I tried all the suggestions, but I cant see music folder in the settings-general at all. I signed out of icloud as well, but still cannot sync with itune on my macbookpro. Can any one help?

    Hello babichanjacob
    Change how it syncs by enabling Manually manage music and videos, then you can drag and drop the music that you want on your iPhone. Revert it back to test to see if that resolves the issue.
    Managing content manually on iPhone, iPad, and iPod
    http://support.apple.com/kb/HT1535
    Thanks for using Apple Support Communities.
    Regards,
    -Norm G.

  • Removing apple id from old iphone and associating it with new iphone...

    Hi There,
    I have 2 iphone 4s's currently. One is my old phone and the other is new. Both are associated with my apple id. I have tried deleting my apple id from the old phone etc but it unassociates my id from the new phone as well. Anything i do on old pphone happens to new phone too and vice versa. I only want my new one to be associated and have someone wanting to buy my old phone. How do i remove my apple id from my old phone so i can sell it and not have issues?
    Thanks,
    J

    Have you changed your email?   And need to change your Apple ID as well?
    Before you go further.   Please READ and understand these articles from Apple about your Apple ID. 
    http://support.apple.com/kb/HT2204
    http://support.apple.com/kb/HT5621
    If you are giving the I
    Pad to someone else, you need to turn off find my iPhone and erase the iPad, or delete it from your cloud account.
    If there is another reason , I didn't mention, please fill us in so we can give you the right answer, rather than guess and cause you more headaches.

  • Ipod 5 wasn't updating new playlists.  Removed all music from iPod and ended up with 34 GB of OTHER.  How do I remove this without doing a full restore?

    iPod 5 was not adding new playlists when synching (plenty of space remained in memory for it).  This happened around the time of the new update.  I removed all music from the iPod and when I went to resync the selected playlists, my OTHER portion of memory jumped up to 34GB and now there is not enough space on the iPod to put all my music back on.
    I've checked the usage of all the apps and photos, etc, it is pretty clear this is because of the music portion only.
    Is there anyway of removing this information?  Without doing a restore?  It is not jailbroken either.

    An "other" larger than about 1 1/2 GB indicates corrupted files.
    What is the Other on my iPhone and How to Remove It
    What is "Other" and What Can I Do About It?
    Next, usually restoring from backup eliminated the corrupted files. However, sometimes restoring to factory settings/new iPod is required.
    To restore from backup see:
    iOS: How to back up
    To restore to factory settings/new iPod see:
    iTunes: Restoring iOS software

  • Remove ALL Images from PDF Export?

    I'd like to remove ALL images from a PDF export (Indesign CS6), with the intention of having the smallest file size possible for review. All the images are Photoshop PSDs.
    I have created a PDF Preset (PDF 1.7) that omits EPS, PDF and Bitmap.
    That covers any PSDs that contain opaque backgrounds, i.e. are considered to be non-transparent. However, any PSDs that do NOT contain such backgrounds still appear in the exported PDF. I assume they are NOT considered to be Bitmaps?!?
    I've gone for maximal compression of images (in the Preset) also just to see how small I can get the file, but it's still over a meg, and I'd really like even smaller. I live in a rural part of England where net access is painfully slow, and even a few meg of data takes far too long to upload, not to mention the constant drop-outs. Consider further that my document is likely to grow by several orders of magnitude and hopefully you can see why I'd like to sort this issue out as soon as possible.
    I've not done any scripting but assume it would be trivial to hide images with a script. However, I'm not sure how such a script might know how to make visible only the images that were previously hidden by the script. Obviously I would not wish to unhide images that must stay hidden. Maybe some form of image/object tagging, if that's even possible in this product, i.e. tag them "temp hide" on first pass of the script, and so forth.
    Any suggestions much appreciated.
    Regards,
    James

    @James – to mark the container frames of the nonprinting images by a fill color, you could add the following lines of code in the for loop:
    allGraphicsArray[n].nonprinting = true;
    //The parent of the graphic is the container that holds it.
    //We could use it to fill it with a tint of e.g. 20% of black:
    allGraphicsArray[n].parent.fillColor = "Black";
    allGraphicsArray[n].parent.fillTint = 20;
    But this approach will add a new problem for images, that only use a portion of the holding graphic frame. Or are only partly visible due to a clipping path or a clipping mask or totally transparent areas due to transparent pixels.
    Already colored backgrounds will be recolored…
    @Sandee – I see the advantage of the PostScript to Distiller way in this situation, but there are two disadvantages:
    1. Live transparency will be flattened (could be no issue in this use case, but you never know).
    2. The gray area with the big X will be applied also to parts of the images where no pixels are present (transparent pixels in PhotoShop or TIFF files).
    To work around all these issues we need a more complex script that is building a  path object around the transparent parts of an image or using an applied clipping path for that purpose and fill that with a gray tint (and maybe with an X).
    Here some screen shots to illustrate the problems (with or without using PostScript/Distiller):
    1. Original set up:
    One placed PhotoShop file with transparency stacked upon the text frame.
    The image inside its holding frame is selected.
    The visibility of one of its layers depicting a second chair on the left side is switched off.
    2. The same setup in a different view:
    3. After running the script with the two additional lines of code:
    Using the PostScript method would do nearly the same plus adding a cross using the  area of the selected image.
    Uwe

  • Does Uninstalling MacKeeper completely removes all it harms and bugs it has on the mac???

    Hello all, I just got my mac for a week and I downloaded the Mackeeper out of worries that my mac will get infected by virus.. I read about Mackeeper over and over again.. Sounds bad to me.. So I just wanna confirm that after uninstalling this programme my system will not get any harmed in any way, does it??? Well, I installed the Mackeeper for free and I just removed it without downloading the Zeobit uninstaller.. using the way that requires me to answer why i would like to uninstall mackeeper to uninstall it.. Do you think I'm saved? Thanks in Advanced

    Here you go-
    MacKeeper – also known as ‘911 Bundle‘ in the App store — yes, you’ve seen the ads all over the internet, pop ups on your favourite webpages, it seems to be everywhere. It must be legit’. Right?
    Wrong! Maybe you checked out the website – looks good…if you only give it a cursory glance. But dig a little deeper, and you’ll find some of those testimonials are phoney. Like the one that says Macupdate gave MacKeeper a 5-star rating, when in fact it got a 2-star rating and the comments are filled with one person after another complaining about this ‘anti-virus’ program.
    OK, don’t feel bad if you fell for it, particularly if you’re new to Mac and don’t know that Macs don’t have virus issues like PCs. If you’ve downloaded MacKeeper you know already the problems it’s causing you, slowing down your machine and throwing up bizarre popups all the time. If you haven’t downloaded it, DON’T! And here’s another warning: don’t use the ‘uninstaller’ that they provide! It doesn’t actually clear out all of MacKeeper’s files, and it phishes for personal details before it lets you even run it. So how do you get rid of it? Here’s how:
    **Update: If the procedure below looks complex, try downloading the simplified version with screenshots in my Easy Guide to Uninstalling MacKeeper pdf.
    Getting ready:
    You will need
    — to calm down! ( don’t be angry with yourself or your Mac!)
    — a sharp eye   ( don’t be trashing the wrong files…)
    — a copy of EasyFind (free tool available from Devon Technologies).
    Once EasyFind is installed and running, you need to consider your backups first.
    Time Machine
    i. If you use Time Machine, leave it connected and do the Time Machine Step (TM step) where indicated. Instructions for the TM step are given in the box in step 1 below.
    Clones
    ii. If you use a clone without archiving, disconnect the clone and run the procedure below on your internal disk. When it is complete and you have verified everything is OK, connect your clone and wipe the partition using Disk Utility. Then make a new clone.
    iii. If you use a clone with archiving, reboot into your clone now and run the procedure below on the clone first. Then shutdown you computer, disconnect the clone from the system and reboot into your internal drive. Run the entire procedure again on your internal drive.
    Encryption
    If you have used MacKeeper to encrypt any data, unencrypt it now. If you remove MacKeeper without unencrypting your data first, you will not be able to access it later. This only applies to data encrypted with MacKeeper, and not data encrypted using Mac OS built-in encryption services or using any other program.
    If you have anything in the Trash, empty it now before you start.
    The Uninstall Procedure:
    Once you have prepared everything as above, you’re ready to start the uninstall procedure.
    1. If MacKeeper is running, quit it. From the sidebar in any Finder window, choose your hard disk icon and go to your Library folder. Look in the Application Support folder for the folder inside it called ‘MacKeeper’ (/Library/Application Support/MacKeeper). Click on the folder once.
    TM Step
    If you are using Time Machine do the TM Step now.
    Enter Time Machine via the TM icon on your menubar at the top of your screen.
    Click the little gear/cog in the Finder window and choose ‘delete all backups of xxx file’.
    Enter your Admin password to confirm the delete. Exit Time Machine and then…
    If you don’t use TM or after you have completed the TM step, hold down the ‘command’ key and press the ‘delete’ key once to send the file to the trash.
    2. Still in Library, look for and trash any of these you find in the same way, remembering if you have Time Machine to do the TM step first in each case:
    /Library/LaunchDaemons/com.zeobit.MacKeeper.AntiVirus
    /Library/LaunchDaemons/com.zeobit.MacKeeper.plugin.AntiTheft.daemon
    /Library/Logs/MacKeeper.log
    3. If you are using Lion, use the ‘Go’ menu in Finder’s menubar and hold down the ‘option’ key. Choose ‘Library’ from the menu (yes, this is a different Library folder from the one you were just in). If you are using Snow Leopard or Leopard, just click on the little ‘Home‘ icon in the Finder sidebar and navigate to the Library. Then trash any and all of these that you find, remembering to do the TM step (if applicable) first in each case: 
    Home/Library/Caches/com.zeobit.MacKeeper
    Home/Library/Caches/com.zeobit.MacKeeper.Helper
    Home/Library/LaunchAgents/com.zeobit.MacKeeper.Helper
    Home/Library/LaunchAgents/com.zeobit.MacKeeper.plugin.Backup.agent
    Home/Library/Logs/MacKeeper.log
    Home/Library/Preferences/com.zeobit.MacKeeper.plist
    Home/Library/Preferences/com.zeobit.MacKeeper.Helper.plist
    Home/Library/Receipts/com.zeobit.MacKeeper.bom
    Be careful not to delete the wrong files: only those that have got the words ‘zeobit’, ‘MacKeeper’, ’911′ or ’911bundle’ should be trashed.
    Now switch to the EasyFind.app you downloaded at the beginning. Set it up like this:
    In the ‘Volumes’ drop-down menu on the right, choose the volume that you are currently booted into (that will be your internal hard disk icon unless you are cleaning an external clone). In the search box, try each of these in turn: ‘zeobit’, ‘mackeeper’, ’911 bundle’. For anything that you find, hold down the ‘control’ key and click once on the entry in EasyFind’s window. From the menu, choose ‘Reveal in Finder’. Delete the folder from Finder, remembering to do the TM step first in each case if you are using Time Machine.
    4. Go to Applications > Utilities > Keychain Access.app and double click on it. Notice the padlock in the window is up there on the left, rather than down the bottom. Click on it and enter your admin password. Now go through all the items in the ‘Keychains‘ list (such as Login, System, Root) with ‘All items’ selected in the ‘Category’ list. Anything you find related to ‘MacKeeper’ or ‘zeobit’, click on it, then choose Edit > Delete from the menu.
    (Thanks to Al for also mentioning this point in the Comments below!   ).
    5. Open the Activity Monitor utility (Applications>Utilities>Activity Monitor.app), make sure ‘All Processes’ is showing in the drop down menu just over on the right of the dialogue box, then scroll down the list and see if any processes called ‘MacKeeper’ (or ‘zeobit’) are still running. Try the same search terms you used in EasyFind in the filter search bar in Activity Monitor window. Older versions of MacKeeper may have a ‘WINE’ process running, so also look for ‘wine’. Anything you find, click on it and hit ‘Quit Process’ (top left).
    6. Go to your Applications folder from a Finder window and select MacKeeper (if you have Time Machine, do the TM step now). Then, hold down ‘command’ and press ‘delete’ once. If you assigned MacKeeper to be pinned in the Dock, be sure to also drag the icon off the Dock and release it anywhere over the desktop. It will, satisfyingly, disappear in the ‘poof’ of a cloud.
    7. When you’re done filling up your trash can with all this junk, click on the Finder> Secure Empty Trash...
    8. Restart your Mac. Everything should be back to normal, but check the Activity Monitor one last time to be sure.
    9. After restart, be sure to fix your system permissions. If you encounter any problems that you did not have before, fix the ACLs too.
    **If you are running a clone, remember to follow the instructions given above under “Getting ready”.**
    10. If you have a problem with MacKeeper pop-ups while using your browser, try clearing out the caches, like this:
    In Safari menubar, choose ‘Safari > Reset Safari’. Make sure all the options are checked.
    This will not only clear out your caches, but everything else stored by the browser. Don’t worry, it won’t affect your bookmarks, but it will reset your ‘top sites’ and history.
    In Firefox menubar, choose ‘Tools > Clear Recent History…’ and choose ‘Everything’. Again, it’ll clear everything out but won’t delete your bookmarks.
    Obviously, if you use any other browsers like Opera or something you’ll have to find the same options for those too.
    Good luck and goodbye MacKeeper!
    NOTES
    1. If you have any problems carrying out the steps, try starting your Mac up in Safe mode, and then running the procedure.
    2. If you have only downloaded the MacKeeper package but not ran the installer, you only need to send the .pkg file in your Downloads folder to the Trash. That’s it!
    Acknowledgements
    This post has been refined and improved over time thanks to suggestions and replies made in the Comments. Thanks especially to Al, Lyndon and Jack.

  • [svn:bz-trunk] 21260: Update the qa-frameworks. zip to remove all comments from the base xml when merging config files.

    Revision: 21260
    Revision: 21260
    Author:   [email protected]
    Date:     2011-05-16 07:46:54 -0700 (Mon, 16 May 2011)
    Log Message:
    Update the qa-frameworks.zip to remove all comments from the base xml when merging config files.
    Modified Paths:
        blazeds/trunk/qa/resources/frameworks/qa-frameworks.zip

    Try options=('!makeflags') in PKGBUILD.

  • HT5557 how can you remove all books from books purchased file

    how can you remove all ibook from purchased file

    When I connected my iPhone, it automatically synced right away. I did click on the iPhone button and saw the contents of my iPhone including the Books. When I clicked that 'Books' button. But since the book in question was not on my iPhone, it did not show up in the list so I could not select it like you suggested. Therefore I could not sync that book to my iPhone. Thanks for the help though.
    The good news is I did manage to get the book on to my iPhone.
    When her book came out for preorder about a year or two ago, I looked for it in the iTunes store and preordered it. About a week after it came out, I found what was basically the same book for a dollar more. ($7.99 and $8.99) I figured there must be something additional (features) in the $8.99 book. So I bought it too. As far as I could tell though, they were exactly the same. So I decided to hide one of them so they would not both show up in my Library. Anyway, I went to my iTunes/iBooks account and managed the hidden books area. I unhid the Demi book and then it showed up in my iCloud to download on my iPhone. Now they are both on my computer so I need to figure out which one is the other one and hide it. So then I can delete it from my computer just have the one that is on my iPhone on both systems. But at least I found a way to get a copy on my iPhone.

  • How do you COMPLETELY remove EVERYTHING "googled" from your system?

    Help please....
        How do you  COMPLETELY remove EVERYTHING "google" from you're system PLEASE  !
    Including in key chain ?   Thank You Greatly in advance ...
    <Re-Titled By Host>

    I think I finally got rid of it.  I searched drive C for "beats" and "beat" and erased all of them that appeared to be related to Beats Audio.  I had to do that three times, each time deleting any Beats files tht showed up in a search.  Finally, after the third boot, nothing showed up in the search.  My audio is working just fine, and no more Beats Audio.  I imagine I could still run Beats through the motherboard but, as long as i don't try to run Beats, it's no longer automatically loading at boot.
    Thanks for your time.

  • How do I remove All OS X Server data and configuration settings

    My server app crashed and I deleted the app using app cleaner and removed the server file from the Library folder, owever when I try to reinstall the setup defults to the setting from the initial install.  Is there a way to remove all the stored data, profiles and OD included) as well as any configuration settings, such as those for AEBS and host name and ip address.  Essentially, I would like to perform an install that is the same as the initial, a truly cela install.  I am using a Mac Mini 2013 model as the server and MBP 15" as the main client.

    Completely clean install?  Wipe and install OS X, and then reload Server.app and configure that.
    Might want to report the error to the App Cleaner folks, too.

Maybe you are looking for

  • Crashing and 'out of memory' issues on new system

    having 'out of memory' errors and crashing while rendering on new FCP system. Here are system specs: Two ATI Radeon HD 5770 video cards Processor Name: Quad-Core Intel Xeon Processor Speed: 2.4 GHz Number Of Processors: 2 Total Number Of Cores: 8 L2

  • OSS note system

    Hello, I could not find a clear answer from search option, sorry for stupid question How do I access SAP OSS note system, from searching other posts I found you need a user I.D.? How do you get a user I.D.? What site do you enter your user I.D. when

  • Xcode Error won't compile any new projects!?

    If you can help, please do. I have been having this problem for a whole day now and its really becoming a pain in the head. Whenever I create a new project (Im working in C and Objective-C) even if don't write any code and just try and run the starte

  • Is the latest iMove still compatible with iDVD?

    I still enjoy using iDVD v7.1.2 from iLife '11. Is it compatible with the latest iMovie program? I am afraid to to install the latest version of iMovie because I fear iDVD may longer be supported.

  • PI is Trap receiver

    Hi NMS community I just installed PI 1.2  in the Lab. PI is of course also a trap receiver which get in traps with a community, Where can i configure the trap community for Prime ( not the one for the network elements ) ? Thanks Karl