Do objects created in MainMenu.nib ever get dealloc'ed?

If my MainMenu.nib contains an instance of one of my classes... for example a "MyController" object... and I give that class a dealloc method... what, if anything, would cause dealloc to get called?
For example, it seems like when the NSApp is quitting perhaps it ought to dealloc the stuff it loaded from MainMenu.nib, but that doesn't seem to be happening. And, since my "MyController" object alloc's and init's some other objects when it does it's "awakeFromNib" it seems like it ought to release those objects when it gets dealloc'ed.
Am I missing something, or forgetting to implement something. Or am I just overcomplicating something I really don't need to worry about?
Steve
20 iMac G5   Mac OS X (10.4.3)  
20 iMac G5   Mac OS X (10.4.3)  

Have you read this thread at CocoaDev? I think you will find that the objects in MyDocument.nib in a document-based app do go thru dealloc, but I don't see how it much matters if your non-document-based app is terminating. You can use delegate methods like windowWillClose or applicationWillTerminate in your controller class to do clean up duty in a single-window app. I still have a lot to learn about NSWindowController myself.

Similar Messages

  • BUG? New instances created in jdoPrestore do not get commited

    Any persistent objects created in jdoPrestore() do not get committed to
    database (calling makeTransactional() explicitly does not make any
    difference)

    Just wanted to let you know that this bug as well as the 1-1 relation
    performance problems you were seeing have been corrected internally. The
    next release (sometime next week hopefully) will include the fixes.

  • Incorrect Legacyexchangedn is being stamped only on contact objects created on Exchange 2007

    Environment
    Exchange 2007- All mailboxes are hosted on Exchange 2007 servers.
    Exchange 2000 - Only being used to relay emails, RUS is running on these servers.
    Abnormality what i have noticed is that contact objects being created on exchange 2007 server are getting legacyexchangedn as "OU=itca" which is name of Exchange 2000 administrative group. Ideally, any objects created on Exchange 2007 should get
    legacyexchangedn like "OU=Exchange administrative group (FYDI....)" .
    This happens only with contacts. Legacyexchangedn on mailbox is getting stamped correctly.
    I am trying to understand why contact objects are getting incorrect legacyexchangedn. Any help on this would be appreciated. 

    Hi,
    Can you change the OU when create contacts?
    Please try below link to create contact, for your reference:
    https://technet.microsoft.com/en-us/library/aa997220(v=exchg.80).aspx
    Meanwhile, we can modify the default OU by AD. More details about Redirecting the users and computers containers in Active Directory domains, please refer to:
    http://support.microsoft.com/kb/324949/en-us
    Best Regards,
    Allen Wang

  • Missing MainMenu.nib file on Xcode

    Hi, I´m really new to Xcode, i´m trying to follow the program guides and I notice that all of them say that I must have a ManiMenu.nib file in Resources group of Xcode, well, I only see MainMenu.xib, I try to create the nib file but I only can create a library file.
    Also I try to delete Xcode preferences as indicated in help files but without luck, every time I create a new Cocoa project the MainMenu.nib is missing.
    I´m using Xcode 3.2.1 over Mac OS 10.6.2
    Any clue will be appreciated.
    Thanks.

    +>is really strange that if they cover 3.0 with snow leopard they did not mention this change.+
    Not at all. Those books all have to be ready for print well ahead of time.
    This means the code being used is most likely beta/pre-release. Lots of opportunity for mistake like this.
    The only way for them to add corrections later that reflect up-to-date implementation is to reprint ($$$!!!) or, as is frequently the case, log corrections to a website when/if they find the time.
    The reality is more likely that users simply start supporting each other and the workload subsequently falls to the community instead. The original authors are off the hook and get free support Nice work if you can get it.

  • How to Execute the Business objects created in ABAP from webDynpro applicat

    Wht is the steps , or where the help documents are available for accessing the Business objects created in ABAP or R/3 systems from webDynpro project.

    Hello Vishal,
    I couldn't find any useful documents for your purpose.
    However i had a similar requirement and had implemented the same using GCP APIs. But before i send you the code help, i would like to know your exact requirement. What are you trying to achieve? Are you just wanting to execute the BO and get the result? Or is your requirement has got something more to do?
    Regards,
    Sudeep.

  • Insert Object (create from pdf file) in wordpad fails

    Problem:
    I am unable to insert object (create from existing pdf file) in wordpad application.
    Environment:
    OS: Windows 7 Professional + SP1 (64-bit)
    Acrobat X (32-bit installer)
    Procedure:
    Open Wordpad application, click on 'Insert Object', choose 'Create from File', Browse and Select exsting pdf file, click 'Display As Icon' and Click 'Ok'
    Expexted Result:
    PDF should get inserted as OLE object to wordpad
    Actual Result:
    Error message "Failed to create object. Make sure the application is entered in the system registry."
    Addition Notes:
    I noticed that while insterting PDF (OLE object) it seach for certain registry key (AutoConvertTo) which is not available hence it fails.

    Yes, I am aware. But this problem appears only when I insert PDF file (which is Adobe file).
    I guess this has nothing to do specifically with 'wordpad' but I referenced known application from standard offiering. It happens with any 64-bit application using 'rich-edit' control (this is Microsoft too ) and allowing user to insert OLE objects.
    I guess somewhere Adobe Acrobat installation fails to create required registry entries which are being referred by 64-bit applications while inserting PDF files as OLE objects.

  • Flash 8 objects created in Director 10.1.1

    OK, I'm pulling out my hair here.
    In Director MX2004, with Flash 7 movies, everything was
    dandy. I was able to create an object in Director and pass it into
    Flash and all was good:
    -- In Director
    myFlashObj = sprite(1).newObject("Object")
    myFlashObj.name = "my name"
    myFlashObj.age = "my age"
    sprite(1).functionToReceive(myFlashObj)
    -- In Flash
    function functionToReceive(newObj){
    var i:String;
    for (i in whichObj) {
    trace("whichObj."+i+" = "+whichObj
    Trace output:
    whichObj.name = my name
    whichObj.age = my age
    See how simple?
    Well, as soon as I upgraded to the (secret, hard to find on
    the site) 10.1.1 Director update, this no longer works. The object
    is created (Director sees it as an object). Director can set and
    get the values. BUT Flash no longer sees it as an object.
    I've tried other methods:
    - call a Flash function that creates an object and returns it
    to Director
    - Return a Flash object that already exists using getVariable
    No matter what I try, Flash doesn't recognize any of the
    properties that I add.
    Arrays still work fine. Using the new "convert" method to
    convert a list to a flashObjectArray works fine. But no objects.
    Any ideas?
    I tell you, the 10.1.1 update was meant to fix just a few
    things (QuickTime and Flash 8 support), and I've had nothing but
    problems with every one of the updates.

    So I should have made the project AS2 if I wanted Director
    functionality...
    I guess I can just make the search feature a separate EXE and
    have the SWF presentation open in a separate window.
    I know this is a Flash forum question, but maybe you know the
    answer Mike:
    How can I open an EXE (or an .app file) from the SWF?
    Rafael.

  • How to find Number of objects created in SAP during 1 year..

    Dear Experts,
    We wanted to know how much customized object has been created in our system in a specified period of time say last 1 year.. Can you please suggest the way to find this.. The objects includes Program. Function Module, Tables, Structures, Smartforms etc...
    Is there a way to check the complexity of these objects..
    Regards,
    Vidya..

    >
    Alpesh wrote:
    > u can check this objects in se03 transaction
    >
    > under transport organization tools --> object --> Object in customer namespace
    >
    > you will get list of all packages and enter whatever you want (say TABL for table  in object type field)
    >
    > Regards,
    > Alpesh
    Read  the thread properly before giving reply.
    There you have no where creation date mentioned, how you
    will identify objects created in SAP during 1 year ?

  • How to identify objects created by registering xml schema

    Hi Everyone,
    We are using Oracle 9i Rel2. I have registered an XML schema and I saw that there were several objects created for it table ,some types and a trigger . For some build purposes I want to exclude all of these objects which are associated with xml schema and should be able to drop and recreate the whole of oracle schema.
    I see the user_types table does not have any parameter to indicate that these are autogenerated or are different. In user_types they look like any other type that a user would have created. Do any of you know how to differentiate these types created by registering XML schemas from the normal types.
    Thanks for your help

    There is no way I know of to differentiate between a type created by Schema Registration and another Type. You can query the XML Schema itslef to get the Typenames it relies on.
    SQL> --
    SQL> SQL> select nvl(extractvalue
    2 (
    3 value(ct),
    4 '/xs:complexType/@name',
    5 'xmlns:xs="http://www.w3.org/2001/XMLSchema"
    6 xmlns:xdb="http://xmlns.oracle.com/xdb"'
    7 ),'Local Complex Type') COMPLEX_TYPE,
    8 extractvalue
    9 (
    10 value(ct),
    11 '/xs:complexType/@xdb:SQLType',
    12 'xmlns:xs="http://www.w3.org/2001/XMLSchema"
    13 xmlns:xdb="http://xmlns.oracle.com/xdb"'
    14 ) SQL_TYPE
    15 from user_xml_schemas,
    16 table
    17 (
    18 xmlsequence
    19 (
    20 extract
    21 (
    22 schema,
    23 '//xs:complexType',
    24 'xmlns:xs="http://www.w3.org/2001/XMLSchema"
    25 xmlns:xdb="http://xmlns.oracle.com/xdb"'
    26 )
    27 )
    28 ) ct
    29 /
    COMPLEX_TYPE
    SQL_TYPE
    PurchaseOrderType
    PURCHASEORDER_T
    LineItemsType
    LINEITEMS_T
    LineItemType
    LINEITEM_T
    COMPLEX_TYPE
    SQL_TYPE
    PartType
    PART_T
    ActionsType
    ACTIONS_T
    Local Complex Type
    ACTION_T
    COMPLEX_TYPE
    SQL_TYPE
    RejectionType
    REJECTION_T
    ShippingInstructionsType
    SHIPPING_INSTRUCTIONS_T
    Local Complex Type
    ROOT_T
    COMPLEX_TYPE
    SQL_TYPE
    Local Complex Type
    P222_T
    10 rows selected.
    SQL>

  • Create proxy to an object created by a wcf service class

    Hi
    We are trying to develop a WCF Service which is configured as per-session.
    The service object creates another object which has some data + functions, and has its own Interface which is available on both client and server.
    Is it possible to somehow create a proxy of this object on the client so that the client can call the object functions directly ?
    Thanks
    Abhishek
    PS:
    The object interface is also configured as a servicecontract and the object class is also configured as a service. However if we call this service independently, it creates a new instance of the object.

    Hi Amy
    Many thanks for replying.
    OK let me try to explain by way of example code appended after my signature.
    Let us say we have a service which implements Iservice1. The service contract has an operation returning an object of type Userinfo. In addition to data, the userinfo class has a method GetHistory which returns a datatable.
    Datacontract and Datamember attributes will cause the UserInfo object to be recreated on the client. But what I really want is a proxy to this userinfo object, so that the GetHistory function can be called directly rather than going through Iservice1.
    In general, I want the service class to be able to create a server object and then let the client have its proxy.
    Kindly advise.
    Thanks
    Abhishek
    -----Code Begins ---------------------------------
        [ServiceContract]
        public interface IService1
            [OperationContract]
            UserInfo  SelectUserDetails(UserID as Integer);
        [DataContract]
        public class UserInfo
            int userid;
            string username;
            [DataMember]
            public int UserID
                get { return userid; }
                set { userid = value; }
            [DataMember]
            public string UserName
                get { return username; }
                set { username = value; }
            public DataTable GetHistory()

  • Appraisal Objects created in 'Approved' Planning status

    Good day,
    When creating Appraisal Template objects, they are created in 'Approved' Planning Status. We want them created in 'Active' Planning Status. We suspect this is the reason why we can't configure/define the process configuration for our template under IMG path: Personnel Management > Personnel Development > Objective Setting and Appraisals > Define Tabs and Process Configuration for Template. The system gives the following error message: "No process defined for form <template name>"
    We've tried using program RHAKTI00 to make these objects (VA VB VC) active but are facing a further issue that it makes appraisal template unreleased. Vice versa when i released the template, it makes objects planning status to reset to approved from active. A similar issue has been posted in the below thread but an answer was not provided.
    Objects created in 'Approved'  Planning status
    Kindly assist.
    Best regards
    Hardus

    >
    Chris Thomas wrote:
    > Michael - thanks as always for your insight and willingness to help out.
    >
    > Let me explain further.  Duke currently has a third party performance management system that allows the users to manage their Expected Job Results (EJR) in a catalog (translate to Qualifications catalog in R3).  In a separate step, the manager can select a single EJR and on the other side of the screen select all , or a subset of their employees to assign the EJR to.
    >
    > Extrapolate this to SAP PM.  We have created a Criteria group in our template and have experimented with adding qualifications via the BADI and this works fine EXCEPT that the manager would have to do this in each employee's appraisal, individually.  We are developing the tool to build and maintain the qualification catalog and assign to the employee via Manager Self Service, we are hoping to be able to facilitate the assignment of the EJR/Qualification into the employee's appraisal template.   The EJR's (Q objects) will be associated to a quadrant in their catalog: QK's - Clinical Quality, Customer Service, Finance and Work Culture
    >
    > The criteria group, Expected Job Results, has for criteria groups nested under it:  VB objects for four quadrants, Clinical Quality, Customer Service, Finance and Work Culture.   SO, we get to the crux of the matter.  Since we know the employee, we can get to the appraisal document and associated data in the tables.  The decision of which VB to go to is what we are trying to facilitate.  The textual names will be the same for the quadrants in the QK's and VB's BUT thats a bad way to try to make a decision, thus the thought to create a relationship between the QK and the associated, logically equivalent VB.  
    >
    > The issue comes up with some of our managers who have large (60+) direct reports so the thought of creating qualifications from the appraisal side, individually per employee does not work.  This is why we are thrashing around with trying to start outside and work our way in.  Make sense ?
    >
    > Chris Thomas
    Hi Chris,
    This is what I was trying to explain between free vs fixed enhancement. 
    Free enhancement - user selects from a list to add something to the template
    Fixed ehahcement - preloads data into the template
    If your application that you build in MSS assigns the qualifications to the employees, you have a number of options to make this work as fixed enhancement.
    First use the following fixed enhancement as your basis: 
    HRHAP00_ENHANCE_FIX1 - Fixed Enhancement - Add Position Requirements
    Now in your MSS application if you assigned the qualifications to the position and wanted all qualifications to show up in 1 criteria group, you can use this enhancement with no development. 
    qualifications assigned to positions or jobs are called requirements
    qualifications assigned to employees are called qualifications
    if you have like 10 qualifications assigned to the position and 4 need to go to clinical quality VB, 3 need to go to finance vb criteria groups, you will create a BADI for each one of those, each criteria group wiill have its own unique badi.  in the badi you will apply the filter after all "requirements are selected from position" so that only the 4 belonging to the qualification block for finance are loaded into that VB. 
    if your mss application MUST assign it the employee for business reason, you use the same logic except swap out position lookup with employee lookup. 
    are we closer?

  • Objects created in a particular day

    Experts,
    Plz help me finding out the newly created objects in a particular day in the database.
    thanks in advance.
    thanks,
    baskar.l

    The dba_objects view has a column "CREATED" which can be used to get the list of object created on a specific day.
    SQL> desc dba_objects
    Name Null? Type
    OWNER VARCHAR2(30)
    OBJECT_NAME VARCHAR2(128)
    SUBOBJECT_NAME VARCHAR2(30)
    OBJECT_ID NUMBER
    DATA_OBJECT_ID NUMBER
    OBJECT_TYPE VARCHAR2(19)
    CREATED DATE
    LAST_DDL_TIME DATE
    TIMESTAMP VARCHAR2(19)
    STATUS VARCHAR2(7)
    TEMPORARY VARCHAR2(1)
    GENERATED VARCHAR2(1)
    SECONDARY VARCHAR2(1)

  • Stolen laptop, if password protected, can they ever get my files?

    Someone broke into my car and stole my Macbook Pro (among other expensive things in the trunk), if it is password protected on both the OS X and Vista sides, can they ever get to my files?
    I think they'd wipe the drive, right?
    I'm so not lucky...
    MacBook Pro 17"   Mac OS X (10.4.8)   dual boot Vista Ultimate

    http://www.samspublishing.com/library/content.asp?b=MacOS_XUnleashed&seqNum=104&rl=1
    Enabling the root Account
    As mentioned earlier, the administrator account is a powerful account. But the most powerful account on a Unix machine is the account called root. People also refer to root as the super user, but the account name itself is root. On most Unix systems, the first available account is the root account. In OS X, however, the root account is disabled by default as a security precaution.
    At some time, however, you might find it necessary to enable the root account. The root account can modify system settings, modify files it does not own, modify files that are not writable by default, modify a user's password, install software, become another user without having to know the password of that account, and so on. In other words, root can do anything anywhere, making the power of root immense. Because root has so much power, the only users who can become root are users with administrative privileges. Because a user with administrative privileges can become the root user, you should assign these capabilities to only completely trusted individuals.
    If you choose to enable the root account, please remember to use it with caution. Although the root account might provide some extra utility, you could accidentally wipe out your system if you do not pay careful attention to what you type. In addition, the root password you choose should be difficult to guess. Finally, become the root user only as long as necessary to complete the task at hand.
    With the presence of an administrative user, it might be a long time, if ever, before you discover a need for enabling the root user. There are many approaches that you can take for dealing with the root user, from ways to use root without enabling the root account to actually enabling the root account.
    Let's take a look at four different ways to gain root access to your system. Although you can choose whichever method you like, it's useful to understand that even though some of these methods appear to work magic, they all accomplish very much the same thing.
    The root user is disabled because it does not have a valid password set. Because there are a number of ways to set a password, there are also several ways to enable root, including one method (the first we'll look at), that was designed specifically for assigning the root account password and only the root password. In addition, you'll see how the sudo command can provide root-level access even when the root password is disabled. We recommend that users access the root account only when absolutely necessary.
    Using the NetInfo Manager Utility
    There are a couple of graphical ways to enable the root account using the NetInfo Manager utility. Do not worry if you do not understand what the NetInfo Manager utility is at this time. We will take an in-depth look at the NetInfo Manager utility in Chapter 23.
    NetInfo Manager: Method One
    Click on Applications in the Finder window toolbar. Open the Utilities folder and then open the NetInfo Manager utility.
    If nothing appears automatically when you open the NetInfo Manager, under the Domain menu, select Open; then select the default domain, which will be /.
    Click on the lock button in the bottom-left side of the window to enable a mode that allows making changes. Enter the name and password of an administrative user; then click OK.
    Under the Domain menu, select Security. Then choose Enable Root User from the submenu. Unless you have previously set a root password, a message appears with a NetInfo Error, indicating that the password is blank. Click OK.
    Enter the root password you want to use, and then click Set. Remember that the root password should not be easily guessable.
    Enter the password again for verification, and then click Verify.
    Under the Domain menu, select Save. A request to Confirm Modification appears. Click on Update this copy.
    Under the Options menu, select Restart All NetInfo Domains on Local Host. An alert asking whether you really want to restart the machine's NetInfo servers appears. Click Yes.
    Click on the lock button again to prevent any further changes. Then close the NetInfo Manager.
    You might find it sufficient just to click on the lock button again to save your changes. Figure 11.5 shows an example of what an enabled root account looks like in the NetInfo Manager. Note that the password field no longer has an * in it.
    Figure 11.5 The root account has been enabled on this machine. Note the * that was in the password field has been replaced with an encrypted password.
    NetInfo Manager: Method Two
    You could try this alternative NetInfo Manager utility method if the first one does not work for you. The danger to this method is that it copies the password of another user to the root user.
    Click on Applications in the Finder window toolbar. Open the Utilities folder; then open the NetInfo Manager utility. If nothing appears automatically when you first open the NetInfo Manager, from the Domain menu, select Open and then select the default domain, which will be /.
    Click on the lock button in the bottom-left side of the window to enable a mode that allows making changes. Enter the name and password of an administrative user. Then click OK.
    Click on Users in the second list, and then click on a user you created whose password you know.
    Double-click on the value across from passwd in the bottom section of the window and copy it. What you are looking at is an encoded copy of the user's password.
    Click on root in the users list. Note that the default value for the password for root is *, which means that no one can log in as root right now. Using * in the passwd field is a way to lock a user from the machine.
    Double-click in the field with the *; then paste in the encoded password from the previous user to replace the *. The * should no longer be present when you are done.
    Select Save from the Domain menu. A request to Confirm Modification appears. Click Update This Copy.
    Select Restart All NetInfo Domains on Local Host under the Options menu. An alert asking whether you really want to restart the machine's NetInfo servers appears. Click Yes.
    Click the lock button again to prevent any further changes; then close the NetInfo Manager.
    Again, note that you might find it sufficient to just click on the lock button again to save your changes.
    Using the OS X Installation CD
    Because the OS X installation CD comes with an option to reset a user's password, you could use the installation CD itself to enable the root user.
    To enable the root account using the OS X installation CD, do the following:
    Insert the OS X CD.
    With the CD in the CD-ROM drive, reboot the machine. Hold the C key while the machine reboots.
    Wait for the Installer to appear and then select the Reset Password option under the Installer menu.
    Select the OS X disk that contains the root account you want to enable. If you notice a spinning CD icon appear after you have chosen the Reset Password option, don't wait for the spinning to end to select your OS X disk. The System Administrator (root) user appears as the default user.
    Enter a new password and then re-enter the password for verification. Click Save. Click OK when the Password Saved box appears.
    Quit the Password Reset application, quit the Installer, and click Restart.
    Using sudo at the Command Line
    Although we won't start looking at the command-line utilities in depth until Chapter 15, "Command-Line Applications," we take this opportunity to demonstrate some ways to accomplish tasks that root might do by using the sudo command-line utility. It is all right if you do not feel comfortable with trying anything you see in this section at this time. When you are more familiar with working with the command line, you can return to this section. If you do want to try anything in this section, you can run the commands in a terminal window. Just open the Terminal application in the Utilities folder in the Applications folder.
    Using sudo to Run Commands as root
    sudo is a command-line utility that allows use of the root account without necessarily enabling root.
    For example, in a terminal window, you could use sudo to reboot the machine now:
    [localhost:~] joray% sudo shutdown -r now
    The most common way to use sudo is to preface each command that you want root to do with the sudo utility. If you are asked for a password, use the password of the user who is executing the sudo command. If the user is not eligible to execute sudo, the command is not executed.
    If you need to execute a few commands in a row as root, you could try a couple alternative uses of sudo. When you are done with the tasks for root, type exit at the end of your session.
    In this example, your shell is elevated to that of root until you exit the session:
    [localhost:~] joray% sudo -s
    We trust you have received the usual lecture from the local System
    Administrator. It usually boils down to these two things:
    #1) Respect the privacy of others.
    #2) Think before you type.
    Password:
    [localhost:~] root#
    Notice that the prompt changes to include root#, as a reminder that you now have the power of root.
    In this example, sudo is used to run su to become root until you exit the session. When root is enabled, su can be used to switch to the root user. When using su by itself, the password you enter to become root is that of root, rather than yours, as you do with sudo.
    [localhost:~] joray% sudo su
    Password:
    [localhost:/Users/joray] root#
    Notice that in this example, the prompt also includes root# as a reminder of your power as root. Remember, to return to the status of a regular user, type exit when you are done with your root session.
    Using sudo to Enable the root Account
    Recall that the sudo command is used to execute a command that root might execute. A way to enable the root account is to use sudo to execute passwd, which is a command used to change passwords.
    Here is an example:
    [localhost:~] joray% sudo passwd root
    Password:
    Changing password for root.
    New password:
    Retype new password:
    [localhost:~] joray%
    The password that you initially enter is your password. Then you supply a password for root, and re-enter it for verification. If you mistype the password, you will be prompted again, as shown in this example:
    [localhost:~] joray% sudo passwd root
    Password:
    Changing password for root.
    New password:
    Retype new password:
    Mismatch; try again, EOF to quit.
    New password:
    Retype new password:
    [localhost:~] joray%

  • Count shared objects created on server

    Hi Experts,
    I am working on a game projects right now. I have created game using Flex and FluorineFx(ASP.NET). In this I have used persistent remote shared object to share the common UI to two players. Now It can be heavy traffic on the server as there might be thousands of games running at a time. So to balance the load on the server, I want to count the shared objects created on the servers. If shared objects on the server exeeds the max limit then I  will switch the requests to create sharerd object on the other server.
    So for this, how can I count the shared objects created on the server. Also can I chech that the shared object is created or not on the server, I mean is there any methos which returns any flag based on the checking that shared object of perticular ID is exist or not.
    I would appreciate if I will get quick reply as it is quite urgent for me.
    Thanks in advance.

    Hi,
    Do you have the same user account to access the shared folder? The issue could due to different versions of SMB.
    Please refer to the thread below to troubleshoot the issue.
    Shared Drive keep asking Password !!
    https://social.technet.microsoft.com/Forums/windows/en-US/82bd137b-8022-47fe-be40-bcf6bc728b6c/shared-drive-keep-asking-password-?forum=w7itpronetworking
    Best Regards,
    Mandy
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • Is there any way I can recover deleted pictures from Camera Roll and iCloud? Please please help me. All of my precious pictures are gone that I can never EVER get back. I dont have any iCloud or Camera Roll backup; and my PC can't download more software.

    Hi everyone! I'm in need of extreme help. You see, today, two months ago I went out of the country from the United States of America. I took about 1500 pictures ONLY on my iPod touch. When I returned to the United States to my home, I accidentally deleted a little more than 100 pictures. Then, thinking I could get ALL of the pictures back at once, I restored my iPod touch from an iCloud backup I had a couple of days before. Instead of getting all of my pics back, they all got erased. The pictures that I did delete were deleted from Camera Roll AND Photo Stream (iCloud). Then, I was only able to get about 500 pictures back from iCloud. So about 1000 are still gone. When i did the restore, I thought all my pictures would be there, but they weren't and I couldn't possibly figure out why; because a restore from iTunes or iCloud is supposed to restore your device to the settings of the time you backed up your device. All of my other settings were just the way they were supposed tone for the time being, all except my pictures, which contained not one picture in any folder. So EVERYTHING from Cameta Roll was gone, and only about 500 pictures survived. I kept retoring and restoring, hoping they would come back but unfortunately they didn't. Then one time a restored again, I saw all of them back!! But then, within a blink of an eye, they disappeared as soon as I tapped on one picture. Then, I knew they were still in reach, but I just had to find them. Where could those 1000 pictures go? I looked up how to recover deleted photos, but I have to install a software. My computer CANNOT possibly take anymore software on it, my PC is very sensitive and I cannot delete anything off of it. Please please help me. What can I do to get my pictures back? They are memories that I can never EVER EVER get back. Thank you so much.

    Please please help me, if you know how.

Maybe you are looking for

  • I've made changes to my site and republished them. Waited two days for changes that never appeared.

    I made some changes to my iwebsite and republished them last night about 11pm. It's now 5:18 pm and the changes are not there. iweb was still open and would not close without asking if I wanted to quit the publishing process. How long does it take fo

  • Subscription not active

    hello all. my subscription to india 800 hundred minutes. minutes are over. i bought new subscription of 800 minutes it will not active. and another time i bought new 120 minutes subcription it is also not active . it is showing in subcription bar. ca

  • ChaRm and CTS+ configuration

    Hello Experts, Can anyone forward ChaRm and CTS+ configuration document to me, I have received Business requirments and trying to configure the same. I would appreciate step by step configuration guide for both. Thanks in advance. Regards, Swapnil La

  • FM SWW_WI_CREATE_VIA_EVENT

    in this FM, what is the parameter RECTYPE,OBJTYPE,OBJKEY i have a business object BUS2038, for a workflow WS90000092, what is the object key here? Workitem? RECTYPE is defined as two character code concatenated with the 8 digit number, so WS90000080

  • [SOLVED] Question about conky-lua-arch.

    I've managed to get conky-lua-arch up and working except for one minor issue. When I launch it, it automatically displays on the far right side of my 2nd monitor. This leads me to believe its alignment is pre-configured to run on the right side of th