Manage security on sharefolder from AD or from share folder?

Dear All
would like to ask if i create a sharefolder
where do i have to manage the security access?
from AD or from the properties of the sharefolder?
thanks

Please take a look at this KB and follow the steps to set the folders security for shared folders :
http://support.microsoft.com/kb/324067
Also, http://support.microsoft.com/kb/301195
Hope, this helps you.
Carlo

Similar Messages

  • How do i Secure & recover file from shared folder

    Hi All,
    I have Windows server 2008 R2 environment and one shared folder created on this with restricted permission by file sharing & security, now 1. I want to add one more restriction that owner of the folder should not able to delete that file? If this is
    not available with Microsoft then
    2. How do i recover file which deleted from MAP drive...
    Please help me to resolve this issue...
    Kalpesh Chauhan

    As to your first problem, I am not so familiar. But, as to the second problem, I think I can help.
    In fact, I have ever also accidentally deleted my hard drive files. In order to re-access them, I have also posted my question in forums, just like you. Fortunately, after browsing many related answers and threads, I just know that a third
    party data recovery program can be a good chance to go on.
    So, I follow some instructions in these forums and select three drive recovery freeware to go on, including Recuva, iCare Data Recovery Free and TestDisk and so on.
    Finally, I have restored all my needed data back successfully with these freeware.
    So, I hope it will also help you out.
    PS: Never forget to back up everything important on different hard drives or places in case of any similar data recovery problems in the future.

  • Blank form from trusted folder/privileged location with enhanced security

    See http://superuser.com/questions/459138/adobe-reader-not-loading-form-content
    When opening an fdf from a command line the form fields are blank even though there is data in the fdf and the pdf is located in a mnaully entered trsuted folder.
    Steps to reproduce:
    Clean install a Windows 7 PC (or use a virtual box)
    Map a network drive to a shared folder with a subfolder e.g. c:\test\docs becomes m:\docs
    Set security permissions to allow full control to everyone
    Add an fdf and a matching pdf file in the subfolder
    Manually add m:\docs to each of the trusted folders in the trust manager registry settings
    Ensure that Enhanced Security is on
    Run a command line to open the fdf file
    Expected result:
    pdf is opened in Adobe Reader with form fields filled out with data
    Actual results:
    pdf is opened with blank fields
    'Yellow bar' appears asking to add document to trusted locations
    It appars that Adobe Reader XI is ignoring the privileged locations entries in the registry. Adding the document via the 'yellow bar' adds the individual document, with the same folder, to the privileged locations but means that the process has to be repeated for every document that needs to be opened from the folder.
    Note that I've submited this as a bug but had no reply.

    when i search for sun java plugin.
    i got the link
    http://www.oracle.com/technetwork/java/archive-139210.html
    http://www.oracle.com/technetwork/java/index-jsp-141438.html
    but dont understand what would i download from it
    thnks
    Edited by: kaminanikamini on Jul 14, 2012 6:24 AM

  • Error while invoking a WS-Security secured web service from Oracle BPEL..

    Hi ,
    We are facing some error while invoking a WS-Security secured web service from our BPEL Process on the windows platform(SOA 10.1.3.3.0).
    For the BPEL process we are following the same steps as given in an AMIS blog : - [http://technology.amis.nl/blog/1607/how-to-call-a-ws-security-secured-web-service-from-oracle-bpel]
    but sttill,after deploying it and passing values in it,we are getting the following error on the console :-
    “Header [http://schemas.xmlsoap.org/ws/2004/08/addressing:Action] for ultimate recipient is required but not present in the message”
    Any pointers in this regard will be highly appreciated.
    Thanks,
    Saurabh

    Hi James,
    Thanks for the quick reply.
    We've tried to call that web service from an HTML designed in Visual Studios with the same username and password and its working fine.
    But on the BPEL console, we are getting the error as mentioned.
    Also if you can tell me how to set the user name and password in the header of the parter link.I could not find how to do it.
    Thanks,
    Saurabh

  • Calling secured web service from Pl SQL

    Hi
    I am trying to call a secured web service from pl/sql using utl_http.
    Is there a sample pl/sql program that i can refer to call a secured web service.
    sample soap header that am trying to acheive.
    <soap:Header>
    <wsa:Action>http://myactaction</wsa:Action>
    <wsa:MessageID>uuid:asdfadrewrwqr</wsa:MessageID>
    <wsa:ReplyTo>
    <wsa:Address>http://schemas.xmlsoap.org/ws/2004/03/addressing/role/anonymous</wsa:Address>
    </wsa:ReplyTo>
    <wsa:To>http://myact</wsa:To>
    <wsse:Security soap:mustUnderstand="1">
    <wsse:UsernameToken wsu:Id="SecurityToken-321321">
    <wsse:Username>mordfsafsdae</wsse:Username>
    <wsse:Password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordText">werwqrewrwe</wsse:Password>
    </wsse:UsernameToken>
    </wsse:Security>
    </soap:Header>
    Thanks a ton in advance

    Hi,
    On way we can call a web service is to pass the Web Service URL to UTL_HTTP package:
    Sample Web Service URL
    ===================
    lv_url :=
    'http://67.97.189.151:8888/plsqlsample/dbfunc?invoke=placeOrder'
    || '&'
    || 'param0=1'
    || '&'
    || 'param1=1'
    || '&'
    || 'param2=1';
    Sample Call using UTL_HTTP
    =====================
    SELECT UTL_HTTP.request (lv_url)
    INTO lv_result
    FROM DUAL;
    Thank you.
    Regards,
    Balu

  • Error when trying to access a secured web service from Forms 10g 10.1.2.3

    Hello,
    I'm trying to access a secured web service from Forms10g 10.1.2.3 but i'm getting the next error when pressing the button the first time:
    java.rmi.RemoteException: ; nested exception is: HTTP transport error: javax.xml.soap.SOAPException:
    java.security.PrivilegedActionException: javax.xml.soap.SOAPException: Bad response: 401 UnauthorizeWhen i press the button a second time i got this error:
    javax.xml.rpc.soap.SOAPFaultException: The SOAP request is invalid. The required node 'Envelope' is missingThis is the code i have in my button:
    DECLARE
    jo ora_java.jobject;
    pdfObject ora_java.jobject;
    pdf     varchar2(900);
    rv varchar2(100);
    ex ora_java.jobject;
    BEGIN
    JO := SEARCHSOAPCLIENT.new;
    SEARCHSOAPCLIENT.setUsername(JO,'weblogic');
    SEARCHSOAPCLIENT.setPassword(JO,'welcome1');
    pdfObject := SEARCHSOAPCLIENT.quicksearch(JO,'1234',NULL);
    pdf := SEARCHSOAPCLIENT.tostring(pdfObject);
    message(pdf);
    message(' ');
    EXCEPTION
    WHEN ORA_JAVA.JAVA_ERROR then
    message('Unable to call out to Java, ' ||ORA_JAVA.LAST_ERROR);
    WHEN ORA_JAVA.EXCEPTION_THROWN then
    ex := ORA_JAVA.LAST_EXCEPTION;
    :error := Exception_.toString(ex);
    END;When i run it from JDeveloper it works, this is a portion of java code the proxy web service has:
    import oracle.webservices.transport.ClientTransport;
    import oracle.webservices.OracleStub;
    import javax.xml.rpc.ServiceFactory;
    import javax.xml.rpc.Stub;
    public class SearchSoapClient {
        private webservicesproxywebcontent.proxy.SearchSoap _port;
        public SearchSoapClient() throws Exception {
            ServiceFactory factory = ServiceFactory.newInstance();
            _port = ((webservicesproxywebcontent.proxy.Search)factory.loadService(webservicesproxywebcontent.proxy.Search.class)).getSearchSoap();
            this.setUsername("weblogic");
            this.setPassword("welcome1");
            System.out.println("callling from _port "+ _port.quickSearch("1234234", null));
         * @param args
        public static void main(String[] args) {
            try {
                webservicesproxywebcontent.proxy.SearchSoapClient myPort = new webservicesproxywebcontent.proxy.SearchSoapClient();
                System.out.println("calling " + myPort.getEndpoint());
            } catch (Exception ex) {
                ex.printStackTrace();
         * delegate all operations to the underlying implementation class.
        public QuickSearchResult quickSearch(String queryText, IdcPropertyList extraProps) throws java.rmi.RemoteException {
            return _port.quickSearch(queryText, extraProps);
        }Also the secured web service was generated from Webcenter Content 11.1.1.6 that is why it's a secured web service.
    Kind Regards
    Carlos

    Without going into any technical discussion about the code, my first question is what JDK version was used to create this which was imported into the form? Understand that Forms 10 runs on JDK 1.4.2, so if you used any newer JDK version, likely there will be problems.

  • Downloads folder lost in trash. I managed to drag it from Home but now...

    Downloads folder lost in trash. I managed to drag it from Home but now every download shows up twice, one in the download stack and another in the trash can. What can I do to stop downloads from showing up in the trash can?

    I did it already. The thing is that, since I put the "downloads stack folder" into the trash, and the emptied it, the downloads (from safari) keep showing up in both: the downloads folder (the one I dragged from "Home" to fix my accident) and the trash. The trash looks empty but it is like the computer detects a "download folder" in the trash, that I can't see.

  • Cannot secure delete items from trash: 180 items (pictures, files, folders) remain even if I check "remove all items"

    I cannot secure delete items from trash: 180 items (pictures, files, folders) remain even if I check "remove all items".  Macbook Pro, 10.6.8

    Maybe the items are locked.
    Mac OS X 10.6 Help: Shortcuts for working with items in the Finder
    Shortcuts for working with items in the Finder Command (⌘)-Shift-DeleteEmpty the Trash without any warning or when it contains locked filesCommand (⌘)-Shift-Option-Delete
    http://docs.info.apple.com/article.html?path=Mac/10.6/en/cdb_cpmvfky.html

  • Can Someone Tell me how to Secure my webpage from Copying? Thanks!

    I am new to iweb and .mac. I have just punished my first page to my .web account. It has some family photos on it. How do I make it so that people cannot do a "save as" and copy the pictures that are on the web page?
    Thanks for your help,
    Steve.

    You cannot secure your images from copying; taking a screenshot will bypass any protection mechanism you can implement. If you want to disable only the Save As option, setting the pictures as background images may work. You may want to create a watermark on the posted images.
    (27183)

  • How can I safely and securely get files from my mac.

    I want something like LogMeIn Pro but for free. ther is a free version it DOES support mac BUT not gettong files. I want to be able to securely get files from my mac from school or anywhere whitout paying!!
    I HAVE had a look on google, no help.

    Try versiontracker.com

  • Unable to consume secured Web service from a Dynpro application

    Hello,
    I have followed <a href="http://help.sap.com/saphelp_nw04/helpdata/en/c3/bac36a469e4c75aba646077e71516d/frameset.htm">this tutorial</a>
    in order to protect and consume a secured Web service from a Dynpro application using SAP logon ticket.
    The problem is that after implementing everything needed I  receive 401 Unauthorized when I am trying to consume it from the web dynpro side.
    If I manually transfer the request the credentials, before the execute i.e:
    modObj._setUser
    modObj._setPassword
    modObj.execute();
    I am able to call it, meaning the dynpro application doesn't transfer these credentials to the Webservice even though it's authentication property is set to true.
    Any idea how to solve it?
    Roy
    Message was edited by:
            Roy Cohen

    Try below steps
    • Add jars
    o security.class
    o tc/sec/destinations/interface
    • Setting WebDynpro project property
    o Project>Properties>Web Dynpro References-->Interface references
    &#61607; Name=tcsecdestinations~interface
    o Project>Properties>Web Dynpro References-->Service reference
    &#61607; Name=webservices
    &#61607; Name=tcsecdestinations~service
    • Dynamically Set httpdestination and Call web service
    final InitialContext ctx = new InitialContext();
    final DestinationService dstService = (DestinationService)ctx.lookup(DestinationService.JNDI_KEY);
    if (dstService== null)
    throw new NamingException ("Destination service not available");
    final Destination destination = dstService.getDestination("HTTP"," DestinationName");
    // getting user name
    Properties destprop = destination.getDestinationProperties();
    String username = destprop.getProperty("USERNAME");
    String password = destprop.getProperty("PASSWORD");
    final HTTPDestination httpDestination = (HTTPDestination) destination;
    HttpURLConnection httpConnection = httpDestination.getURLConnection();
    String httpURL = String.valueOf(httpConnection.getURL());
    Request_AdvLocationVer1ViDocument_getLocation obj=wdContext.currentRequest_AdvLocationVer1ViDocument_getLocationElement().modelObject();
    obj._setUser( user );
    obj._setPassword(pass);
    obj._setEndPoint(httpURL);
    obj.execute();
    Rahul

  • Trying to ... Restore files from MINWINPC folder using HP Recovery Manager

    Please help me ... I follow all the steps (pasted below) to restore my PERSONAL files from the MINWINPC folder copied to my desktop computer (new hard drive) from an external hard drive, however it then asks me to insert disc # 171338041 !!! I don't know what disc this is or what it wants!!!! it is very frustrating. Consequently it does nothing other than ask for this disc! even after 2 hours of allowing it to scan for the files  ! Reading various information sites/forums it would seem that it is asking me to insert the last disc of the series, however the backup files were all placed onto an external USB drive. and the files are in the MINWINPC folder. It appears to me that the HP Recovery Manager is not reading from the correct place! The files were backed up from my HP compaq which originally ran Widows Vista and was later ugraded to Window 7. The MINWINPC folder contains 2 files namely : Backup.1.exe and Backup.2.fbw I should be grateful for any help... Please ---- Instructions: Restoring backup files using HP Recovery ManagerTo restore backup files that you created using HP Recovery Manager, follow the steps below.Open the USB device to which you wrote your backup file, such as your USB flash drive, and then copy the MINWINPC folder to a convenient location on your computer, such as your desktop.Locate and open the MINWINPC folder on your computer, and then double-click the executable file (.exe) that was created during the backup process.note:There may be more than one file, but only one will be an application (.exe) file. Other backup files created with HP Recovery Manager will have an .fbw extension.When the Recovery Manager File Restore Program opens, click Next.Select the types of files that you want to restore and then click Next.----  

    , Hello and thanks for posting on the HP support forums.  There is a way of doing a back up using a USB device but it has to be less than 32 GB.  If the data is any more than that then it will become corrupted. As well the back up came from a Vista system and the backup will be looking to load back onto the same OS.  By going to Windows 7 it will not find what it is looking for. You would have had to use another back up software for your data that could handle the amount and normally the best way is to plug in a USB hard drive and just drag and drop your files over. At this point you will not be able to recover your data the way you are trying. I hope this helps. Thanks again for posting and have a great day.

  • Call an Non-SharePoint Secured RESTful API from a Workflow in a SharePoint Online Tenant

    I have a scenario where I need to be able to make calls to a secured web service from a SharePoint 2013 workflow that will be deployed in a SharePoint Online (Office 365) environment. It is a REST web service that is secured in a 2-legged OAuth-like manner
    (the service expects a hash of the data being sent that can then be validated on the service's end of the communication). The problem is, I can't figure out how I can hash the data, since I can't run any server-side code in the SharePoint Online environment.
    The way I figured this should work is 1) user creates an item in a List on the SharePoint Site, which kicks off the workflow process. 2) the workflow process takes the user data and hashes it using a client secret assigned by the web service. 3) the
    workflow creates a web request to the web service, passing the data and the hashed values. 4) the web service processes the input and returns. 5) the workflow continues to the next step.
    I can't figure out how to implement step 2 in that process. I thought I could do a custom workflow activity that would accomplish it, but since it would pretty much have to be a code-based activity (i.e., not declarative), it can't be deployed in SharePoint
    Online, according to the domentation I've found. I could potentially add a third layer in the process and have an auto-hosted app that I could call to do the hashing of the data, but that seems to defeat the purpose somewhat from a security perspective.
    Has anyone else run into this kind of scenario? Doing this in an on-premesis environment would be easy, but that's not really an option.
    Thanks!

    You should implement this by passing the values to a public (forms based auth) web method (secure over SSL) that does the hash for you and returns the value to your workflow so that it can pass it on to the other service.
    Chris Givens CEO, Architecting Connected Systems
    Blog Twitter

  • HT203433 I am unable to get any music on my iPhone 3GS either from my computer or iTunes stores. Just managed to download music from iTunes onto my iPad so assume my iPhone is at fault?

    I am unable to get any music on my iPhone 3GS either from my computer or iTunes stores. Just managed to download music from iTunes onto my iPad so assume my iPhone is at fault?

    Okay, you are using Windows 7. What version of iTunes do you have. Please don't tell me the most current one, go into Help then About iTunes and read what it says.

  • HT1918 I tried to sign for Course Manager and I am from Taiwan cannot use it why? its horrible it should be international here in Taiwan everybody also uses English too.. Apple should understand it very well.

    I tried to sign for Course Manager and I am from Taiwan cannot use it why? its horrible it should be international here in Taiwan everybody also uses English too.. Apple should understand it very well.  Can anybody guide how can I do or sign inot Course Manager as I am an English teacher here in Taiwan and not able to access the software or Apps because its says TAIWAN NOT AVAILABLE I THINK ITS NOT FAIR AT ALL AFTER SPENDING SO MUCH MONEY ON MY NEW IPAD 64GB

    Licensing restrictions or issues.

Maybe you are looking for

  • Handling Unit not being assigned to TO for an outbound delivery

    Hi All When I create a TO for an outbound delivery then a handling unit is not being assigned to the TO. I cannot confirm the TO as it complains about the non assignment of HU. I have done the following so far: 1. Set up a default packing material w.

  • Where to find 'Exempt' indicator for reporting using ad-hoc query?

    I want to run report for a count of exempt and non-exempt employees using ad-hoc query with logical database PNPCE. We maintain the exempt/non-exempt flag on the job. Thanks Manish

  • Fill Container Object in Java Mapping

    Hi Everyone, I use BPM and defined a container object of type integer. Now I want to fill this container object in Java Mapping. After I fill it in the next step there is a switch using the value of the container. How can I fill the container in Java

  • How do I remove adobe plug-in?

    So 2-3 years ago I didn't like the way Safari displayed or was unable to view PDF's in Safari. So I downloaded a plug-in that enabled me to see PDF's in the same way you see them in acrobat reader. Now, I like the way Safari does this on it's own and

  • Accumulated Depreciation Changes

    Dear Guru We have uploaded  assets through AS91 and posted depreciation for subsiquent month. i am not able to change accumulated depreciation amount in AS92 the filed is display mode . please advice. Thanks