Profilemanager and it's files

Hello
Can anybody bring light into this, please? I've tried to find as many files and paths profilemanager puts something into.
Waht is going on in these direcotories and files?
/var/devicemgr
          lrwxr-xr-x 1 _devicemgr _devicemgr 30 Sep 13 15:27 ServiceData -> /Library/Server/ProfileManager
          -rw-r--r-- 1 _devicemgr _devicemgr 18 Aug 14 14:17 ruby-uuid
/var/run/devicemgr
          total 104
          -rw-r--r-- 1 _devicemgr _devicemgr 1 Sep 18 03:06 devicemgr.pid
          -rw-r--r-- 1 _devicemgr _devicemgr 6 Oct 1 20:05 devicemgrd.pid
          -rw-r--r-- 1 _devicemgr _devicemgr 5 Oct 1 20:05 php-fpm.pid
          srw-rw---- 1 _devicemgr _www 0 Oct 1 20:05 php-fpm.sock
          -rw-r--r-- 1 _devicemgr _devicemgr 6 Oct 1 20:05 ruby-thin-3320.pid
          -rw-r--r-- 1 _devicemgr _devicemgr 6 Oct 1 20:05 ruby-thin-3321.pid
          -rw-r--r-- 1 _devicemgr _devicemgr 6 Oct 1 20:05 ruby-thin-3322.pid
          -rw-r--r-- 1 _devicemgr _devicemgr 6 Oct 1 20:05 ruby-thin-3323.pid
          -rw-r--r-- 1 _devicemgr _devicemgr 6 Oct 1 20:05 ruby-thin-3324.pid
          -rw-r--r-- 1 _devicemgr _devicemgr 6 Oct 1 20:05 ruby-thin-3325.pid
          -rw-r--r-- 1 _devicemgr _devicemgr 6 Oct 1 20:05 ruby-thin-3326.pid
          -rw-r--r-- 1 _devicemgr _devicemgr 6 Oct 1 20:05 ruby-thin-3327.pid
          -rw-r--r-- 1 _devicemgr _devicemgr 6 Oct 1 20:05 ruby-thin-3328.pid
          -rw-r--r-- 1 _devicemgr _devicemgr 6 Oct 1 20:05 ruby-thin-3329.pid
/Applications/Server.app/Contents/ServerRoot/usr/share/servermgrd/bundles/servermgr_devicemgr.bundle/Contents/MacOS/servermgr_devicemgr 
/Applications/Server.app/Contents/ServerRoot/usr/share/servermgrd/bundles/servermgr_devicemgr.bundle/Contents/Resources/ com.apple.webapp.devicemgr.plist
                                                                                                                                                                                                                                                                                                          com.apple.webapp.devicemgr.ssl.plist
                                                                                                                                                                                                                                                                                                          servermgr_devicemgr.html
/Applications/Server.app/Contents/ServerRoot/usr/share/servermgrd/html/servermgr_devicemgr.html

It was the recent Suitcase Fusion 2 update... and read there were some problems w/ it recognizing it's font "vault" after the update. So... lo and behold... I installed it and bam! No vault!
Thanks for the answer, and I figured as much. I ended up searching for date modified files (sys files too), and just restoring them one-by-one.
Apple, if you're listening, this would be a GREAT feature to upgrade TM w/: the ability to restore apps with their adjunct files, with one click.
Oh, and btw, for the title of my post: ITS, not IT'S... my 3rd grade English teacher would kill me for letting that slip

