Cloning a Collection with it's projects

I need to clone a collection with it's projects and do test with it.
I follow the instructions referenced in this link (https://msdn.microsoft.com/en-us/library/dd936138.aspx), in the instructions indicates that existing projects must be deleted from one of the collection, but I need to use the projects on the cloned collection
(without having to remove them from the source collection), besides that, I can't delete the projects in the source collection and It's needed to maintain source and cloned collection online.
What can i do in order to maintain the projects in the source collection and the cloned collection?
Thanks a lot for your help.
Best regards.
Audberto.

Hi Audberto,
I'd like to know whether your team project collection includes lab management, and where you get the information that delete the projects in source collection.
As far as I know, you have to set it to offline before you can use the moved team project collection. Anyway, you can also create a new project collection in the same TFS server, and then migrate the source team projects in source collection
to the new team project collection by using TFS integration tools.
Best regards,
We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
Click
HERE to participate the survey.

Similar Messages

  • Create a site collection with dedicated content db with the help of server object model

    Hi,
     I have a requirement to implement a create a new site collection with dedicated content db. i have got 2 PowerShell scripts which does the same. first i will  create a content  db and then create the sitecollection with contentdb
    parameter with the created contentdb name.
    Now the site collection created must contain few doc libs and few splists with look up columns, people picker data type, multiline of text, single line of text,choice field. hence i am thinking the below approach:
     1) create a web template and include sp doclibs, splists , site columns in this.
     2) i am thinking of a ui design to create the below:
     These are called "projects" which is actually the site collection with the doclibs, splists and must be created by sharepoint admin on click of a link in my landing page.end users access these "projects"  aka 
    "site collections" and uploads the documents into these projects and collaborate.
    so my question is :  On click of a button can I create a site collection with a dedicated content db based on the web template created with the  hel of  server  object model?
    The other approach is on click of this button call the power shell script which accepts the sitecollection name and contentdb name as parameter. is this possible in  server obj.model ?
    passing a paramter from code behind- visual web part ui to power shell ?
    and it should create the site collec based on the web template and create the content db.
    my doubt #3 : will it not throw error "request timed out" when creating the site collec and contentdb from ui ?

    Try below:
    http://sharepoint.stackexchange.com/questions/21606/programmatically-create-a-site-collection-in-an-existing-mounted-content-databa
    PowerShell is just a wrapper for the object model. You shouldn't need to reference PowerShell in your feature, just create the new site collection with C# inside your feature. There's a blog post here that illustrates some code that may get you started.
    http://blog.mastykarz.nl/programmatically-creating-sites-site-collections-custom-web-template/
    http://blogs.msdn.com/b/vesku/archive/2014/06/09/provisioning-site-collections-using-sp-app-model-in-on-premises-with-just-csom.aspx
    # Enable the remote site collection creation for on-prem in web application level
    # If this is not done, unknon object exception is raised by the CSOM code
    $WebApplicationUrl = http://dev.contoso.com
    $snapin = Get-PSSnapin | Where-Object {$_.Name -eq 'Microsoft.SharePoint.Powershell'}
    if ($snapin -eq $null)
    Write-Host "Loading SharePoint Powershell Snapin"
    Add-PSSnapin "Microsoft.SharePoint.Powershell"
    $webapp=Get-SPWebApplication $WebApplicationUrl
    $newProxyLibrary = New-Object "Microsoft.SharePoint.Administration.SPClientCallableProxyLibrary"
    $newProxyLibrary.AssemblyName = "Microsoft.Online.SharePoint.Dedicated.TenantAdmin.ServerStub, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c"
    $newProxyLibrary.SupportAppAuthentication = $true
    $webapp.ClientCallableSettings.ProxyLibraries.Add($newProxyLibrary)
    $webapp.Update()
    Write-Host "Successfully added TenantAdmin ServerStub to ClientCallableProxyLibrary."
    # Reset the memory of the web application
    Write-Host "IISReset..."
    Restart-Service W3SVC,WAS -force
    Write-Host "IISReset complete."
    If this helped you resolve your issue, please mark it Answered

  • Database, Dataset, Table Adaptors Error "Unable to load, Update requires a valid DeleteCommand when passed DataRow collection with deleted row"

    Microsoft Visual Basic 2010 Express.
    I am new to Visual Basic programing and i am trying to understand the relationships between Datasets, database, table Adaptors. I have to following code that is is giving me the following error" Unable to load, Update requires a valid DeleteCommand
    when passed DataRow collection with deleted rows". 
    I can track the error and its located in "OffsetTableTableAdapter.Update(MaterionOffsetDataSet.OffsetTable)" code. What am i missing?
    It seems that i can delete the data on the DataGridView Table and it only displays the correct data. but my database is not updating, even though the data grid displays differently.I can determine this because, when i save the offset database, i have all
    the previous uploads and all the rows that i wanted to delete are still there.
    My final goal is to be able to import offset data from a CSV file, save this data on the pc, send a copy of this data to a NuermicUpDown so the customer can modify certain numbers. From here they download all the date to a controller.  IF the customer
    needs to modify the imported data, they can go to a tab with a data grid view and modify the table. They will also have to option to save the modified data into a csv file.  
    Im not sure if i am making this overcomplicated or if there is a easier way to program this.
    CODE:
    Private Function LoadOffSetData()
            Dim LoadOffsetDialog As New OpenFileDialog 'create a new open file dialog and setup its parameters
            LoadOffsetDialog.DefaultExt = "csv"
            LoadOffsetDialog.Filter = "csv|*.csv"
            LoadOffsetDialog.Title = "Load Offset Data"
            LoadOffsetDialog.FileName = "RollCoaterOffset.csv"
            If LoadOffsetDialog.ShowDialog() = Windows.Forms.DialogResult.OK Then  'show the dialog and if the result is ok then
                Try
                    Dim myStream As New System.IO.StreamReader(LoadOffsetDialog.OpenFile) 'try to open the file with a stream reader
                    If (myStream IsNot Nothing) Then 'if the file is valid
                        For Each oldRow As MaterionOffsetDataSet.OffsetTableRow In MaterionOffsetDataSet.OffsetTable.Rows
                            oldRow.Delete()                       
    'delete all of the existing rows
                        Next
                        'OffsetTableTableAdapter.Update(MaterionOffsetDataSet.OffsetTable)
                        Dim rowvalue As String
                        Dim cellvalue(25) As String
                        'Reading CSV file content
                        While myStream.Peek() <> -1
                            Dim NRow As MaterionOffsetDataSet.OffsetTableRow
                            rowvalue = myStream.ReadLine()
                            cellvalue = rowvalue.Split(","c) 'check what is ur separator
                            NRow = MaterionOffsetDataSet.OffsetTable.Rows.Add(cellvalue)
                            Me.OffsetTableTableAdapter.Update(NRow)
                        End While
                        Me.OffsetTableTableAdapter.Update(MaterionOffsetDataSet.OffsetTable)
                        MainOffset.Value = OffsetTableTableAdapter.MainOffsetValue          'saves all the table offsets
    to the offset numericUpDown registers in the main window
                        StationOffset01.Value = OffsetTableTableAdapter.Station01Value
                        StationOffset02.Value = OffsetTableTableAdapter.Station02Value
                       myStream.Close() 'close the stream
                        Return True
                    Else 'if we were not able to open the file then
                        MsgBox("Unable to load, check file name and location") 'let the operator know that the file wasn't able to open
                        Return False
                    End If
                Catch ex As Exception
                    MsgBox("Unable to load, " + ex.Message)
                    Return False
                End Try
            Else
                Return False
            End If
        End Function

    Hello SaulMTZ,
    >>I can track the error and its located in "OffsetTableTableAdapter.Update(MaterionOffsetDataSet.OffsetTable)" code. What am i missing?
    This error usually shows that you do not initialize the
    DeleteCommand object, you could check this
    article to see if you get a workaround.
    >> Im not sure if i am making this overcomplicated or if there is a easier way to program this.
    If you are working CSV file, you could use OleDB to read it which would treat the CSV file as a Table:
    http://www.codeproject.com/Articles/27802/Using-OleDb-to-Import-Text-Files-tab-CSV-custom
    which seems to be easier (in my opinion).
    Regards.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Assignments to collection with user groups seems to be failing

    We have a collection with users and a collection with groups.  We assign a simple application to a collection with users, that seems to be fine, we can see the app in the application catalog. We then assign the same app to a collection with just a security
    group in the collection, the members of that security group cannot see the app in the application catalog.
    I am trying to trace what the server does when a the request user policy comes in, to see if there is a disconnect between the assignments and the members of the group.
    Any ideas how to debug/troubleshoot this issue?

    Hi,
    Some troubleshooting tips for client communication to the Application Catalog:
    Ensure that the Configuration Manager client is successfully assigned to a site and operational by checking LocationServices.log and ClientIDManagerStartup.log.
    Verify that the client can communicate with the management point. For example, check out any HTTP errors in the CcmMessaging.log file.
    Check the LocationServices.log file for any errors during the time you browsed to the Application Catalog. One typical reason for Application Catalog failures in this log is client communication failures to the management point, indicated by the following
    error: “Failed to send web service info Location Request Message.” In this case, verify that the management point is operational and reachable from the client computer.
    If you have recently installed the Application Catalog roles, the configuration on the site system server might take some time to complete. If you have a central administration site, make sure that sites are replicating successfully. In this scenario, information
    about the Application Catalog roles must replicate to the central administration site and then back to the primary site before the Application Catalog is fully operational. For example, until the replication is complete, users will not be able to request or
    install applications from the Application Catalog.
    Ensure that the domain and user name that is displayed in the top right corner of the Application Catalog matches the user that is logged in to Windows, especially if Internet Explorer prompts the user for credentials.
    Ensure that any required Internet Explorer plugins are enabled and not explicitly blocked in Internet Explorer. For more information, see
    Prerequisites for Client Deployment in Configuration Manager on TechNet.
    If you have configured client settings to add the URL to the trusted sites and the URL is not added to the trusted sites zone, check whether the client successfully downloads client policy and also check group policy settings in your environment to ensure
    that the Configuration Manager client can add the URL to the trusted sites zone.
    If the Application Catalog shows an error page, the error will also be displayed in the ConfigMgrSoftwareCatalog.log. You can find the log file by searching the user profile folder. For example, in Windows 7, you can find the log file inside the following
    folder:
    %systemdrive%\Users\<username>\AppData\LocalLow\Microsoft\Silverlight
    For more infomation, please review the link below:
    Tips and Tricks for Deploying the Application Catalog in System Center 2012 Configuration Manager
    http://blogs.technet.com/b/configmgrteam/archive/2012/07/05/tips-and-tricks-for-deploying-the-application-catalog-in-system-center-2012-configuration-manager.aspx
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Feature Request:  AE Collect Option in PPro Project Manager

    While PPro Project Manager collects linked AEP projects, it falls short of collecting assets embedded with the AEP project itself.  This results in the user having to re-open the AEP project, locate and copy the original embedded media to new location and relink.
    Another option is to open the original AEP Project, perform a collectioning within AEP, then having to manually import and replace the media on the timeline in the newly collected PPro.  Tedious considering the complexity of AEPs that can run several layers deep with many assets.
    Is this feature possible to add in the next round of updates?

    The feature request site appears to be down now, but you should go here when it's back up:
    Adobe - Site Area Temporarily Unavailable

  • Targeting Collections with SUP in 2012

    Hey newbie here to SCCM 2012 and SUP -- I've been using SMS since the 2.0 days.  I have a concept that I’m trying to wrap my head around and maybe someone can point
    me in the right direction.
    The process that I have works great in SCCM 2007 R3 -- i need to port this same process over to 2012 R2.
    Background
    In my SCCM 2007 R3 environment my servers fall into two categories:
    Ones that have MW and can be scheduled rebooted automatically.
    All others that don't have any pre-defined MW and need manual intervention.
    2007 Collections Setup
    I have two collections for this
    SUP - All Servers --
    This is made up of direct membership of servers who get the patches advertised to them but the admin can install when they choose due to various reasons.
    SUP -- MW All Servers --
    This is an empty collection made of up 20-30 sub-collections that have the various different defined MWs based on the application and business requirements.
    This works great in 2007 as i can target my distribution at the two collections. 
    SUP - All Servers &
    SUP - MW All Servers.  When I target the top level
    SUP -- MW All Servers (which includes) all the sub-collections with predefined MWs, they get the updates and install based on their individual MWs.  It keeps it pretty simple and clean.
    2012 Collection Setup
    In working with my SCCM 2012 R2 deployment and SUP's I've discovered that the concept of sub-collections is gone, it’s seemed to be replaced with folders.  This
    is what’s caused me headaches on how I can get this to work as it did in SCCM 2007.
    Once again in 2012 I have created two folders.  For simplicity sake I’ve limited the collections in the MW folder only to 2.
    SUP – Manual - All Servers (folder)
    |--- SUP – Server Patching – Manual (collection)
    SUP – MW - All Servers (folder)
    |--- SUP – MW – 3rd Fri of Month 4-5am ET (collection)
    |--- SUP – MW – 2nd Wed of Month 2-4am ET (collection)
    I’ve setup two Software Deploy Groups in 2012
    SUP – ALL MS13-XXX Approved Updates
    SUP – All Non MS13-XXX Approved Updates
    Each one of these update groups is deployed to the non MW collection with a type of
    available.  This works great – as they are notified on the server that they have patches and need to be installed when they can schedule it.
    Using the same set of two update groups I create a new deployments with a type of
    required to be targeted at my MW collections.  This works great – however I can only target this deployment at
    one collection – that is why the sub-collections worked so well in 2007.  How can I accomplish this same thing w/out having to create 20-30 different deployments each specifically targeted at that specific MW collection?
    There has to be a simpler way to target all my servers that have MW with one deployment.
    Thanks in advance for any help.
    ~Mike

    Hi,
    Thank you for your sharing, I'll mark it as answer.
    Best Regards,
    Joyce Li
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Cloning hard drive with skype install?

    Hi all, I can't see a clear place to ask this question so I'll post here. I am getting ready to roll out skype to a couple dozen computers and I will be cloning all of them from a single master image. I know that some software doesn't like it when you do this, and one of the people I am working with on the project suggested I look into pottential problems with skype.
    So,are there any problems(software licence-wise or technical) that would prevent me from installing skype to the imagemaster, preforming a sysprep operation, and cloneing the drive 20+ times? If so, I can certainly install skype after the image is done, but if you've done things like this you'll know its best to avoid as many little "after cloning" changes as possible.
    Thanks!

    Is disk utility really no good? Does that explain it?!
    In that case I'd better get ccc or superduper later but right now i only have 500MB space left on my mac so I can't add anything more. I've had a look at what I've achieved so far and the copying stopped in the middle of an old xerox printer plugin in the library after 1 hour of slow but good work. I finished copying the library by drag and drop and it all looks the same as the original. That leaves previous systems, systems and users. Can I just keep going by dragging and dropping?
    Right now my problem is that I tried to copy previous systems and after nearly 2 hours it is still 'preparing to copy' and i can't stop it, it doesn't respond.

  • Is there a way of working collaboratively on a flex project with a small project group?

    Is there a way of working collaboratively on a flex project with a small project group?
    I am part of a small group of developers who wish to work on a single flex project together. Is there a way to set up flex so that the project can be developed by multiple people at the same time. I have seen one thread out on the internet about working locally and then uploading to SVn but this is not an option in this case.
    Any ideas.
    Many thanks in advance
    Dave

    I would say that rushing into development without a source-control system will cost you more in the long-run. If your organisation is serious about developing software it then it needs to invest in the necesary infrastructure, so you should get that process kicked-off as soon as possible.
    In the interim you could set-up a source control server on one developer's machine or commandeer a spare machine to use as a temporary source control server. Just make sure you have it backed-up regularly. Or you could use one of the online source control services; many will support private repositories for a small fee.

  • Project Server 2010 - Error 20010 with a master project and 3 sub-projects during publication

    Hi,
    Here is the situation :
    One master project with three sub projects.
    Sub projects are really similar (Same ressources and nearly same tasks but only the first contain real work for now).
    Sub projects got no sub projects nor links between projects.
    The owner of the master project got read rights through projects permissions on sub projects.
    Sub projects are link in "read only".
    We applied Project Server 2010 SP2 last week end and the issue appeared monday.
    Here are the symptoms :
    When we link only one sub project (Doesn't matter which one), the owner can publish, no problems.
    With 2 sub projects, the error may occur.
    With 3 sub projects, the error always occurs.
    With admin rights, the error doesn't occur.
    Here is the error :
    ID : 20010 (0x4E2A)
    Description : You don't have required permissions to perform the action (Average traduction)
    Detail : <detail><errinfo><general><class name="Project"><error id="20010" name="GeneralSecurityAccessDenied" uid="19515c1d-2624-466f-953a-b7fc67337b81"/></class></general></errinfo></detail>
    I'm unable to determine which sub project is the culprit, if there is one, as it's working when I link only one of them.
    Thanks for your time !

    Fylim --
    If the project manager in question does not need to edit any of the three projects, the PM does not need to have Read/Write access to any of the three projects.  Because you said that the PM needs to set links in all three projects, this means that
    the PM will be editing all three projects.  In order to edit the three projects, the PM must have Read/Write access to all three.  Setting cross-project links constitutes editing of the projects, which is why the PM must have Read/Write permission. 
    Make sense?
    Regarding SP2, I am not aware that this would change anything, but I could be wrong.  The reality is that regardless of which SP you have applied to Microsoft Project and Project Server 2010, the PM in this situation MUST have Read/Write access to the
    projects that he/she needs to edit with cross-project links.  Hope this helps.
    Dale A. Howard [MVP]

  • How can I link 1 movie file with several logic projects?

    Hi all,
    I've been  working on the music for a film with a colleague of mine and are sharing logic files via dropbox. 72 cues had to be altered for logisitical reason to work in someone else's studio for the final mix. Since I had a copy of the movie on my machine and my colleague had a copy on his we thought that if we put our movie into the root directory of our logic project's folder then the movie would automatically load up with the projects after we shared them via dropbox. We checked to make sure that both movies had the same filename. Unfortunately this did not work and we had to then reassociate 72 cues individually with each logic project. With such limited time to prepare the cues for the final mix this really took too much time.
    Is there any way in logic (9.1.8) to associate 1 movie file with a number of logic projects quickly, without having to open up the project and select open movie?
    kind regards
    /mischa

    Seems to me that if you both had the movie file in the same location on both of your drives (eg on Macintosh HD at root level, in no other folder) then all the project files would search for this common path and find the file.
    The problem arises when there is even a small difference between path names.
    Unfortunately, this won't help you at this point as all the project files already are associated with unique file paths for the movie. By now, you've probably already done it one by one - but maybe for next time....?
    There's no bulk or quick way to do this.

  • HT204074 I have our music collection on iTunes Match for my PC, ipad and iphone.  Can I share that music collection with my wife so she can play that with her iphone?  Even though she has a different Apple ID from me?

    I have our music collection on iTunes Match for my PC, ipad and iphone. 
    Can I share that music collection with my wife so she can play that with her iphone?  Even though she has a different Apple ID from me?

    Her iPhone will need to be set up to iTunes Match using your Apple ID to be able to share music via iTunes Match. Otherwise you'll have to download the music to your computer and then copy those tracks into her iTunes library, assuming hers is separate.
    Regards.

  • RH6 Extremely Poor Peformance with Lage Webhelp Project

    We recently upgraded to RH6, which has caused performance
    problems so severe that we literally cannot work with the project.
    Our problems are exclusively with our largest project -- 600+ html
    files, 500,000+ words, 35mb (only about 150 small gif images).
    We're not having any problems with our smaller help projects.
    When we launch the large project, the CPU usage immediately
    hits 100% and stays there for the duration of the session. My
    longest session is currently 35 minutes, during which I was able to
    delete a folder, add another folder, and add 5 files to the system.
    The application took almost 8 minutes to close.
    Because of the size of this project, it's always had
    performance issues on startup. Under X5, it took about five minutes
    before you could work freely, but then worked fine.
    So far, three of us have experience the same peformance
    problems. We're all using identical Thinkpad t43 laptops with 2
    gigs of memory and running XP Pro Service pack 2 with all of the
    security updates. Someone recommended temporarily disabling
    VirusScan, which didn't improve the situation at all.
    So, two questions:
    1. Have any of you experienced and been able to resolve
    serious performance issues of this sort?
    2. What operations does RoboHelp peform when you open a
    project. It seems to verify folders (& links?), but I can't
    find any information about exactly what it does.
    EDIT: We are not accessing the project over a network, so
    this cannot be the cause of our performance problems.
    Thanks for any help you can provide.
    Roger Gerbig
    Senior Technical Writer
    Aprimo, Incorporated

    Hi Roger and welcome to the RH community. To be honest your
    project doesn't sound that large at all. At my last job we had
    projects 4-5 times the size of that running with no performance
    issues at all. That said, check out
    this
    link for some pointers about where you can go from here.

  • I have been working on a book and have 418 photos already in my book.  All of a sudden I cannot access the book format to see the multiple view, spread view, or single view.  I can no longer see my book although I still see the collection with 418 photos

    I have been working on a book and have 418 photos already in my book.  All of a sudden I cannot access the book module and clicking on the multiple view, spread view, or single view does not take me back to the book I have been working on.  I can no longer see my book although I still see the collection with 418 photos under collections.  What I do see is a blank template for a new book and I can't find the unfinished book I started with 418 photos.  It is like the new empty template is somehow covering it up.  How do I get back to the book I have been working on?

    Is it possible you mistakenly clicked on a [Clear Layout] button?
    But a great hint is- Always click on the [Create a Saved Book] button, early in your new book design.
    Then you have a permanent link to the book in the Collections panel. (In addition to the standard collection of your selected images)
    Note: a Book Collection shows an icon that looks like a book.
    Every time you come back to edit the book, open the Book Module by clicking on the white arrow that appears on the end of your Book Collection title. (The title as saved)
    Re-opening a book without using the "Saved Book" option can have unpredictable results.
    A "Book" Collection is like a "Smart Collection" because anything you do to the book design, change pages, change images, etc,  is automatically updated in the Saved Book collection.

  • When I publish a pdf collection with index to a CD, the index won't load

    I am using acrobat XI pro. I have a pdf collection with 30 chapters, a table of contents that is linked to each chapter, and an index. I have inserted a bookmark for the table of contents in each chatper. There are lots of cross chapter links. It all works beautifully on my computer, I can click links between chapters, go back to table of contents using bookmark on each document, and conduct a search that uses the right index and breaks results down per chapter. But when I burn the folder to a CD and install on another computer, the index won't load and the table of contents link is broken. the index is there on the CD, every file and the file structure looks identical to what is on my computer hard drive. I have tried different methods of burning the disc. They all say they are successfully burned. But when I insert into another computer (have tried a laptop and desktop), I either get an error message about the index or it just create it at all. I deleted the index and all of its associated files and recreated from scratch, associating each of the 30 chapter to the index again, but still does not work. Help, past deadline already!

    I fail to see the issue. You have added crop marks, have you not? For all intents and purposes those are marks that are supposed to be visible and printable for cutting in the real world. If you don't want them, don't use them. Acrobat can generate them on the fly for printing, anyway.
    Mylenium

  • Event Library will not show External HD with the current project.

    Problem opening the project I'm working on...I start FCPX and the Event Library quickly shows the external hd with the current project I want but only for a slit second, then it fires up a error message(the I can't possibly read) and acts as if the hd doesn't exist. I can see the hd on the desktop(share is on) and the drive is partitioned, with one of the parts as a Time Machine BU(but I have turned TM off).
    Tried:
    permissions
    restarting
    moving file to main drive
    moving file to another drive that isn't a TM drive
    Thanks in advance for any advice

    It's been documented that Time Machine drives cannot be used with FCPX (they disappear just like you are talking about). However, I would genuinely be surprised if you couldn't partition a drive so that one partition is devoted to TM and the other to FCPX, as the two partitions should be seen as two separate drives.
    That said, when FCPX sees the TM drive partition, it might do something that dismounts the other partition from its view as well. For example, it might look at a drive-level identifier and decide that anything with that identification is not suitable for FCPX.
    Give this a try -- eject the TM drive partition in the Finder prior to opening FCPX. So you should only have in the Finder the partition you are using with FCPX. To be safe, reboot before trying all of this.
    EDIT - then open FCPX and see if you can see the drive and it stays visible.

