Capturing user state........ Retaining files for a specific time?

Capturing user state........ Retaining files for a specific time?
Can I retain the user files/data for a specific time as a copy after capturing user states then restoring them? If so what's the procedure and location of the files?
tconners

If you are using a SMP, yes, this is built-in functionality. The files are located in the location(s) specified on your SMP configuration. You'll also need the computer association that created them because it contains the encryption key.
Jason | http://blog.configmgrftw.com

Similar Messages

  • How can I perform data logging for a specific time??

    hello everyone,
    I am quite new in labview and I have a basic question regarding data logging. Currently I am using a cRIO9074 and doing some data logging for my test. The data logging it self works ok so far.
    But my problem is I would like to write my datas in a text file either for a specific time interval (ex)10 seconds) or for a specific amounts of data (ex)500 Samples). Can anyone give me some help regarding my problem?? Attached you can find my RT.vi 
    I would appreciate for anyhelp!
    Regards
    Yun 
    Attachments:
    BP250 Encoder Position & Velocity (Host).vi ‏92 KB

    Run your loggging program for that time. When your program terminates then it will write all the logged data so far in text file.
    Kudos are always welcome if you got solution to some extent.
    I need my difficulties because they are necessary to enjoy my success.
    --Ranjeet

  • Table or FM to display inventory for material in plant for a specific time

    Hi, is there a table or FM or transaction that can display the plant inventory for a material for certain batch/plant for a specific time? I need to trouble shoot a problem that may be related to delivery not been created on the date determined in the sales order schedule line. Need to see if there is actually sufficient stuff at the time when the delivery due list is executed.
    MMBE or MB52 only gives me the inventory level as of the systems date/time. Need to pull out historical data.
    Any advise is appreciated.
    Thanks

    hi
    MB5B is one option to get stock on particular date.may be you can chedck MD05 - MRP list to get stock statement at time of MRP run.
    Vishal...

  • Is it possible to schedule updates for a specific time of day like 12am?

    Is it possible to schedule updates for a specific time of day like 12am?

    No. If you use Automatic Updates, the apps update when the updates are available. Read this for a little more information.
    http://9to5mac.com/2013/09/20/ios-7-how-to-set-up-automatic-app-updates/

  • Can you ask for a specific time for your package to be delivered

    can you ask for a specific time for your package to be delivered

    You can only arrange that with the shipper after your package is shipped (and before it is deliverd.) When the package is shipped Apple usually emails the tracking information.

  • Make movieclip visible for a specific time duration

    Is there any possibility to make a movieclip visible for a specific time (e.g. 5sec.)? I want to make "srch275" show for 5 seconds and then make it disapear. Can this be achived?
    sruch_btn.onRelease = function () {
    if (cosearchbx.text == "APPLE"){
    srch275._visible = true;

    use setTimeout():
    sruch_btn.onRelease = function () {
    if (cosearchbx.text == "APPLE"){
    clearTimeout(srch275TO);
    srch275TO=setTimeout(srch275F,5000);
    srch275._visible = true;
    function srch275F(){
    srch275._visible=false;

  • Can multiple users share one file for iphoto

    I want to be able to have all the user profiles on our iMac access the same files for iPhoto, so when one user adds photos they are there for anyone who logs on.

    For iPhoto 09 (version 8.0.2) and later:
    What you mean by 'share'.
    If you want the other user to be able to see the pics, but not add to, change or alter your library, then enable Sharing in your iPhoto (Preferences -> Sharing), leave iPhoto running and use Fast User Switching to open the other account. In that account, enable 'Look For Shared Libraries'. Your Library will appear in the other source pane.
    Any user can drag a pic from the Shared Library to their own in the iPhoto Window.
    Remember iPhoto must be running in both accounts for this to work.
    If you want the other user to have the same access to the library as you: to be able to add, edit, organise, keyword etc.
    Quit iPhoto in both accounts. Move the Library to the Users / Shared Folder
    (You can also use an external HD set to ignore permissions, a Disk Image or even partition your Hard Disk.)
    In each account in turn: Double click on the Library to open it. (You may be asked to repair the Library Permissions.) From that point on, this will be the default library location. Both accounts will have full access to the library, in fact, both accounts will 'own' it.
    However, there is a catch with this system and it is a significant one. iPhoto is not a multi-user app., it does not have the code to negotiate two users simultaneously writing to the database, and trying will cause db corruption. So only one user at a time, and back up, back up back up.

  • Second system User cannot see files for first system User

    For reasons too complex to go into, I had to set up a second system User. (Okay, an Apple tech at the Apple Genius Bar did this, to fix corrupted Apple Mail)
    I am both Users. Both are admins.
    According to the documentation, User2 should be able to see files belonging to User1 (and vice versa, I presume), but this is not happening. It looks like I have to manually transfer files from User1 to User2. (Once I do this, I will abandon User1, so I don't have to keep them in sync.)
    How to set up so User2 has access to User1's files (and vice versa)?

    Once you enable sharing, you use the Finder window to go to the other user home folder/directory. For example, if you're logged in as user1 and you want to see the user2 tree, just tell Finder to open /Users/user2 (via the Go command). This assumes that all your user folders are located in /Users - if you have for example a separate disk for user folders then you would substitute that volume name - for example you have all your user home directories on /Volumes/Users, you would tell the Go command /Volumes/Users/user2
    Also, just to make something clear - don't spread your files across the two user accounts - copy all the stuff from both into one of the user accounts and then when you have everything you need, you can get rid of the account that is no longer needed. The only problem you might run into is that you have files owned by an account that is different from where they are physically located. But if you copy things (don't move them - copy them) you should not run into this issue. But if you do run into this issue, it is easily resolved with a couple of Terminal commands usually. Do you know how to copy things with Finder as opposed to move them?
    Does that help?

  • Grepping a file for a specific pattern

              I'm trying to use a servlet to mimic a tail/grep operation on a log file. Whilst
              I can use a FileReader
              to get the contents of a file and put them to a string and display on a browser,
              I am only interested in a certain pattern.
              E.g. on my Unix web server if I type the command
              $tail -f mylog | grep 'ERROR'
              It returns only strings that contain an error message.
              I tried looking at java.util.StringTokenizer and java.io.StreamTokenizer but they
              both
              seem quite limited.
              Obviously tailing might be a bit tricky, but it would be great to find a way to
              search througha file for
              error information.
              thanks
              Mark
              

    I use something like the following to go through a log file for particular
              application errors...
              Thanks
              Rob
              RandomAccessFile fis = new
              RandomAccessFile("mylog.log","r");
              long fpointer = 0;
              long flength = fis.length();
              out.println("the log file is " + flength + "
              bytes.");
              while( fpointer < flength ) {
              String s = fis.readLine();
              if(s.indexOf("ERROR") == -1)
              continue;
              "Mark McKee" <[email protected]> wrote in message
              news:3adf14db$[email protected]..
              >
              > I'm trying to use a servlet to mimic a tail/grep operation on a log file.
              Whilst
              > I can use a FileReader
              > to get the contents of a file and put them to a string and display on a
              browser,
              >
              > I am only interested in a certain pattern.
              >
              > E.g. on my Unix web server if I type the command
              >
              > $tail -f mylog | grep 'ERROR'
              >
              > It returns only strings that contain an error message.
              >
              > I tried looking at java.util.StringTokenizer and java.io.StreamTokenizer
              but they
              > both
              > seem quite limited.
              >
              > Obviously tailing might be a bit tricky, but it would be great to find a
              way to
              > search througha file for
              > error information.
              >
              > thanks
              > Mark
              

  • How to let user download multi files at the same time in WebDynpro ABAP?

    hi all:
    As you know, WeyDynpor has provided upload/download UI element, but it seems that it only support one file upload/downlaod at the same time.The following is the API method to download one file in Webdynpro:
        cl_wd_runtime_services=>attach_file_to_response(
         EXPORTING
           i_filename      = lv_filename
           i_content       = lv_content
           i_mime_type     = lv_mine_type
           i_in_new_window = abap_true
           i_inplace       = abap_false
    *      EXCEPTIONS
    *        others          = 1
    but if when use click one button, we want to provide user a html file plus 2 icons files which are used as this html file's resource file, then how to let user download these 3 files together at the same time?
    one simple way is calling the download api (cl_wd_runtime_services=>attach_file_to_response) 3 times,
    but it is very ugly that three popup windows are shown to let user select every file's download path, which is unaccepted.
    So anyone know more convienient way to handle it?
    thanks.

    Hi,
    I suggest you to zip the files and attach it to the response. Do the add file part for each of your files
         "References
         DATA lr_zip TYPE REF TO cl_abap_zip.
         "Variables
         DATA lv_zip_xstring TYPE xstring.
         DATA lv_zip_name TYPE string.
         DATA lv_file_content TYPE xstring.
         DATA lv_file_name  TYPE string.
         "Create instance
         CREATE OBJECT lr_zip.
         "Add file
         lr_zip_attachments->add(
           EXPORTING name = lv_file_name
                  content = lv_file_content ).
         lr_zip_attachments->save( RECEIVING zip = lv_zip_xstring ).
         "Attach zip file to response
         cl_wd_runtime_services=>attach_file_to_response(
           EXPORTING i_filename      = lv_zip_name
                     i_mime_type     = 'ZIP/APPLICATION'
                     i_content       = lv_zip_xstring ).

  • Two users open same file at the same time... how is this possible?

    I am the Creative Director for a magazine. All the people in my team are using Macs with Leopard and Indesign CS3. I didn't know this was possible, but it is happening to us. Two people can open the same Indesign file at the same time. When this happens, the file becomes corrupt and we can't work on it again. We don't use Version Cue. We probably should, as well as In Copy, but we just haven't had the time to learn to use them. This problem started about three months ago and we have not been able to determine how this is possibe or find any information why it is happening, or how to stop it from happening. Help! If anyone out there has any idea... we are desperate.

    My hunch would be to suspect the server - it's probably not handling file locking correctly.
    Here's what I'd image I'd try - but be aware, I am writing down stuff from memory, and I cannot guarantee the info is completely accurate - but I hope it might give you some pointers.
    - If the server is currently providing the AppleShare Filing Protocol (or whatever it is called - acronym is AFP), you could try to connect using that.
    Go to the Finder, and use the Go - Connect to Server... menu item and enter the server's IP address, prefixed with afp:// - e.g. if the server is on IP address, say '192.168.1.120'
    In that case, I'd try connecting to
    afp://192.168.1.120
    (I am inventing this IP address for the sake of argument - don't simply copy this number. Ask the IT guy what the server's IP actual address is. There are other ways to connect, and using the IP address is very crude and 'primitive' but it also cuts a few complexities out of the picture).
    If this does not work, it might mean that the server is not providing the AFP protocol - in that case, ask the IT guy if he can turn it on for you.
    I don't know much about what Microsoft's various product names mean (e.g. what exactly is included in a 'Microsoft small business server' - no idea), but there's a good chance there is a module available that is probably called 'Services for Macintosh' which can be installed.
    I've worked around Microsoft servers before, and if I remember correctly, 'Services for Macintosh' is not typically installed by default - it's part of the product, but it is not installed unless explicitly requested during install.
    The IT guy will need to get out the Microsoft server's install disks and install the optional Services for Macintosh, then turn it on. Once that is done, the above 'magical incantation' afp://yadiyadi... should work.
    If it does, make sure _everyone_ in the team uses the same method to connect to the server, and then try again - there's a good chance the server will now honor the file locking and warn the second user who attempts to open the document.
    - If the server is already using the AppleShare Filing Protocol, and you're already doing some variation of the above, and the whole point I made above is moot, try connecting using the SMB protocol instead. So, in the finder use 'Go - Connect to Server...' then use
    smb://192.168.1.120
    (replacing 192.168.1.120 by your server's real IP address).
    Again - make sure _everyone_ is using the same method to connect before trying whether the files are now locked properly.
    The AFP and SMB protocols are the two most common protocols that Macs can use to connect to a Microsoft file server.
    Now, the third possible cause: often people don't realize there are possibly multiple ways to connect to an MS server, and so people go browsing the network from their Macs and 'grab' whatever entry they see first.
    So what often happens is that user 'A' is actually connecting using SMB, and user 'B' is connecting using 'AFP' and in theory that should all work, but in practice sometimes things go wrong.
    My recommendation is to make sure that all users in the Mac workgroup connect in the exact same way - so there's no mix of SMB and AFP protocols being used.
    To verify which protocol is used, right-click or control-click on the volume name after it has been mounted on the Mac, and use the Get Info... menu item - the info dialog should tell you which protocol is being used. The easiest to see the mounted volumes is to go into the Finder Preferences, and under 'General' make sure it shows mounted volumes on your desktop. Then you can simply right-click the volume on the desktop to do Get Info...
    Hope that helps!
    Cheers,
    Kris

  • Not getting Yahoo emails on Q5 except for a specific time span

    My Q5 started to have this issue started about 4, 5 days ago. I dont get any Yahoo emails except for an approx 5 hr time span at specific times of the day.  All other times I do not get any emails at all, not even when pressing the "refresh" icon.  
    I have deleted / rebooted/re-added the yahoo account multiple times without any improvement. I have also tested for improvement by taking away the "rim." in the settings (IMAP and SMPT), no help.
     Well, right after re-adding the acct, the missing emails showed up, but that was it.  It doesn't update my emails until that specific time of the day (for me that time span is from midnight to ~5am).  I'm able to send out email fine.  
    Anyone has any suggestions?
    Thank you very much in advance.

    Re: Yahoo.ca email account information disappears or is not recognized
    ‎11-25-2013 08:53 PM
    The password disappeared again, so I changed the password as you suggested.
    I discovered that Yahoo had changed the password requirements, and that was likely causing the problem.
    (I wish the error message had been more specific so I would have known that was the issue earlier).
    I created a new password according to the new Yahoo password requirements, and I have not had any other problems with it so far.
    Thanks.
    It was not me it was user cb_ca and the above is what they posted. You can ask that user your question, just click the envelope icon on the middle of the page near the top and you can send them a message, just enter the users name mentioned above and type your message.

  • How do you set a calendar alarm for a specific time on the day of the event without it being an all-day event

    Does anyone know how to set a calendar alert at a specific time on the day of the event.
    So that the alert date adjusts accordingly if you were to copy and past it to another date.
    The custom alert function kind of does this, but because it is an absolute alert (not relative) it will still refer to the date you initially set it to when you copy and paste it to another date. So this creates more work where you would have to go and manually change all the custom alerts. I have potential
    Anyone know how to set this kind of calendar alert?
    Thanks in advance

    Greetings: Set the alarm to message you (on your screen) and then snooze it every day for 15 days, or, set 15 separate alarm messages. There is probably an AppleScript somewhere on the web too, try searching that way as well.

  • I have just tried to convert a PDF file for the first time. Get error message-can't access service.

    I just purchased ExportPDF and have tried to convert a PDF file to *.docx and *.rtf for the first time.  In both cases I get a file that says there was an error is accessing the online service.  What do I do?

    Could you try these steps to alleviate the access issue you're having:
    Choose Edit > Preferences (Win) or Adobe Reader > Preferences (Mac)
    Click 'Online Services' on the left-hand side
    Sign out of our Adobe ID and sign back in.
    Try to convert your document again.
    If you continue to have trouble, please verify that you can access the service via the web interface.  To do this:
    Open a browser and navigate to http://exportpdf.acrobat.com/signin.html
    Try to log in with your Adobe ID (email address) and password
    Once logged in, follow the on-screen prompts to convert a file
    Let us know if you're still having trouble and we'll try to help!
    -David

  • Can Automator launch apps/files at a specific time?

    I want to give my computer the ability to launch an application or file at a specified time. Can Automater do this or do I need to look elsewhere for this ability?

    Hi jredfish_175, and a warm welcome to the forums!
    Yes, it's most easily done using iCal to schedule it.

Maybe you are looking for