Unlocking windows files doesn't work

Hi, I went to print some projects yesterday and my usb drive got a virus or two. Usually I would just unlock the files in Leopard and trash them, but I can't unlock the files with Snow Leopard.
Any help?
Thanks,
Jaco

Firstly, this is a bit long (sorry), but will fix your problem.
I solved this problem using the terminal. In the mac os, you need to move something to the trash before deleting it. In unix, on which the mac os is based, you can delete anything in place using the command "rm", shorthand for remove.
To delete locked files that you can't unlock and delete using the mac os, you will need:
Administrator privileges, including administrator password
A locked file
Extreme care
in addition to the "rm" command, you'll also be using the "sudo" command, which is short for "Super user do". Be very careful with this, as you will not be asked "are you sure?" when using "rm" or "sudo". any changes you make *are irreversible*. Consider yourself warned.
These steps assume that the files you want to delete are on an external drive, as mine were.
1-
open terminal
Macintosh HD>Applications>Utilities>Terminal
you should see something like:
Last login: Wed Oct 14 23:43:36 on ttys000
USERNAMEs-iMac:~ USER$
2-
type "cd /" and hit enter
Last login: Wed Oct 14 23:43:36 on ttys000
USERNAMEs-iMac:~ USER$ cd /
USERNAMEs-iMac:/ USER$
3-
type "cd Volumes" and hit enter. unix is case sensitive, and you'll need to give "Volumes" the capital "V".
Last login: Wed Oct 14 23:43:36 on ttys000
USERNAMEs-iMac:~ USER$ cd /
USERNAMEs-iMac:/ USER$ cd Volumes
USERNAMEs-iMac:/ USER$
4-
type "ls" and hit enter. This will list the contents of "Volumes". In case you haven't worked it out, the "cd" command is short for "change directory" and is used as the command line equivalent of opening a folder in the mac os.
Last login: Wed Oct 14 23:43:36 on ttys000
USERNAMEs-iMac:~ USER$ cd /
USERNAMEs-iMac:/ USER$ cd Volumes
USERNAMEs-iMac:Volumes USER$ ls
USB-DRIVE Macintosh HD
USERNAMEs-iMac:Volumes USER$
Before we move on, we need to take a look at what we have.
this line:
USERNAMEs-iMac:Volumes USER$
not only shows us where we are in the computer, but also shows that the computer is waiting for a command.
USERNAMEs-iMac:Volumes
means that we're in the folder "Volumes" on "USERNAMEs" computer. I assume that your username is not, in fact, USERNAME.
the $ symbol means that the computer is waiting for a command.
this line:
USB-DRIVE Macintosh HD
appeared after we typed "ls", short for "list structure"
in my case, there are 2 further folders inside "Volumes": "USB-DRIVE" and "Macintosh HD"
you may also have a few more, depending on what else is plugged in to your computer.
5-
in order to delete the files, you'll need to navigate to them. my locked files were on my USB drive, which is where i'm assuming yours are too. If not, navigate to them now using "cd".
if you need to go to your user account's home folder, type "cd ~ ". " ~ " is the button immediately below the escape button on your keyboard, and you'll need to hold shift to type it.
if you need to go to the top level of your computer (the same as double clicking "Macintosh HD" in the finder), type "cd /"
if you accidentally open a folder and just need to go up one level, type "cd .."
if you need to see what folders and files are at your current location, use "ls" again
if you can't open a folder, because there is a space character in the name, type "cd 'folder name' ", including the single quote marks, where folder name is the directory you're trying to open.
remember that unix is case sensitive, so match the case exactly for any files that you try to open.
Last login: Wed Oct 14 23:43:36 on ttys000
USERNAMEs-iMac:~ USER$ cd /
USERNAMEs-iMac:/ USER$ cd Volumes
USERNAMEs-iMac:Volumes USER$ ls
USB-DRIVE Macintosh HD
USERNAMEs-iMac:Volumes USER$ cd USB-DRIVE
USERNAMEs-iMac:USB-DRIVE USER$
6-
type "ls" again
Last login: Wed Oct 14 23:43:36 on ttys000
USERNAMEs-iMac:~ USER$ cd /
USERNAMEs-iMac:/ USER$ cd Volumes
USERNAMEs-iMac:Volumes USER$ ls
USB-DRIVE Macintosh HD
USERNAMEs-iMac:Volumes USER$ cd USB-DRIVE
USERNAMEs-iMac:USB-DRIVE USER$ ls
file1
file2
file3
file4
file5
locked file 1
locked2
program 1.app
program2.exe
some file1
some other file1
USERNAMEs-iMac:USB-DRIVE USER$
7-
the files I want to delete are "locked file 1" and "locked2"
if i use the "rm" command on a file, normally, that file will be immediately deleted.
Last login: Wed Oct 14 23:43:36 on ttys000
USERNAMEs-iMac:~ USER$ cd /
USERNAMEs-iMac:/ USER$ cd Volumes
USERNAMEs-iMac:Volumes USER$ ls
USB-DRIVE Macintosh HD
USERNAMEs-iMac:Volumes USER$ cd USB-DRIVE
USERNAMEs-iMac:USB-DRIVE USER$ ls
file1
file2
file3
file4
file5
locked file 1
locked2
program 1.app
program2.exe
some file1
some other file1
USERNAMEs-iMac:USB-DRIVE USER$ rm file1
USERNAMEs-iMac:USB-DRIVE USER$ ls
file2
file3
file4
file5
locked file 1
locked2
program 1.app
program2.exe
some file1
some other file1
USERNAMEs-iMac:USB-DRIVE USER$
if you attempt this on a locked file, however, it will ask you to confirm. (i forget the exact message, as I have deleted all the locked files already...) even if you type "yes" to confirm, the file will not be deleted.
this is where "sudo" comes in. "sudo" should only every be used as a last resort, if you are really 100% completely sure that you want to do whatever it is that you're doing with it. used improperly, "sudo" can destroy your computer. it won't here, with what we're doing, but i'm just trying to get across that it isn't a command to be played around with. (it's all fun and games until someone loses an eye...)
type "sudo rm 'locked file 1'" if the file has a space in its name, or
"sudo rm locked2" if it doesn't. obviously, "locked file 1" or "locked 2" will be different for you. if the file has a file extension, type that too, for example, "sudo rm program2.exe"
[snip]
USERNAMEs-iMac:USB-DRIVE USER$ rm file1
USERNAMEs-iMac:USB-DRIVE USER$ ls
file2
file3
file4
file5
locked file 1
locked2
program 1.app
program2.exe
some file1
some other file1
USERNAMEs-iMac:USB-DRIVE USER$ sudo rm locked2
Password:
The password that is now being asked of you is the Administrator password. If you are not logged in as administrator, you will need to log out and log in as one to do this.
Type your password and hit enter.
You will be asked at this point to confirm deletion of the locked file. Type "yes" and hit enter
if you type "ls" again, you should see that the stubborn file is gone. If you open the folder where it was located using the finder, you should see that it's gone, too.
8-
Repeat the "sudo" command for any other locked files that you need to delete. You will not be asked for your password again, unless you quit Terminal and relaunch it, but you will need to confirm each time.
once you have finished deleting files, you can just quit Terminal; you don't need to type a specific command to do so.
9-
geek "sudo" joke:
http://xkcd.com/149/
Message was edited by: Butterworm