Maybe you are looking for

  • Issue with Mac OS 10.8.3 and Anyconnect VPN Client 3.1.02026

    Hi all,   I am running Anyconnect VPN Client 3.1.02026 on Mac OS X 10.8.3.  I am unable to connect to my corporate network as the connection fails with following error : The VPN client was unable to successfully verify the IP forwarding table modific

  • Technical Monitoring - Mail: Acknowledge/OK

    Hello experts, I have three questions about mail notification in solution manager technical monitoring. 1. Acknowledge Also when I postpone an alert in technical monitoring (maybe 1 week back) I receive an email about the problem. Is this a bug? 2. O

  • Solaris 10 + PVIO with 2 vcpus on OVM 2.2.1

    Solaris 10 was installed with pv drivers on a domU. And two vcpus were given to it like this: [root@earthscience ~]# xm vcpu-list Name ID VCPU CPU State Time(s) CPU Affinity Domain-0 0 0 2 -b- 9938.4 any cpu Domain-0 0 1 3 -b- 532.9 any cpu Domain-0

  • Best way to add delay line and arpeggiator to multi instrument?

    I am using logic sequencer to drive external hardware, and have been making use of the arpeggiator and delay line objects in the environment. Apparently they have to be set up in loop cabling? Where the delay line runs into the multi instrument, whic

  • No response available

    Hi, this may seem like an obvious question but... here it goes anyway. PI is used to call receiver (web service) at an external company through soap channel. Sometimes, not often, I receive errors such as   <?xml version="1.0" encoding="UTF-8" standa