Pointing KM to our file server

Hi folks,
We have recently setup a portal prototype and I have got KM working with the folders that exist on the portal server.  My question is can I point the KM to our file server that exists on our network?  Assuming I can do this, does the Check-in and Check-out/document locking functionality reside on the portal and could users therefore circumvent the security by going directly to the file server instead of the portal?
Thanks for any help you can provide!
-Patrick

Hi Patrick,
you can access the filesystem by creating a CM repository in FSDB mode or a Filesystem repository. Here is a link to
some howto Guide for creating CM repositories:
<a href="http://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/kmc/Creating%20a%20">http://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/kmc/Creating%20a%20</a>
The locking is supported by the CM repository, but only KM internally. If the user accesses the file from the filesystem, he can change the document content even if the file is locked in KM. I would also propose to deny access on filesystem level after integrating it into KM.
Regards
Lars

Similar Messages

  • All of the sudden our Mac OS X 10.7.4 operating systems are very slow to access SMB shares on our MS2008 file server

    Monday all of our OS X Lion Macs can access SMB file shares on our file server and we come in Tuesday morning and now they take at least 1 minute to pull up the file share and sometimes longer.   Windows PC's are immediate when connecting to the same shares.  I've seen where others with different versions of OS Xhave this issue but what gets me is it happend all at once to machines that were working perfectly the day before.
    I've also looked into changes on our servers and as far as I can tell there have been none. 
    Does anyone have any ideas?     Thanks....

    This solution worked for me!
    I had a MobileMe account with iDisk configured on my MBP even though I never actually used it.  The night they officially shutdown MobileMe the next morning I could no longer connect to my work's SMB file shares (Windows server shares).  I found a work around based on some other support threads.  If in the "Connect to Server" address field in Finder I specified my crendentials (i.e. smb://username:password@server/) then it worked perfectly fine.  This told me it was a crendential issue.  Simply deleting the saved server crendentials in KeyChain Access did not resolve the issue.  No matter what I would did it would not prompt for login crendentials.  Since my Mac login is different than my work domain login I was dead in the water without manually specifiying (not a permenant solution).
    After finding this thread I did the following steps and it resolved the issue 100%.
    1. Open Terminal
    2. cd ~/Library/Preferences
    3. ls .GlobalPreferences.plist to verify file exists in that directory
    4. rm .GlobalPreferences.plist to delete file
    5. ls .GlobalPreferences.plist to verify file no longer exists
    4. Go to Force quit to relaunch Finder
    5. Lauch "Connect to Server" within Finder and all was good, server connects perfectly
    Thank you very much DavidRSewell!!!!

  • File Server - File size\type search and save results to file

    I already have a vb script to do what I want on our file server, but it is very inefficient and slow.  I was thinking that a powershell script may be more suitable now but I don't know anything about scripting in PS.  So far the vb code that I
    have works, and I am not the one who wrote it but I can manipulate it to do what I want it to.  The only problem is, when I scan the shared network locations it stops on some files that are password protected and I don't know how to get around it.  If
    someone else knows of a PS script to go through the file system and get all files of a certain type or size (right now, preferably size) and save the file name, size, path, owner and dates created\modified please point me to it and I can work with that.  If
    not, could I get some help with the current script that I have to somehow get around the password protected files?  They belong in a users' HOME directory so I can't do anything with them.  Here is my code:   
    'Script for scanning file folders for certain types of files and those of a certain size of larger'
    'Note: Script must be placed locally on whichever machine the script is running on'
    '***********VARIABLES FOR USE IN SCRIPT***********'
    'objStartFolder - notes the location of the folder you wish to begin your scan in'
    objStartFolder = "\\FileServer\DriveLetter\SharedFolder"
    'excelFileName - notes the location where you want the output spreadsheet to be saved to'
    excelFileName = "c:\temp\Results_Shared.xls"
    '**********END OF VARIABLES**********'
    Set objFSO = CreateObject("Scripting.FileSystemObject")
    fileName = objFSO.GetFileName(path)
    'beginning row and column for actual data (not headers)'
    excelRow = 3
    excelCol = 1
    'Create Excel Spreadsheet'
    Set objExcel = CreateObject("Excel.Application")
    Set objWorkbook = objExcel.Workbooks.Add()
    CreateExcelHeaders()
    'Loop to go through original folder'
    Set objFolder = objFSO.GetFolder(objStartFolder)
    Set colFiles = objFolder.Files
    For Each objFile in colFiles
    Call Output(excelRow) 'If a subfolder is met, output procedure recursively called'
    Next
    ShowSubfolders objFSO.GetFolder(objStartFolder)
    'Autofit the spreadsheet columns'
    ExcelAutofit()
    'Save Spreadsheet'
    objWorkbook.SaveAs(excelFileName)
    objExcel.Quit
    '*****END OF MAIN SCRIPT*****'
    '*****BEGIN PROCEDURES*****'
    Sub ShowSubFolders(Folder)
    'Loop to go through each subfolder'
    For Each Subfolder in Folder.SubFolders
    Set objFolder = objFSO.GetFolder(Subfolder.Path)
    Set colFiles = objFolder.Files
    For Each objFile in colFiles
    Call Output(excelRow)
    Next
    ShowSubFolders Subfolder
    Next
    End Sub
    Sub Output(excelRow)
    'convert filesize to readable format (MB)'
    fileSize = objFile.Size/1048576
    fileSize = FormatNumber(fileSize, 2)
    'list of file extensions currently automatically included in spreadsheet report:'
    '.wav, .mp3, .mpeg, .avi, .aac, .m4a, .m4p, .mov, .qt, .qtm'
    If fileSize > 100 then'OR objFile.Type="Movie Clip" OR objFile.Type="MP3 Format Sound" _ '
    'OR objFile.Type="MOV File" OR objFile.Type="M4P File" _'
    'OR objFile.Type="M4A File" OR objFile.Type="Video Clip" _'
    'OR objFile.Type="AAC File" OR objFile.Type="Wave Sound" _'
    'OR objFile.Type="QT File" OR objFile.Type="QTM File"'
    'export data to Excel'
    objExcel.Visible = True
    objExcel.Cells(excelRow,1).Value = objFile.Name
    objExcel.Cells(excelRow,2).Value = objFile.Type
    objExcel.Cells(excelRow,3).Value = fileSize & " MB"
    objExcel.Cells(excelRow,4).Value = FindOwner(objFile.Path)
    objExcel.Cells(excelRow,5).Value = objFile.Path
    objExcel.Cells(excelRow,6).Value = objFile.DateCreated
    objExcel.Cells(excelRow,7).Value = objFile.DateLastAccessed
    excelRow = excelRow + 1 'Used to move active cell for data input'
    end if
    End Sub
    'Procedure used to find the owner of a file'
    Function FindOwner(FName)
    On Error Resume Next
    strComputer = "."
    Set objWMIService = GetObject("winmgmts:" _
    & "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2")
    Set colItems = objWMIService.ExecQuery _
    ("ASSOCIATORS OF {Win32_LogicalFileSecuritySetting='" & FName & "'}" _
    & " WHERE AssocClass=Win32_LogicalFileOwner ResultRole=Owner")
    For Each objItem in colItems
    FindOwner = objItem.AccountName
    Next
    End Function
    Sub CreateExcelHeaders
    'create headers for spreadsheet'
    Set objRange = objExcel.Range("A1","G1")
    objRange.Font.Bold = true
    objExcel.Cells(1, 1).Value = "File Name"
    objExcel.Cells(1, 2).Value = "File Type"
    objExcel.Cells(1, 3).Value = "Size"
    objExcel.Cells(1, 4).Value = "Owner"
    objExcel.Cells(1, 5).Value = "Path"
    objExcel.Cells(1, 6).Value = "Date Created"
    objExcel.Cells(1, 7).Value = "Date Modified"
    End Sub
    Sub ExcelAutofit
    'autofit cells'
    Set objRange = objExcel.Range("A1")
    objRange.Activate
    Set objRange = objExcel.ActiveCell.EntireColumn
    objRange.Autofit()
    Set objRange = objExcel.Range("B1")
    objRange.Activate
    Set objRange = objExcel.ActiveCell.EntireColumn
    objRange.Autofit()
    Set objRange = objExcel.Range("C1")
    objRange.Activate
    Set objRange = objExcel.ActiveCell.EntireColumn
    objRange.Autofit()
    Set objRange = objExcel.Range("D1")
    objRange.Activate
    Set objRange = objExcel.ActiveCell.EntireColumn
    objRange.Autofit()
    Set objRange = objExcel.Range("E1")
    objRange.Activate
    Set objRange = objExcel.ActiveCell.EntireColumn
    objRange.Autofit()
    Set objRange = objExcel.Range("F1")
    objRange.Activate
    Set objRange = objExcel.ActiveCell.EntireColumn
    objRange.Autofit()
    Set objRange = objExcel.Range("G1")
    objRange.Activate
    Set objRange = objExcel.ActiveCell.EntireColumn
    objRange.Autofit()
    End Sub
    David Hood

    Accessing Excel through automation is bvery slow no matter what tool you use.  Scanning a disk is very slow for all tools.
    Since Vista all system have a search service that catalogues all major file itmes like size, extension, name and other attributes.  A search of a 1+Tb  volume can return in less that a second if you query the search service.
    You can easily batch the result into Excel by writ4ing to a CSV and opening in Excel. Use a template to apply formats.
    Example.  See how fast this returns results.
    #The following will find all log files in a system that are larger than 10Mb
    $query="SELECT System.ItemName, system.ItemPathDisplay, System.ItemTypeText,System.Size,System.ItemType FROM SystemIndex where system.itemtype='.log' AND system.size > $(10Mb)"
    $conn=New-Object -ComObject adodb.connection
    $conn.open('Provider=Search.CollatorDSO;Extended Properties="Application=Windows";')
    $rs=New-Object -ComObject adodb.recordset
    $rs.open($query, $conn)
    do{
    $p=[ordered]@{
    Name = $rs.Fields.Item('System.ItemName').Value
    Type = $rs.Fields.Item('System.ITemType').Value
    Size = $rs.Fields.Item('System.Size').Value
    New-Object PsObject -Property $p
    $rs.MoveNext()
    }Until($rs.EOF)
    ¯\_(ツ)_/¯

  • Details on Microsoft File Server Migration Toolkit 1.2

    We are planning to move our file server from a Server 2008 cluster (running on an outdated SAN) to a Server 2008 R2 cluster attached to a new SAN.
    The FSMT looks like the best way to accomplish this, but I have a few questions.
    1. The docs don't mention 2008 R2 in any functional descriptions, but the requirements on the download link at http://www.microsoft.com/en-us/download/details.aspx?id=10268 mention
    2008 R2. Does this version of the tool work with 2008 R2? If so, are there any restrictions or features that are unavailable?
    2. The existing file servers are old and tend to get slowed down periodically by a combination of heavy use, security software, and automated vulnerability scans. The docs do mention graceful rollback, but is there any mechanism for retrying copies due to
    slow/dropped connections?
    3. We cannot have a single point of failure, so DFS will have to be clustered. Can the DFS root server run on the same cluster as the source or target file servers? Target would be preferable since we intend to decommission the source cluster. (We are in
    a restricted environment where adding machines takes a great deal of time.)

    I havent tried your scenario with FSMT. 
    Do you have a DFS Namespace that you use today for the access?
    Im not certain that FSMT can setup a DFS Consolidation namespace in a Cluster, but it is possible by hand anyway.
    Microsoft KB829885 specifies how to setup a DFS Consolidation namespace in a Windows 2003 Cluster, the process for a single node is the same so I guess the same is true for cluster setups.
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. Even if you are not the author of a thread you can always help others by voting as Helpful. This can
    be beneficial to other community members reading the thread.
    Oscar Virot

  • Allow help desk to manage open files on file server

    I am looking to delegate the ability to manage open files to our help desk users.  They are getting an increasing number of calls from users asking about files and who has them open, or to force close them..etc.
    The help desk users are not admins on our file server, therefore do not have access to RDP to the file server.  I was hoping they could do it from computer management RSAT tools on their local machine.  I just don't know how to allow them to do
    it.
    Thanks
    sb

    Hello,
    Since they are not able to RDP the FS then they should need to access files using shared folders.
    For that, you will need to share the root folder where your files are. Please give Full Control permission on it. Here, to manage their permissions, you can grant them what you want using NTFS permissions.
    Note that NTFS and Share permissions are combined and the user will be have the minimum of privileges when he access the folder as a share. For that, I recommended using FC permission on the shared folder to avoid additional management tasks.
    This
    posting is provided "AS IS" with no warranties or guarantees , and confers no rights.   
    Microsoft
    Student Partner 2010 / 2011
    Microsoft
    Certified Professional
    Microsoft
    Certified Systems Administrator: Security
    Microsoft
    Certified Systems Engineer: Security
    Microsoft
    Certified Technology Specialist: Windows Server 2008 Active Directory, Configuration
    Microsoft
    Certified Technology Specialist: Windows Server 2008 Network Infrastructure, Configuration
    Microsoft
    Certified Technology Specialist: Windows Server 2008 Applications Infrastructure, Configuration
    Microsoft
    Certified Technology Specialist: Windows 7, Configuring
    Microsoft
    Certified Technology Specialist: Designing and Providing Volume Licensing Solutions to Large Organizations
    Microsoft
    Certified IT Professional: Enterprise Administrator
    Microsoft Certified IT Professional: Server Administrator
    Microsoft Certified Trainer

  • Is it possible to connect a local file server to 365 onedrive via sharepoint?

    We have our local 2012 file server with everyones document directories and common shares. We use AD and have all user accounts defined. As part of our K12 licensing we have Office 365 E1 for all staff, so I set up the Azure AD Sync and we now have all the
    staff accounts set up in 365 and people can work on Office from home.
    The problem is that everyone wants their files from home as well, ideally in their OneDrive. OneDrive for Business doesn't seem to have a mechanism to sync all the files from our file server to each persons OneDrive automatically. I read somewhere that I
    can do it by using SharePoint as a intermediary - that is I can set up a local sharepoint that syncs the fileserver to sharepoint, then I can set up the 365 sharepoint to sync between the onprem sharepoint and the 365 OneDrives.
    This seems like a massive pain but is it doable? is there a better way or is it not possible and sharepoint/local files will always be separate from Onedrive?  it seems like such a common and obvious request for people who can't dump local file servers.
    Mark

    not all to each, just duplicating our current system. Each user has a few hundred mb of files (on average) and there is a common drive with a few hundred gb.
    Right now the assumption by Microsoft is that each user will individually install the local Onedrive app and sync their C: drive documents folder to their Onedrive. In our case we have the documents stored centrally and the onedrive app will not sync a network
    folder. I am looking for some method of making it happen.

  • Mac not able to connect to SMB File Server

    I'm having an issue with a Mac trying to connect to our file server. It was working before our company move but once we moved into our new building it stopped working. Our network settings stayed exactly the same except our router and firewall. It seems to me like it's a DNS issue because I am able to ping the server with the IP but when using the hostname is where it fails and also trys to ping an incorrect address. Our network is 192.168.X.X and it's trying to ping 69.60.X.X which seems like a outside address. I am able to ping the DNS server and seems to connect to computers with in the network but just not our File Server.

    Hello:
    You will need to delete the keyboard from the other Mac.  Simply disconnecting it leaves it still paired with the first Mac.
    Barry

  • Best practise Analyzer for File Server

    Hi Team,
    I have a file which are running in windows 2003 server, we are going to migrate this server to another server which will be in 2008. I need best practice Analyzer or any tool, so that we can check file servers performance and data ,DFS Data.
    Regards, Triyambak

    actually we are planning to migrate our file server which is running on 2003 server to 2008 server , we want sure before migration that there is no issue with the DFS. DFS is based on Domain.
    Just wanted to know what are the  things keep in mind during migration , what are the pre-analysis required before migration
    Regards, Triyambak

  • File Server files?

    We are 8 users who share files in our FILE SERVER. Some drag the files to their local hard drive, work on them, then drag them back to the FILE SERVER where the old file is replaced. Others work on files while "IN" the FILE SERVER. To say the least, we've had some doozies happen and we usually don't have time to have I.T. do a restore from the tape.
    We don't currently use TIME MACHINE on any workstations. I'm thinking we may need to do so if it can prevent future calamities.
    QUESTION: When a user works directly "IN" the FILE SERVER using their own installed application (for example, inDesign), will TIME MACHINE make a backup of it? If so, how do I go about setting up for this?
    Thanks a bunch in advance!

    Is your server running +OSX Server?+ If so, Time Machine can back up the server, or any disk connected directly to it. Backups of the clients can be managed from the server. See page 241 here: http://images.apple.com/server/macosx/docs/UserManagementv10.6.pdf
    Or, if the Mac you're using like a server is running "normal" Leopard or Snow Leopard, it can back up anything on that Mac, or any drives connected directly to it.
    Similarly, Time Machine running on individual users' Macs can back up anything on those Macs, or directly-connected to them; but that's probably not what you want.
    You might want to review these:
    What is Time Machine?
    Time Machine Tutorial
    and perhaps browse the Time Machine - Frequently Asked Questions *User Tip* at the top of this forum.

  • The cambece file server is down

    We just got our file server up and then it went down again, it seems the server is having conflict with the windows server. what could the problem be?
    J.A. Cambece
      Mac OS X (10.4.3)  

    Never mind, The firm just hired a new IT guy who knows Macs he figured it out. I don’t know how, but he did. Thanks for at least reading my problem
    Cambece

  • Approx 700 Files being deleted from file server (server 2003) without permission

    Hello,
    We had a problem with files being deleted from our file server.
    We lost approx. 700 files across approx. 40 directories from the file date codes between Nov. 30 2014 and Dec 3, 2014. All files before this date were not touch.
    Our Dec. 1 backup had all of the files. Our Dec. 5 backup only have files before Sept. 1 2014 and after Dec. 3, 2014.
    My question is how can this happen without going to each directory and sorted my date cade and delecting files from this date range.
    Does anyone have any other ideals on how this could of happen?
    Thank You
    Bert

    Hi,
    I suggest you enable file system auditing to find out the cause of this issue.
    AD DS Auditing Step-by-Step Guide
    http://technet.microsoft.com/en-us/library/cc731607(v=WS.10).aspx
    Planning and Deploying Advanced Security Audit Policies
    http://technet.microsoft.com/en-us/library/ee513968(v=WS.10).aspx
    Best Regards,
    Amy
    Please remember to mark the replies as answers if they help and un-mark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • Smart folders for file server

    A while back I got very excited about Spotlight and created some Smart folders to display my PNG, PSD and FLA files that live on our file server.
    Problem is that that when I click on them, they take ages to load. I assume Spotlight is not indexing the file server. If that's the case, can Smart folders ever been of any practical use for me?

    Hi, Paul.
    Spotlight neither works nor plays well with server / network-attached / shared volumes. See my recent post here for details.
    Good luck!
    Dr. Smoke
    Author: Troubleshooting Mac® OS X

  • Tectra A10 - writing to file server ends with BSOD

    Hi
    I have a brand new Tectra A10 that I have used the recovery disk to restore the machine to XP Pro - I have done this process many times before.
    I have addred the machine to our Domain but whenever I try to write to our file server (Windows Server 2008) I get the blue screen.
    Writing to an old 32 bit Server is fine.
    I have made sure that the NIC Card driver is upto date.
    Any Ideas
    Thanks
    Lew

    Hi buddy,
    I personally believe, that everything is ok with your notebook and its related to server or network this BSOD.
    I mean you can write to a 32bit server properly and I believe other network connections work fine so its a problem of the new server.
    As Barrie wrote, if you use the notebook in your company ask the local network administrator. Maybe its a known issue.

  • Removing our AD server / disabling security on ix4-200d

    My organization is in the process of decommisioning our Windows Server 2003 and moving to complete reliance upon our iomega ix4-200d for our file serving solution.
    My understanding is that disalbing AD on the iomega device will remove the existing users and shares that have been synchronized from our Active Directory.
    I'm looking for suggestions about how to recreate the existing AD user accounts once the ix4 is in workgroup mode while causing a minimum amount of disruption to the office -- especially since I obviously don't know the passwords of the existing AD user accounts?

    swgarland wrote:
    Without getting into a discussion of why you would want to remove AD from a network, on the NAS box, you'll need to create local accounts (you won't have a domain anymore).  Then create groups etc, just like you had before and apply the correct rights.  You'll have duplicate accounts for a time period (domain and local).
    PV: Basically, we've retired our Windows Server 2003 in favor of the NAS box and when I finally pull the plug on the Windows box our AD will go away.
    I would create all the accounts FIRST including a new NAS admin account.  Then login to the NAS with the local admin to verify it works BEFORE you disable AD integration.  Once you disable the AD integration, all the domain accounts and groups disappear, and therefore won't work.
    PV:  That's kind of what I gathered, I was just hoping someone else had gone through this before and had suggestions for duplicating the accounts. I guess I will set the accounts up ahead of time and try to figure out a way to make people change the default password I give them.
    Looking at the "Users and Groups" admin applet, however it's not clear to me how to create local users and groups when AD is active. I don't see any interface to add users or groups, only links to "import users and groups from Active Directory" and to "synchronize with Active Directory"?

  • Can Oracle Files replace file server ?

    We are facing backup problem and survey for new solution to replace our file server.
    Our file server now has ~ 1000Million files /30TB
    and daily upload ~ 6Million files
    Can anybody tell wether OCS can handle this kind of loading or not?

    I guess you could use Content Service (former Oracle Files) for that but in version 10g there is no support for NFS or SMB. Access is now limited to WebDAV and FTP.
    I should look for a archiving product instead like DiskXtender from EMC: http://www.legato.com/products/diskxtender/index.htm but I think Oracle themself store 18TB in Oracle Files.

Maybe you are looking for