Similar Messages

  • After Upgrading Acrobat Reader XI to Acrobat XI Pro the previewer in Outlook and Windows Explorer doesn't work.  I have to set the default program for .pdf's to Acrobat Reader inorder for the previewer to work.

    After Upgrading Acrobat Reader XI to Acrobat XI Pro the previewer in Outlook and Windows Explorer doesn't work.  I have to set the default program for .pdf's to Acrobat Reader in order for the previewer to work.
    Can anyone recommend a solution?

    If I set the default program for viewing PDF as Acrobat XI Pro the a PDF file will open with Acrobat XI Pro, but in Outlook I will get a white screen and the information bubble "This file cannot be previewed because there is no previewer installed for it" and in Windows Explorer I get a white screen in the preview pane.
    My Acrobat version is 11.0.10
    I am running Windows 7 Professional with Service Pack 1
    My Internet Explorer is Version 11.0.9600.17691
    Update Versions 11.0.17 (KB3032359)
    I am running Microsoft Office 2013

  • Jar file doesn't work

    I am quite new to java so I hope my question is not stupid.
    I used bluej to realize an application.It works when executing the main method in bluej,but when I create the jar file,it simpy doesn't work.I have included the main class when creating the jar file.When double-clicking on the jar file, it makes the typical error sound of windows,but it doesn't show any message.
    What is the problem?

    Welcome to the Sun forums.
    Subject: My Applet Jar file doesn't work !! .
    1) Note that one '!' denotes exclamation, whereas 2 or more often denotes a dweeb.
    2) Since you are on your first post, I will point out that applets are an advanced topic, and should not be attempted by newbies.
    3) "doesn't work" is very vague. It is likely to produce a reply like "maybe the applet is lazy - try flogging it".
    Amera wrote:
    ..I have written this java applet :When posting code, code snippets, HTML/XML or input/output, please use the code tags. The code tags help retain the formatting and indentation of the sample. To use the code tags, select the sample and click the CODE button.
    Also note that the most preferred form of code is an SSCCE *(<- link).* In an SSCCE, your would remove all but one button (if the actionPerformed fails with 6 or 7 buttons, trim it down to fail with just one or two.
    i made a jar file :So does the applet work before you make the Jar file? Your post so far suggests the Jar file is the problem.
    i created a file and named it MANIFEST.MF .i wrote inside it :
    Main-Class: test
    Then i placed it in a folder with the test.class .I created jar file using command line.
    I entered the test.class path and then wrote this command :
    jar cvfm myjar.jar MANIFEST.MF *.class
    Then the jar file "myjar.jar" is created .
    it's executed but this function "public void actionPerformed(ActionEvent e) " won't wrok.
    i keep pressing the buttons but nothing is happening !!So you get 'no output in the console & no effect in the applet'?
    What is the URL where I can see your applet failing?
    As an aside, since Sun does not guarantee that applet clients will act on the showDocument command, even if it does not work, it would not be a 'bug'.
    Edited by: AndrewThompson64 on Dec 28, 2009 11:18 AM

  • JSP referencinc taglib.tld in JAR file doesn't work.

    I have some custom tags which work fine under Weblogic 5.1 when I do a
              normal deployment of files, including the taglib.tld. However, when I
              try to reference the taglib.tld located in a JAR file, then weblogic
              throws an error saying that it cannot resolve into a valid tag library.
              I am only doing this because I am testing the same site agains both
              iPlanet Web Server and Weblogic. iPlanet will only find the taglib.tld
              when it is in a JAR file.
              Can anyone shed some light on referencing the taglib.tld in a JAR file.
              This should work, as it is covered in the JSP 1.1 specification.
              FYI - the jar file is in the same location as the JSP which references
              it. The URI to the JAR file (in the JSP) is from the root of the site.
              Thanks for any help.
              -Scott Edwards
              

    Welcome to the Sun forums.
    Subject: My Applet Jar file doesn't work !! .
    1) Note that one '!' denotes exclamation, whereas 2 or more often denotes a dweeb.
    2) Since you are on your first post, I will point out that applets are an advanced topic, and should not be attempted by newbies.
    3) "doesn't work" is very vague. It is likely to produce a reply like "maybe the applet is lazy - try flogging it".
    Amera wrote:
    ..I have written this java applet :When posting code, code snippets, HTML/XML or input/output, please use the code tags. The code tags help retain the formatting and indentation of the sample. To use the code tags, select the sample and click the CODE button.
    Also note that the most preferred form of code is an SSCCE *(<- link).* In an SSCCE, your would remove all but one button (if the actionPerformed fails with 6 or 7 buttons, trim it down to fail with just one or two.
    i made a jar file :So does the applet work before you make the Jar file? Your post so far suggests the Jar file is the problem.
    i created a file and named it MANIFEST.MF .i wrote inside it :
    Main-Class: test
    Then i placed it in a folder with the test.class .I created jar file using command line.
    I entered the test.class path and then wrote this command :
    jar cvfm myjar.jar MANIFEST.MF *.class
    Then the jar file "myjar.jar" is created .
    it's executed but this function "public void actionPerformed(ActionEvent e) " won't wrok.
    i keep pressing the buttons but nothing is happening !!So you get 'no output in the console & no effect in the applet'?
    What is the URL where I can see your applet failing?
    As an aside, since Sun does not guarantee that applet clients will act on the showDocument command, even if it does not work, it would not be a 'bug'.
    Edited by: AndrewThompson64 on Dec 28, 2009 11:18 AM

  • Read From Binary File doesn´t work on MCB2400 in LV2009 Embedded ARM

    Hello,
    I try to read a Binary File from SD-Card on my MCB2400 Board with LV2009 Embedded for ARM.
    But the output is always 0, if I use my VI on the MCB2400. If use the same VI on the PC it works fine with the same binary file.
    The
    access to the SD-Card on the MCB2400 works in other cases finde, if I
    try to read from a text-file it works without any problems.
    Are thre any constraints for the "Read From Binary File"-Node in Embedded in comparison to the same node on PC ?
      I have noticed that there is also a problem
    with the reading of textfiles. If the sice of the file is about 100Byte
    it doesn´t work anymore, too. I can´t understand it, because I read
    always just one Byte. And even if the implementation in Labview is so
    bad that it allways reads the total file in the ram it sould work. The
    MCB2400 has 32MegaByte RAM, so 100Byte or even a few MegaByte should
    work.
    But this doesn´t seem to be the Problem for the Binary-Problem. Because even a 50byte Binary-File doesn´t work.
    bye & thanks
    amin
    Solved!
    Go to Solution.
    Attachments:
    SD_Card_Read-test.vi ‏12 KB

    Hello,
    thank you for your Help.
    But I just want to read a Binary File, which is build by another program. And this is coded with 8Bit (like a normal Binary File) and not just with 7Bit (ASCII). So the workaround doesn't work in my case.
    I posted the Test-VI in my first post (here once again as picture). And it works fine on the PC, but if I try it on my MCB2400 the "Read Form Binary File" Node doesn't work.
    And it is also possible to open the Bin file with the "Read Text File" Node and see the cryptic content of the Bin-File. So the Problem seems to be in the "Read Form Binary File" Node.
    bye & thanks again
    amin
    Message Edited by aminat on 09-30-2009 03:28 AM

  • Question '''OS Win2000''' using '''FireFox 5.01 - portable''' Problem: '''Plug-in for Windows-Mediaplayer doesn't work

    '''OS Win2000'''
    using '''FireFox 5.01 - portable'''
    Problem:
    '''Plug-in for Windows-Mediaplayer doesn't work '''
    cause: presumably - Win2000 only copes with WMP 9.0
    Your FF 5.01-portable works only for WMP 12 (??)
    I have no problems with WMP when I use my regular FF 3.6 on this old Win2000. - WMP - Plug-in of FF3.6 works perfectly on my Win2000
    '''question:'''
    What can I do to get WMP running on my Win2000 using FF5.01-portable ?''''''

    See the Portable Firefox support forum for help with that. <br />
    http://portableapps.com/forums/support/firefox_portable

  • Examine and repair iphoto library files doesn't work?

    examine and repair iphoto library files doesn't work?

    As a Test:
    In the Source account - create a new library and try share it instead.
    Hold down the option (or alt) key and launch iPhoto. From the resulting menu select 'Create Library'
    Import a few pics into this new, blank library. Is the Problem repeated there?

  • GPO don't run specified windows applications doesn't work to in win 8.1. any ideas why?

    GPO "don't run specified windows applications" doesn't work to in win 8.1. any ideas why?  it is enabled and list of progs is entered however I can still run all progs on list.  This is a local machine not on a domain.  I must
    have this work to disable games, IE, MSpaint, etc.  Computer has been restarted since enabling the GPO and also have enforced the GPO via CMD prompt.  worked fine on windows 8 and 7.

    Any success ?
    Arnav Sharma | http://arnavsharma.net/ 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.

  • My  Applet Jar file doesn't work !!

    hello ,
    I have written this java applet :
    import java.awt.*;
    import javax.swing.*;
    import java.applet.Applet;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.net.URL;
    public class test4 extends Applet implements ActionListener{
         private static final long serialVersionUID = 1L;
         private JButton B1 =new JButton("Forward ");
         private JButton B2 =new JButton("Backward");
         private JButton B3 =new JButton("Left");
         private JButton B4 =new JButton("Right");
    private JPanel P1 = new JPanel();
    private JPanel P2 = new JPanel();
    private JPanel P3 = new JPanel();
    private JPanel P4 = new JPanel();
    private JPanel P5 = new JPanel();
    private JPanel P6 = new JPanel();
    private JLabel L3 = new JLabel(" ");
    private JLabel L4 = new JLabel(" ");
    private JLabel L5 = new JLabel(" ");
    private JLabel L6 = new JLabel(" ");
    private JLabel L7 = new JLabel(" ");
    JSplitPane sppSplitPane0 = new JSplitPane( );
         public test4()
              JFrame.setDefaultLookAndFeelDecorated(true);
              sppSplitPane0.setDividerLocation( 250 );
              P3.add(L4);
              P3.add(B1);
              P3.add(L5);
              P5.add(B3);
              P5.add(L3);
              P5.add(B4);
              P4.add(L6);
              P4.add(B2);
    P4.add(L7);
              P1.setLayout(new BorderLayout());
              P1.add("North",P3);
              P1.add("Center",P5);
              P1.add("South",P4);
              P2.setLayout(new BorderLayout());
              P2.add("North" , P1);
              B1.addActionListener(this);
              B2.addActionListener(this);
              B3.addActionListener(this);
              B4.addActionListener(this);
              sppSplitPane0.setLeftComponent(P2);
              sppSplitPane0.setRightComponent(P6);
         public void actionPerformed(ActionEvent e) {
              try {
                   if (e.getSource() == B4) {
              URL myNewURL = new URL("http://amera/cgi-bin/test.cgi?R");
              System.out.println("URL = " + myNewURL);
              getAppletContext().showDocument(myNewURL,"blank");
                   else
                        if (e.getSource() == B3) {
                        URL myNewURL = new URL("http://amera/cgi-bin/test.cgi?L");
                        System.out.println("URL = " + myNewURL);
                        getAppletContext().showDocument(myNewURL,"blank");
                        else
                             if (e.getSource() == B2) {
                             URL myNewURL = new URL("http://amera/cgi-bin/test.cgi?B");
                             System.out.println("URL = " + myNewURL);
                             getAppletContext().showDocument(myNewURL,"blank");
                             else {
                                  URL myNewURL = new URL("http://amera/cgi-bin/test.cgi?F");
                                  System.out.println("URL = " + myNewURL);
                             getAppletContext().showDocument(myNewURL,"blank");
              } catch (Exception err) {
              System.err.println("Error!\n" + err);
              showStatus("Error, look in Java Console for details!");
         public static void main(String[] args) {
              test t=new test();
              JFrame frame =new JFrame();
              frame.add(t.sppSplitPane0);
              frame.setSize(1100,700);
              frame.setVisible(true);
    i made a jar file :
    i created a file and named it MANIFEST.MF .i wrote inside it :
    Main-Class: test
    Then i placed it in a folder with the test.class .I created jar file using command line.
    I entered the test.class path and then wrote this command :
    jar cvfm myjar.jar MANIFEST.MF *.class
    Then the jar file "myjar.jar" is created .
    it's executed but this function "public void actionPerformed(ActionEvent e) " won't wrok.
    i keep pressing the buttons but nothing is happening !!
    please help me .
    Edited by: Amera on Dec 27, 2009 2:51 PM

    Welcome to the Sun forums.
    Subject: My Applet Jar file doesn't work !! .
    1) Note that one '!' denotes exclamation, whereas 2 or more often denotes a dweeb.
    2) Since you are on your first post, I will point out that applets are an advanced topic, and should not be attempted by newbies.
    3) "doesn't work" is very vague. It is likely to produce a reply like "maybe the applet is lazy - try flogging it".
    Amera wrote:
    ..I have written this java applet :When posting code, code snippets, HTML/XML or input/output, please use the code tags. The code tags help retain the formatting and indentation of the sample. To use the code tags, select the sample and click the CODE button.
    Also note that the most preferred form of code is an SSCCE *(<- link).* In an SSCCE, your would remove all but one button (if the actionPerformed fails with 6 or 7 buttons, trim it down to fail with just one or two.
    i made a jar file :So does the applet work before you make the Jar file? Your post so far suggests the Jar file is the problem.
    i created a file and named it MANIFEST.MF .i wrote inside it :
    Main-Class: test
    Then i placed it in a folder with the test.class .I created jar file using command line.
    I entered the test.class path and then wrote this command :
    jar cvfm myjar.jar MANIFEST.MF *.class
    Then the jar file "myjar.jar" is created .
    it's executed but this function "public void actionPerformed(ActionEvent e) " won't wrok.
    i keep pressing the buttons but nothing is happening !!So you get 'no output in the console & no effect in the applet'?
    What is the URL where I can see your applet failing?
    As an aside, since Sun does not guarantee that applet clients will act on the showDocument command, even if it does not work, it would not be a 'bug'.
    Edited by: AndrewThompson64 on Dec 28, 2009 11:18 AM

  • Getting PDF files doesn't work on Windows 7?

    Hi,
       I had a working installation of Adobe Output Central v5.5 on a Windows 2000 machine. I then tried to move it to Windows 7 because we want to change the hardare.
    I set up all programs to run as Windows 2000 under windows 7 (this is something you can decide with the standard functionalities of Windows 7) and all works, BUT, if I try to generate a PDF document I get the famous error [Invalid printer type (98)].
    I use the -asppdf command line parameter to force PDF output and the PDF presentment target is compiled into the MDF file.
    98 is the number that you can read in the "Printer Type" parameter in the pdf.ics file.
    If I comment out that line in the ICS file, the PDF file is produced, but it's corrupted, so it's not readable with any PDF reader.
    Any idea?
    Manyt thanks in advance.

    Have you tested an external mouse as I already suggested?
    You can try to install Value Added Package for another Portege series notebook. Just search a little bit on the Toshiba website.
    In worst case you have to restore factory settings (preinstalled OS). There should the mouse working properly.

  • Converting a Keynote document to Powerpoint file doesn't work

    I tried to convert Keynote documents to PowerPoint files that can be viewed and edited by PowerPoint users on Windows or Mac OS computers. All I got was a error. Can any one tell me how to make this work.I did every thing that was in the instructions.
    To create a PowerPoint slideshow:
    Choose File > Export and then click PowerPoint.
    Click Next.
    Type a name and choose a location for the file, and then click Export.

    Hy Kyn, thank you for answering.
    Every slide on my presentation has animated objekts. And every slide is linked (by hyperlink) to every slide on the presentation. So I want to give the user the chance to interrupt and to go to next slide. Therefore is an arrow to klick on, which has a hyperlink to next side (or do go to start, or to go back) - during the slide-animation is working.
    That works fine in keynote, but it doesn't work after the export in QT. In QT it is not possible to interrupt the sequence of the animation. When the sequence is (performed) finalized, the klick on the arrow works, and I can go to next slide.
    But interruption is not pssible.
    Tanks in advance for your answer!
    Best regards - Renate

  • Save As... Duplicate lvproj file doesn't work correctly with lvlibs/lvclasses

    I am trying to save a copy of a project with all dependencies so that I can sent a subset of our code to NI technical support for another issue. I have been unable to do this successfully and have isolated this to limitations of "Save As..." --> "Duplicate .lvproj file and contents (Include all dependencies)" when handling lvlibs and lvclasses. I am wondering if I am doing something wrong or if there is a workaround. 
    I am using LabView 8.6.1 under Windows. A sample project displaying this issue is attached. To repro the problem I am having,
    Open library.lvproj. This is simple project with one library (SimpleLibrary.lvlib) and two VIs that are member of that library. (Add.vi and Subtract.vi).
    File -> Save As... -> Duplicate .lvproj file and contents (Include all dependencies)
    Pick a new location in your filesystem somewhere.
    The save starts, then LabView puts up a dialog box "Cannot save library 'SimpleLibrary.lvlib'. Another library in memory is already loaded from that path." (Note that this is not true; the library is loaded from the original project path; nothing has as of yet been saved to the new project path.)
    LabView it gives you a file dialog in the target location. If you click OK (opting to save it to the new location in the same relative path as in the original project), it returns to the "Cannot save library" dialog box. If you create a new folder (i.e. "New Folder") in the target and descend into the target, then the save is allowed, but when you re-open the project it looks for the library at the old location (relative to the new copy of the project), and it opens it as conflicted. The conflicts must be resolved manually. 
    The manual move-and-unconflict process is tolerable with a simple project containing one library, but it is impractical in a large project with dozens of lvlibs and classes.
    Can anyone suggest a workaround for this behavior so that a project can be exported with all of its dependencies and without path corruption? 
    Thanks,
    Rob 
    Message Edited by Rob Calhoun on 08-24-2009 03:10 PM
    Attachments:
    libraryproject.zip ‏9 KB
    cant-save-lvlib.png ‏7 KB

    I loved Ben's suggestion because it promised to be a low-effort workaround, but, alas, I get the same problem: "lvlib is already loaded from this path...".
    I tried Olivia's workaround for CAR 124214. It worked great for the simple lvproj that is posted above. (Hooray!) It didn't work so well in my real project, that has about 30 lvlibs and lvclasses. About 3/4 of the way through the save, I got a compiler error and LabView crashed. (Boo!) I submitted the crash log on this, but it's hard to imagine how anyone in R&D could make any progress debugging this without the source code. (And I can't submit the source because I can't export a copy of it!)
    Anyway, thank you very much Ben and Olivia for your suggestions. I have lvclasses embedded in lvlibs (primarily for organizational reasons) and since LabView tanked while saving one of those, perhaps the workaround doesn't work in this case. I may try again after removing the lvclasses from the lvlibs so that the hierarchy is flatter.
    -Rob 

  • HT4061 Drag and drop function in Windows 8 doesn't work with iTunes.

    How to import music files from Windows 8 to iTunes 11.0.3 x64? Drag and drop function doesn't work. Thank you!

    > Straight drag and drop to PS produced a warning message so, when I then tried to drag on to the PS task bar button, I got the Ø cursor but on moving into the PS window and releasing the mouse button there, the file opened.
    That's the strangest behavior that I would imagine. Are you using the default vista aero theme or you have turned down or using custom theme and visual effects?
    > it needs to be pointed out that this is a really bad habit that will smack you in the face one day...
    I don't understand what you mean. If you are concerned about viruses, in my understanding copying and opening a file from the internet which is what "Save image as" does, is less safe than coping and pasting pixels. Copying and pasting pixels is the same as coping and pasting text from your web browser, it can't execute hidden code. If that was possible everybody will get viruses at the moment text or pixels are displayed on your browser.
    By the way when you view a page from the internet, image files are already downloaded in the temp folder of your computer but only the browser uses them unless you open them from there and use in another program. So if you have a virus protection the images are already scanned.

  • Windows users doesn't work after migrating from old to new server!

    We have done a complete re-install on our XServe with OD. We have about 10 Windows users, and after the installation all their settings and mail are gone. All the "normal" files are there though.
    I'm not sure we have done it the right way though: We did a backup from the old server (a bootable copy with Super Duper), then we formatted and installed everything. We made new accounts (with different names if that's good to know) and copied the users home folders to the new location. The Mac clients seem to work good, but all the settings on the Windows clients are gone...
    Is there an easier way to this? We still have the workable copy from the old installation. There seems to be some kind of export/import way to do this, but I haven't got a clue how to do that...
    Please help!

    davidh,
    We didn't reintegrate smb.conf, but set the new server up just like the old one. We did however compare these files to see that the vital parts (netlogon, shares and so on, and of course basic settings) were correct.
    We also copied the user files and profiles and made them identical on the new server, except for placing them under the new usernames.
    Regarding the Local Settings folder, it doesn't exist on the old server, that's one of the weird things. We've checked the profile for a user on the client machine, and it is a roaming profile. That's why we're a bit puzzled as to why the login works and all files are there, but the user preferences and Outlook doesn't work.
    I know I've read somewhere that the Local Settings aren't replicated like the other files in a roaming profile, but I haven't finished checking up on that. I wouldn't expect anything else than that Windows takes care of Outlook e-mail for a roaming profile as well though; I mean, the user must be able to read his/her mail from any computer in the domain, what else would the purpose of a roaming profile be?
    Except for the weird thing about us not being able to find the user preferences or Outlook files for the client amongst the files on the server, I feel we're missing something; Apparently Windows isn't as straight forward as one would expect (not sure why I did expect anything, come to think of it).
    We're going to give it a new go next weekend. Except for doing further research we're thinking of copying /etc/smb.conf and the files in /var/samba and /var/db/samba to the new server, along with exporting and importing the old user accounts to the new server, and then see if everything works as expected.
    If so, we'll see if we can change the account names in a nice way, it's really desired to do so.
    If not, we really need to do some more research, but if I'm not mistaking, the Samba-related files I just mentioned are the ones that pretty much make up the Windows Services in OS X, isn't that so?
    Thanks!

  • Create AAC from Wav file doesn't work

    I've converted many WAV files to AAC and it worked fine.  The last few times I've tried it it isn't working.  I hear the bleep which I think indicates it's been converted but I can't find it anywhere so assume it didn't happen. 
    I have Windows XP.  I am running iTunes  10.3.1.55
    Any ideas would be appreciated.
    Thanks,
    Ginny

    Hello,
    thank you for your Help.
    But I just want to read a Binary File, which is build by another program. And this is coded with 8Bit (like a normal Binary File) and not just with 7Bit (ASCII). So the workaround doesn't work in my case.
    I posted the Test-VI in my first post (here once again as picture). And it works fine on the PC, but if I try it on my MCB2400 the "Read Form Binary File" Node doesn't work.
    And it is also possible to open the Bin file with the "Read Text File" Node and see the cryptic content of the Bin-File. So the Problem seems to be in the "Read Form Binary File" Node.
    bye & thanks again
    amin
    Message Edited by aminat on 09-30-2009 03:28 AM

Maybe you are looking for