Similar Messages

  • To upload a RTF and a PDF file to SAP R/3 and print the same through SAP

    Hi,
    I have a requirement to upload a PDF file and a RTF file to SAP R/3 and print the same.
    I wrote the following code for uploading a RTF file to SAP R/3 and print the same. However, the problem is , the formatting present in the RTF document( bold/italics..etc) is not being reflected when I do the 'print-preview' after the executing the code below :
    report z_test_upload .
    data: begin of itab occurs 0,
             rec type string,
          end of itab.
    data: options like itcpo.
    data: filename type string,
          count type i.
    data: filetype(10) type c value 'ASC'.
    DATA: HEADER  LIKE THEAD    OCCURS   0 WITH HEADER LINE.
    DATA: NEWHEADER  LIKE THEAD    OCCURS   0 WITH HEADER LINE.
    DATA: ITFLINE LIKE TLINE    OCCURS   0 WITH HEADER LINE.
    DATA: RTFLINE LIKE HELP_STFA OCCURS   0 WITH HEADER LINE.
    DATA:   string_len TYPE i,
            n1 TYPE i.
    selection-screen begin of block b1.
      parameter: p_file1(128) default 'C:\test_itf.rtf'.
    selection-screen end of block b1.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file1.
      CALL FUNCTION 'F4_FILENAME'
           IMPORTING
                file_name = p_file1.
    start-of-selection.
    move p_file1 to filename.
    call function 'GUI_UPLOAD'
         EXPORTING
              filename                = filename
              filetype                = filetype
         TABLES
              data_tab                = itab
         EXCEPTIONS
              file_open_error         = 1
              file_read_error         = 2
              no_batch                = 3
              gui_refuse_filetransfer = 4
              invalid_type            = 5
              no_authority            = 6
              unknown_error           = 7
              bad_data_format         = 8
              header_not_allowed      = 9
              separator_not_allowed   = 10
              header_too_long         = 11
              unknown_dp_error        = 12
              access_denied           = 13
              dp_out_of_memory        = 14
              disk_full               = 15
              dp_timeout              = 16
              others                  = 17.
    if sy-subrc <> 0.
      message id sy-msgid type sy-msgty number sy-msgno
                with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    endif.
    loop at itab.
      string_len = strlen( itab-rec ).
      n1 = string_len DIV 134.
      ADD 1 TO n1.
      DO n1 TIMES.
        rtfline-line = itab-rec.
        APPEND rtfline.
        SHIFT itab-rec BY 134 PLACES.
      ENDDO.
    endloop.
    HEADER-TDSTYLE = 'S_DOCUS1'.
    HEADER-TDFORM = 'S_DOCU_SHOW'.
    header-tdspras = 'E'.
    CALL FUNCTION 'CONVERT_TEXT'
      EXPORTING
      CODEPAGE               = '0000'
        DIRECTION              = 'IMPORT'
        FORMAT_TYPE            = 'RTF'
       FORMATWIDTH            = 72
        HEADER                 = header
        SSHEET                 = 'WINHELP.DOT'
        WITH_TAB               = 'X'
        WORD_LANGU             = SY-LANGU
        TABLETYPE              = 'ASC'
      TAB_SUBSTITUTE         = 'X09  '
      LF_SUBSTITUTE          = ' '
      REPLACE_SYMBOLS        = 'X'
      REPLACE_SAPCHARS       = 'X'
      MASK_BRACKETS          = 'X'
      IMPORTING
        NEWHEADER              = NEWHEADER
      WITH_TAB_E             =
      FORMATWIDTH_E          =
      TABLES
        FOREIGN                = RTFLINE
        ITF_LINES              = ITFLINE.
      LINKS_TO_CONVERT       =
    if sy-subrc <> 0.
    endif.
    CALL FUNCTION 'PRINT_TEXT_ITF'
      EXPORTING
         HEADER        = newheader
         OPTIONS       = options
    IMPORTING
      RESULT        =
      TABLES
        LINES         = itfline.
    if sy-subrc <> 0.
    endif.
    Any hints or suggestions to solve this problem will be highly appreciated.
    Thanks,
    Avra

    Hi Vishwas,
    Check out the thread [Efficient way of saving documents uploaded|Re: Efficient way of saving documents uploaded by users; and check the blog by Raja Thangamani.
    Also check the thread [Export Images through Function Modules   |Export Images through Function Modules;.
    Hope it helps you.

  • Data Recover From Formatted Drive? What is the best program to use to get back Logic Projects and any other file type?

    I was in the process of reorganising my hard drives so I could RAID them however I managed to corrupt one drive and had to format it which meant I lost all my Logic Files and some other files. I managed to save a lot of files (mainly video files) before I had to format the drive but I need a Data Recovery service that will not alter anything on the hard drive and will put all the formatted files (regardless of the type) back for me so I can get the rest of the ones I need.
    Thanks in advance.

    What about folders and such?
    No. FS doesn't reconstruct folders. However, Data Rescue does, depending on how you use it. About the only thing in Data Rescue a Quick Scan ever seems to show you are files that are already live.
    So that leaves you with a Deep Scan, or a Deleted Files scan. The first pass of a Deep Scan will attempt to retrieve folders and files, along with their original names. The second pass only looks for file patterns. Like recognizing a Photoshop .psd file. It will recover it, but give it a nonsense name. A Deleted Files scan only results in nonsense names of recognized file types; no folders.
    What were you using File Salvage on? A hard drive?
    Yes, though you can use it on a flash drive, or any other mounted drive.
    At the moment it is estimating 289 hours remaining on a 1TB drive. Can it not go faster?
    No, both of the software mentioned are slower than molasses in January. When you delete anything in Windows, its file table entry simply tagged as deleted. So to unerase them, the tag is removed. That's why it works to quickly and easily (assuming you haven't already overwritten the data to be recovered).
    In OS X though, the whole idea of the underlying UNIX structure is all about security. It's not supposed to be easy to retrieve deleted items. When you delete items, their file table entries are erased. So the only way to find deleted items is to scour the entire drive for BOF (Beginning Of File) markers that don't have a matching starting block to anything that is in the file table.
    Another question, half the drive was empty. Will it fly over that empty space or will it sieve through it incase there was some files stored on it?
    If you use the Expert mode is FS, you can choose to do that:

  • How do I get iTunes on a new computer to recognize and use my files on the local drive?  My music files on iCloud have been recognized.

    My old computer failed.  All files, including iTunes were backed up on a separate drive.  All files have been loaded on the new computer.  iTunes was reloaded, and recognizes all files on iCloud, but does not link to the files on the computer.  How can I re-establish that linkage?

    Hello jzinser,
    I am not sure on how you reset up your iTunes library on your new computer. If you copied the music by dragging on top of iTunes, then the media would have been put into the proper location. If you have the media copied to your computer and have not established in iTunes where it sits, then you will need to do that within the preferences in iTunes. Take a look at the articles below for more information to help sort this out. 
    iTunes for Windows: Moving your iTunes Media folder
    http://support.apple.com/en-us/HT201543
    Locate and organize your iTunes files
    http://support.apple.com/en-us/ht1391
    Regards,
    -Norm G. 

  • How to Edit and Replace Psd Files in Adobe Flash - Help!

    Hi Everyone,
    I am new to flash and I am trying to build my first flash site using a flash template. I can use flash to edit certain components like header text, etc. But The content is impossible for me to change. I think that these are psd files, which I can open with gimp or another program and edit. I save and replace that file, but when I view movie again, the content is the same. I guess what I need to know is how to get these files back into my flash movie after I have edited them. Please help, I am no computer expert, but I am learning. A how to for dummies answer would be awesome.

    Maybe You should try the Flash-forum:
    http://forums.adobe.com/community/flash

  • Image Capture downloads pictures and creates .aae file

    Using Image Capture 6.6 to download pictures from my iPhone 5S to Macbook Air w/ OSX Yosemite.
    When I go to the folder where I download the files on my computer, it shows a .JPG file and an .AAE file.
    I cannot find preferences for Image Capture to turn the additional download off.
    It is doubling file size storage on my computer as each picture has a .JPG @ 600KB and an .AAE @ 600K
    I have bulk deleted the .AAE files using Spotlight and searching the file type, but do not wish to continue doing this if there is way to turn this off.

    stevencallan wrote:
    However, upgrading the camera to a newer Logitech device (Pro 9000, and the dropping of explicit support from Logitech with twain a while back), a "Select source" dialog window appears, with nothing in >the source list (so basically a blank text box with only the Cancel button active). Using a properties file works for other parameters (jdbc data source, logging, file name for the image), but kind of drawing a >blank on the data source for the camera.This is why I'm reluctant to upgrade software (imaginee frowney emoticon here; for those who still doubt wait until the next OTN site upgrade for another example). Stuff sometimes doesn't work any more when you do (imagine another frowny emoticon)
    Until a better idea comes along use a card-reader to put the files into a folder, then load them into Apex as a second step. This is not as conveneint as loading directly from the camera, but if the interface won't work you'll have to do somethiing else.
    I don't have immediate access to Apex - can you load off a card-reader instead of the camera by specifying the drive to load the files from?
    It sounds like more of a Windows problem than Apex. Have you tried browser searches on Logitech and Twain to see if anyone has encountered similar problems?

  • When I go to my downloads folder on my dock and click the file all the content shows up but as soon as I go to open it in the finder, I get a blank window. Has anyone else had this problem, if so, How do you fix it.

    When I go to my downloads folder on my dock and click the file all the content shows up but as soon as I go to open it in the finder, I get a blank window. Has anyone else had this problem, if so, How do you fix it. I also cant delete anything from this folder because of it. Any help would be greatly appreciated.

    Hey Allen,
    I am having the same issue here in September.  How did yor situation get resolved.  My iPad Siri works great.  My iPhone 5 Siri has been out of comission (OOC) for almost a month and I am beginning to get a little frustrated since Siri works so well in July....ANY assistance would be highly appreciated... Thanx

  • I have recently updated my CC programs to the latest version and now all of my files wont open by default into their respective programs, only if I open the program and go to file open and open the file from there. How can I fix this?

    I have recently updated my CC programs to the latest version (CC2014) and now all of my files wont open by default into their respective programs, only if I open the program and go to file>open and open the file from there. How can I fix this?
    I have tried 'Open with' and the version of the program now installed on my computer isn't even suggested as an option and when I browse for it, the file wont open with it anyway

    On Windows (don't know about Mac), the latest version will always take over the file association, and become the default for indd files. It's impossible to change it.
    But there is a plugin for ID that makes this possible. Never tried it myself.
    https://www.rorohiko.com/wordpress/downloads/lightning-brain-soxy/

  • I backup my iphone on my pc and copy backup file into drive D then i setup new OS on my pc. after that i copy the backup file into itunes backup folder but itunes can't find the backup file to restore my iphone. how can i restore my iphone?

    i backup my iphone on my pc and copy backup file into drive D then i setup new OS on my pc. after that i copy the backup file into itunes backup folder but itunes can't find the backup file to restore my iphone. how can i restore my iphone?

    Don't you just love changes in interfaces?
    I found the answer to my question.
    When you attach a device (iPhone, iPad) to your Mac, in iTunes 12 in appears as a tiny icon in the second "row" of the iTunes display. Click the icon and the familiar iTunes display for the device appears. From there, on the Summary screen, you can see the dates of the backups of the device (iCloud and backup to the computer). You can also use the button to backup to the computer.

  • How do I upload and attach the file to Service Request

    [This thread was migrated from the On Demand Developer Forum in the old Siebel Community]
    drangineni
    New Contributor
    Hi,
    I am trying to upload a file and add it to a Service object as an
    attachement. I greatly appreciate if you could provide any code or
    sample...
    Thanks.
    Daya
    Product: CRM OnDemand
    10-21-2006 10:58 AM
    Re: How do I upload and attach the file to Service Request...
    BigSlick
    Valued Contributor
    On Demand doesn't support adding attachments via web services. One
    solution I've seen is depending on the scenario is to create a web link
    field on an object that's based on a custom text field. Your web service
    can populate that custom field and the web link can generate a dynamic
    link to the file in On Demand's UI. However, this depends on where the
    attachment is located and if the user needs some sort of firewall access.
    Hope this helps
    -BigSlick
    10-23-2006 11:43 AM
    ==============================================================================
    Click on the board or message subject at the top to return.

    Yes this still holds ture.
    Bardo

  • I didn't safely eject my external hard-drive and now my files are not showing up on my other computer?

    I didn't safely eject my external hard-drive as my imac was in sleep mode and I thought it was shut-down. Now I have turned up to uni and plugged my hard-drive into the uni computers (apple) and the word document I was working on last night (before my computer went to sleep mode, and it may still have been open, I cant remember) is gone.....
    I have phoned home and got a family member to try and recover the file. They said they can see it when they open Word under recent documents, however its "ghost" and nothing happens when you click on it.
    My question is, when I go home and plug my hard-drive back into my imac, will I be able to recover this word file? or have I lost it forever?

    I only saved it to my external hard-drive and saved it at the completion of working on it. However left the document open, went to dinner, and this morning pulled the hard-drive out, whilst the computer was asleep not shut-down and now the file doesn't appear.
    I thought when I clicked save then it saved straight away, therefore anything i do after that point (ie a un safe ejection) shouldn't make a difference. Clearly, no matter if you saved the document, if you un-safely eject the hard-drive then the file is lost anyway?

  • I have two excel files I cannot open or delete from my desktop.  One is titled 6ACAD200 and the other file is titled 8D73A700.  How can I get these off of my computer?

    I have two excel files I cannot open or delete from my desktop.  One is titled 6ACAD200 and the other file is titled 8D73A700.  How can I get these off of my computer?

    From the names I'd guess they are temporary files. If excel is running, quit and try again. If they still won't move or delete reboot. If they still won't move or delete...kill a chicken at midnight under an oak tree?

  • I bought a new laptop and used Windows Easy Transfer cable and moved all files from one computer to another. I installed iTunes and found my iTunes music Library.  However, when I plug in my iPod it says it is already synced with another iTunes Library.

    I bought a new laptop and used Windows Easy Transfer cable and moved all files from one computer to another. I installed iTunes and found my iTunes music Library.  However, when I plug in my iPod it says it is already synced with another iTunes Library. 
    I don't see anything in Help that shows when you already have transfered all the files over.  Why would it want to erase and sync when I already have all the music folder copied over?  I didn't have an issue when I had another technician copy from one laptop to another.  Home sharing is also on but not being recognized.

    I suspect you only migrated the media folder instead of the complete working library. Either review the transfer process and copy over the entire iTunes folder from your old profile's music folder or see Recovering your iTunes library from your iPod or iOS device.
    tt2

  • I am getting messages that I can't download and read .pdf files since I have the wrong Adobe reader. I know about their security disasters of course, but I downloaded the latest version of Adobe Reader from the Adobe web site and I have other ,pdf file re

    I am getting messages that I can't download and read .pdf files since I have the wrong Adobe reader. I know about their security disasters of course, but I downloaded the latest version of Adobe Reader from the Adobe web site and I have other ,pdf file readers as well, and for some reason they won't work either. I have 5 computers running top end processors and RAM. By this I mean I have one, this one which I am using that has an AMD Phenom Black 3.2 Quad-core with 8 GBs of Corsair top DDR2 RAM, my other two AMD have either an Athlon II triple core with 4 GBs of DDR2 Corsair RAM, one with the Phenom X4 965 3.4 GHz Quad-core with 8 GBs of their best DDR2 RAM, and two Intels with the i7 920 Processors using the triple channel 1366 socket processors and one with 8 GBs of low latency DDR3 RAM and the other with 4 GBs of the same RAM. I am getting the message on this one, which has a fresh install of XP Pro X64 operating system, as do the other 4 as well. I have run Avast Business Pro Anti-virus on this one, which I am getting the message on with a single result which I deleted, and also both Spybot Search and Destroy, which came back clean as well as Malwarebytes Antimalware, which got a lot of tracing cookies now removed, and SuperAntiSpware which also found a few cookies also now deleted. Can you tell me what I need to do to get these files to show as .pdf files rather than as a clean blank page. One other issue is that I wish to know how to turn off my downloads so they are saved and Mozilla will give me the option of returning them instead of me losing them all together as it does now. Thanks for your assistance. If there is another Adobe reader I should download and install, could you provide me with the link to it? I appreciate your assistance here
    == When I download and try to read a .pdf file and when I am asked to turn off all Firefox files and if I do, I lose them since I need to know how to save them without rebooting my computer.

    Brilliant! Problem solved! Thanks so much.

  • I downloaded some videos to Premier Elements 13 from external hard drive but now the external hard drive is damaged. I tried to open the videos on the organizer which it shows the video but with a yellow ? and says missing file. Is there anyway I can open

    I downloaded some videos to Premier Elements 13 from an external hard drive but now the external hard drive is damaged. While setting up my new MAC the external hard drive was dropped and I have been told by an outside source they could not retrieve the files.  It had 4 years of photos and videos on it. I remembered that I had downloaded some of the videos from the external hard drive (before it was broke) to Adobe Organizer 13 when I installed the Adobe 13 on my MACOS X 10.9.5.  I tried to open the videos on the organizer which it shows the video but with a yellow ? and says missing file. Is there anyway I can open these videos?
    Any input is greatly appreciated!! I am sick over losing the videos and had a little hope on Adobe Organizer until I was unable to open them.  I am thinking it is due to my external hard drive not being plugged in. I thought when I transferred from the external hard drive to Adobe 13 that it would be there without the external hard drive needing to be attached but maybe I did something wrong.
    Thanks again for any help!!!!

    jnrmendonca
    It had 4 years of photos and videos on it.
    To what did your camera record those photos and videos - camera's internal memory, inserted memory card, other?
    Any remote chance that the latter may still exist for you to use to download the camera files to your new external hard drive?
    ATR

Maybe you are looking for