Move file - I need prevent the original files to be moved by other users who are copying files

I need to keep the original file cannot be deleted during a moving file.  Is there an option?

Two suggestions:

Solution of the authorization in function of

  • Ensure that all students have access only "limited user" to the computer.
  • Set the permission for the folder in which the files are located on 'Read only' for administrator users.
  • It is easy to do if you have XP Pro and Simple file sharing is disabled (link).  In the case against (and anyway), read more here--> http://tweakhound.com/xp/xpperm/xpPerm1.htm
  • This method fails if you have students able to crack the password for the built-in Administrator account (or the password to your account "computer administrator").

The computer freeze

  • Install and use an application like Deep Freezeconfiguration control.  This restores the computer to a known state whenever it is restarted.
  • Of course, this won't help if A student deletes the file and student B looking for him until the computer is restarted.

Tags: Windows

Similar Questions

  • Why my Acer laptop not restore my laptop the original software (factory) and leave all other files on it.

    I tried e twice Acer recovery tool to format my hard drive and return it to the original settings, but it does not work. any advice?

    Using instructions like this?

    ACER PC Restore to factory settings

    http://en.kioskea.NET/FAQ/2040-Acer-PC-Restore-to-factory-settings

  • Need of the original iPhone sim card

    I'm looking for a sim card for the original iPhone so I can use it like an iPod.

    Thank you!

    Contact your wireless provider or a wireless provider

  • I want to remove the names of registered users who are wrong and in some cases include the pword... alterations.

    Among the usernames being saved are errors... so when you enter the username box, I get a "list" of names of users. A couple username + password because apparently has not seen that the tab key did not move the slider and it was just marked on the user name. I wish I could delete or reset the user names. Questions from the forum deal with saved password, but I did not save any of my passwords and user names are automatic, unless I disable history research and form "Save". Any suggestions?

    Follow these steps to delete the recorded data (form) in a drop-down list:

    1. Click on the (empty) input field on the web page to open the drop-down list
    2. Select an entry in the drop-down list with the mouse or the cursor key
      do not click with the mouse or press the Enter key
    3. Press the DELETE key (on a Mac: shift + del) to delete the highlighted entry

    You can also check the Manager mot de passe for registered user names and passwords.

  • The identity of the AD service: remove or disable users who are not?

    We currently have set users to be 'disabled', but then he must remember periodically go and delete them manually. It also creates problems with duplicate user names. Do you automatically remove your users? I have always been concerned that if something goes wrong with a synchronization then all of my users would be deleted.

    We had the same problem here, so I wrote an external operation that is grafted on to the user synchronization job and remove disabled users more than X number of days. For example, in our case, users are deleted after 180 days of being disabled (it's a little extreme). This way you can offer you a few days before that the users are actually deleted, but keep the automated process. There are a few options integrated, which should be visible from the source code. Here is the source:

    package com.oracle.services.jobs;

    import com.oracle.services.utility.SessionManager;
    import com.plumtree.openfoundation.util.XPCalendar;
    import com.plumtree.openfoundation.util.XPDateTime;
    import com.plumtree.portaluiinfrastructure.resultwrapper.ASQueryResultWrapper;
    import com.plumtree.server.IPTObjectManager;
    import com.plumtree.server.IPTQueryResult;
    import com.plumtree.server.IPTSession;
    import com.plumtree.server.IPTUser;
    import com.plumtree.server.IPTUserManager;
    import com.plumtree.server.PT_LOCKSTATES;
    import com.plumtree.server.PT_PROPIDS;

    /*******************************************************************************
    * This class supports the work of server automation for deletion of user accounts
    * which have been disabled for a certain number of days.
    *
    hross * @author
    *
    */
    public class DeleteDisabledAccountsJob {}

    filter to remove only agent disabled accounts
    private static String FILTER_AGENT = 'this user has been locked by a user synchronization job.';

    filter to delete the disabled accounts everything (including those disabled by one
    Admin)
    private static String FILTER_ALL = "";

    Public Shared Sub main (String [] args) {}

    check the arguments
    If ((args.length < 2)="" ||="" (args.length=""> 4)) {}
    System.Err.println ("use :");
    System.Err
    .println ("DeleteDisabledAccountsJob ");
    System.Err
    .println ("DeleteDisabledAccountsJob all the");
    return;
    }

    get a session from the connection token
    IPTSession session = SessionManager.createSession(args[0]);

    get a number of days
    int numDays = 0;
    try {}
    numDays = Integer.parseInt(args[1]);
    } catch (Exception ex) {}
    System.Err.println ("number of days not a valid integer.");
    return;
    }

    filter all or just the agent?
    Boolean filterAll = ((args.length > 2) & (args [2] .equals ("all")))
    || ((args. (Length > 3) & (args [3] .equals ("all")));

    Boolean test = ((args.length > 2) & (args [2] .equals ("test")))
    || ((args. (Length > 3) & (args [3] .equals ("test")));

    If {(test)
    System.Err.println ("it's just a test. Nothing will be deleted. ») ;
    }
              
    If {(filterAll)
    System.Err
    .println ("this job will remove the accounts disabled everything (including those disabled by an administrator) '. '");
    } else {}
    System.Err
    .println ("will this work only remove users disabled by an authentication source.");
    }

    calculate for 180 days in the past, based on the current date
    Cut of XPDateTime = new XPDateTime();
    XPCalendar xpCalendar = XPCalendar.GetInstance ();
    xpCalendar.Add (XPCalendar.HOUR,-(24 * numDays));
    Break = xpCalendar.GetTime (); subtract from 180 days from now

    System.Err
    .println ("this work will remove before disabled user accounts:")
    + cutOff.toString ());

    request for disabled user accounts
    UserManager IPTUserManager = session (IPTUserManager). GetUsers();
              
    Result = userManager.GetLockedAccounts (filterAll IPTQueryResult? FILTER_ALL
    (: FILTER_AGENT, 0, -1);
    ASQueryResultWrapper ptqrUserLock = new ASQueryResultWrapper (result);

    for (int i = 0; i)< result.rowcount();="" i++)="">

    get some basic user information
    userId int = result. ItemAsInt i, PT_PROPIDS.PT_PROPID_OBJECTID;
    String name = result. ItemAsString i, PT_PROPIDS.PT_PROPID_NAME;
    Connection string = result. ItemAsString i, PT_PROPIDS.PT_PROPID_USER_LOGINNAME;
    XPDateTime dt = result. ItemAsXPDateTime i, PT_PROPIDS.PT_PROPID_CREATED;

    System.Err.println ("found account: (" + userId + ")" + connection)
    //                         + ", " + name);

    Check to see if we need to remove the user
    If (dt. {Before (cutOff))}

    If (! test) {/ / if the test, we only want to see that would have demolished us}
    We try to unlock user b/c of a bug in
    Automation
    Server
    The user IPTUser = (IPTUser) ((IPTObjectManager) userManager)
    . Open (userId, false);
    try {}
    user. SetLockedStatus (false);
    user. Store();
    } catch (Exception ex) {}
    We expect that it will fail b/c of a bug
    }

    Make sure that the account is unlocked
    If (by the user. GetLockState() is PT_LOCKSTATES.PT_LOCKED)
    user. UnlockObject();
                             
    Okay, now we can delete the user
    ((IPTObjectManager) userManager). Delete (UserID);
    }

    System.Err.println ("deleted the user account:" + userId + "-" + login + "-" + name);
    }

    }
    }

    }

  • My Flash Player is active for the administrator, but not active for two other users on my computer. How to solve this problem?

    The system is Windows 10.

    Flash Player is not active for two other users using Internet explore and Microsoft Edge.

    Configuration in Internet Explorer

    -Shockwave Flash Object activated

    -ActiveX active filtering

    Edge configuration

    -L' use of Adobe Flash Player is on

    Hello

    We are aware of this issue and are working with Microsoft to resolve the issue.

    --

    Maria

  • User ID and password, how he can only see the Web page belong to him and other users cannot visit

    I use PHP + SQL + DW to develop the Web site. This site has 5 users, each user will follow up its own list of clients that is in the same form of mySQL database.  Each user has its own ID and password.

    My question is:

    1. how to make each user can see only its own customers?

    2. when users connect you, how each of them can visit only its own web page, while the other 4 users cannot visit.

    Waiting for your response.

    Thank you.

    Martin

    You must make sure that the SELECT statement in all Recordset queries contains the user id in the WHERE clause. The structure of the SELECT statement must be such that it limits the results to only relevant lines for this user. This ID must be filled with a session variable. Do not go to the page using a query string.

  • An action that I recorded only works on the original image, but won't on others, I run it on that!

    I recorded a simple action in Photoshop CC on one of my photos, to create a border/frame, adding a stroke, reversing, use content aware to fill, then uncheck the box that gives me a nice little frame.

    I created it on a picture of ice on the foam, and he did it very well.

    I then opened a second image (and image of third and fourth different) and ran to the action, and instead to use the framework in the same position, he enlarged and went out of the image about 1000%!

    Any thoughts?

    Paul.

    Action is very bad for the very first step will interpolate each image to 45,72 cm depending on the size of 30,48 cm at its current DPI resolution. Distortion of each image that has a different aspect ratio then the image you saved the action on. You need to go back to square one to think about your efforts.

  • I changed the network settings of 'area' to the 'task force '. Now all (admin too) user passwords are not valid. How can I access my computer?

    Microsoft support suggested to reinstall the system, as the security policy does not allow to reset the admin password.
    From my point of view, their security policy is useless when you get out of HD and put in another machine. All the data is yours.
    My concern is to avoid the reinstalling all software as well as custom settings. Even if you saved all the files of configuration, it may still take some time.

    Hi Novina,

    Please see article about your question:

    http://support.Microsoft.com/kb/317049

    I hope this helps!

  • Need software driver for small light Modem Compact ideal for users who need to connect to a dial upward.

    Remember - this is a public forum so never post private information such as numbers of mail or telephone!

    Ideas:

    • You have problems with programs
    • Error messages
    • Recent changes to your computer
    • What you have already tried to solve the problem
    I tried to install the modem that allows the computer by dial-up, but Vista said it found no software (I do not have the program, it did not come with software) suggestions? Thank you!
    Cheryl

    Go to the Web site of the manufacturer "Small Compact light Modem" > search for Vista Compatible Drivers/Firmware.

    They write the software for their product

    And also ask them if it is Vista Compatible.

    They will give you the installation instructions for their product.

    See you soon. Mick Murphy - Microsoft partner

  • BlackBerry smartphones "the application cannot be processed until multiple pending user authentications are resolved (error Id: 40831).

    I tried to login to my account to update to Windows Live Messenger and got this error message. What should I do to correct this? I have not attempted to identify some time, so I'm afraid it says "multiple pending user authentications.

    According to me, whereas it has proved to be a problem of Blackberry App World (or BB in general). A battery lawn mower folding to solve the problem... Thanks for your suggestion though

  • Copy/move files - security problem

    I have a laptop gateway model MP8708, which ran on XP.

    Jack was no longer working with the power cord and the battery wouldn't hold a charge. The computer is unusable without the power supply cord is not an option to turn back on my old Gateway computer. Instead of investing the money in the repair of a computer that is several years old, I bought a new computer.

    On the gateway computer (original), I got my computer set up to always ask for my password before it would allow access after 5 minutes of inactivity proved, or whenever the computer went into hibernation or has been disabled.

    The original hard drive Gateway has been removed so I could copy or move my files from the old hard drive to my new Acer laptop hard drive, and I have a device that allows me to use a USB to connect it to my new computer.

    The new Acer running Windows 7.

    -When I try to drag a file on my new hard drive, I get this: "file access denied. You need give the administrator permission to copy this file. "If I click CONTINUE, I get"file access denied. You need permission to perform this action. You need permission from the administrator of the computer to make changes to this file. »

    -When I try to drag an entire folder of my old hard drive to my new hard drive, I get: "file access denied. "You need give the administrator permission to copy this folder. When I click on CONTINUE, I get: "file access denied. You need permission of the administrator of the computer to make changes to this file.

    I guess it's because I had a password set up, I have * * know the password.

    How to get the old hard drive to let me copy or move these files? They are MS Word files as well as jpg, or audio files, etc., not computer programs.

    Thank you.

    Hello

    Try to take possession of the disc and check.

    a. click on the drive, click Properties and then click the Security tab.
    b. click Advanced and then click the owner tab.
    c. click on edit and then do one of the following:
    (d) to change the owner to a user or group that is not listed, click other users and groups and enter the object name to select (examples), type the name of the user or group and then click OK.
    e. to change the owner to a user or a group is listed in the change of ownership of the area, click the new owner.
    f. If you want to take ownership of the contents of the disc, select the Replace owner of subcontainers and objects of the box.
    g. click OK and then click Yes when you receive the following message appears: you are not allowed to read the contents of directory folder name. Do you want to replace the the directory permissions with permissions granting you full control?
    h. all permissions will be replaced if you click Yes.
    i. click OK.

    Appropriating a file or a folder
    http://TechNet.Microsoft.com/en-us/library/cc753659.aspx

  • How to combine the music added with the original soudtrack in windows movie maker

    I want to combine the music and the original soundtrack in a video that I am editing in Windows Movie Maker (Vista).

    The original soundtrack must be amortized in some clips and replaced with music added; This process must be reversed in some other clips.
    Could someone advise me in this case?
    Thanks in advance.
    HanLee

    I want to combine the music and the original soundtrack in a video that I am editing in Windows Movie Maker (Vista).

    The original soundtrack must be amortized in some clips and replaced with music added; This process must be reversed in some other clips.
    Could someone advise me in this case?
    Thanks in advance.
    HanLee

    =========================================
    I guess just that you run Vista Movie Maker 6?

    You say that you have changed the music pieces... and now you want to
    to combine the music.

    Does this mean you want to record music as another
    audio file in addition to the file video .wmv?

    The best would be to extract the audio file of the publication
    (recorded). WMV video file.

    To accomplish this... just reimport the published (recorded). WMV
    file in Movie Maker and then drag it to the audio / music... then
    Publish (save the file) and it will become a. WMA audio file.

    If my understanding of this issue is incorrect, please provide
    more details.

  • need to download the original cs6 ps for mac

    you will need to download the original cs6 ps for mac that I've lost my copy of possessed.    I am the holder of license of registry of the copy.  Where can I do so.  Is not the version of cloud.

    See also http://helpx.adobe.com/x-productkb/policy-pricing/cs6-product-downloads.html

  • Prevent the same selection in the menu in a Table expanding

    Hi all

    I have a table 2 x 2 in which the top line is a header line and the line of the low 'Row1 '. Row1 Cell1 has two buttons, one to add a new Row1 using Javascript click script of the instance:

    this.parent.parent.instanceManager.addInstance)

    .. .and one for delete all Row1 using Javascript click script of the instance:

    rowNum var = this.parent.parent.index;

    this.parent.parent.instanceManager.removeInstance (rowNum);

    Row1 Cell2 contains a datadropdown object.  Basically, when a user adds an extra Row1, I need prevent the to select a previously selected item in the list of dropdowndata.  I can't understand because I'm trying to set up output instance script (or would be - this script validate?) who's trying to reference Row1 [*].  In most simple situations where I have two fixed objects, I just made this as an output FormCalc script:

    If (Object1 = Object2)

    then xfa.host.messageBox ("you cannot select the same thing again")

    and xfa.host.resetData ("Object1")

    endif

    ... that prevents the user to select something with the same rawvalue by alerting the, then turning off the field.

    I hope this makes sense and someone can help!  Thanks in advance for all the gurus of adobe there

    Hello

    Would it not possible to filter the choices in the drop-down list that have already been selected.  If so, you could try something like this JavaScript in the event your falling down preOpen.

    dropDownItems var is ['abc', 'def', 'hij'];.

    var lines = Table1.resolveNodes ("Row1 [*]");

    for (var i = 0; i)< rows.length;="">

    {

    var line = rows.item (i);

    If (! line.) DropDownList1.isNull)

    {

    dropDownItems = dropDownItems.filter (function (item) {element return! == row.}) DropDownList1.rawValue});

    }

    }

    this.setItems (dropDownItems.join(","));

    The first line Initializes a variable with all possible values and then we will although each line filter those already selected.

    You will probably have to change the names of form objects depending on you form, but here's my sample to test the code, https://files.acrobat.com/preview/eb0256dc-af30-4f7c-9187-469ba84464a4

    Concerning

    Bruce

Maybe you are looking for

  • Need help moving SL to El Capitan

    Here's the scenario- I tried El Cap on an external and everything works fine - apps, etc. I need to update as much as I hate (Firefox and Safari is no longer supported in SL, among other needs). I have an iMac that is partitioned - everything is on S

  • What happened to the shortcut "Organize bookmarks" in the bookmarks toolbar?

    I used to use the feature "Organize bookmarks" to edit, rearrange and manage folders for my favorites. I can't find "Organize bookmarks" in the bookmarks toolbar. Where at - it go? There is another easy way to edit, rearrange and manage the files to

  • Skype does not work after upgrade. Gets error "Skype cannot connect.

    Hello I use Skype for a long time, a few days ago, I got an update from Skype, so I installed the upgrade. Since then when I log in, I get error "Skype cannot connect. Will you please reply back as soon as POSSIBLE because I need this very urgent app

  • C: OS shows the red zone

    My computer is still in the 'red' on the screen computer for drive c 'os', he says that I don't have 24 GB left, how can I get rid of errors and unwanted

  • Cannot access the cbs.log newspaper

    Hello im running windows 8 on my computer laptop Packard bell, when I installed windows 8 suddenly, I could not access the BIOS, the Member of the staff at Packard bell told me to scan windows to find errors, and when I did I was surprised he found c