RDP disconnect and NOT lock session?

How can I disconnect and RDP session and NOT lock the console. This is a dedicated HTPC. I want to avoid using VNC if I can but I cannot find a way using MTSC or TSCON to do this.
thanks

To: Prabhat Kumar
Thanks, but I would like to know can we force put this action (tscon...) when disconnect the RDP. I have a computer which can do that, but I don't know how to make it. Any idea for this?
Thank you.
Old thread, I know. But I had forgotten tscon and needed it for a (laughably) some digital signage... If it's me, I'd just create a batch file on the machine you're RDP-ing to using
Livin's solution. This way, your command line session exits after execution and it's only a double-click away. Now, since it's an HTPC you're using that (I'm presuming) is single-headed (one monitor), you'll probably want to throw your media interface back
up when you're done doing whatever.
Unfortunately, I haven't found a solution for a program that's already running, but this will open an executable and maximize it:
START /MAX [path to executeable]
So, your final "code" for your batch file, if you're using Windows Media Center, would read something like this:
START /MAX %windir%\ehome\ehshell.exe
tscon 1 /dest:console
exit
The 'exit' is not necessary in my experience, but I usually add it anyway.

Similar Messages

  • If I disconnect and connect the session which was currently working will not be avialable but a new session starts.

    Hi
    RDP connection over server 2008 R2 standard, if I disconnect and connect the session, which was currently working  will not be avialable but  a new session starts.
    what features should I add and how to configure so that if connection is lost the user should see the same session when they connect back.
    kind Regards,
    Jayanth

    Hi,
    Please enable this policy and try again.
    Restrict Users to a Single Session
    http://technet.microsoft.com/en-us/library/cc754762.aspx
    Thanks.
    Jeremy Wu
    TechNet Community Support

  • IPod stuck in "do not disconnect" and NOT recognized by iTunes

    I updated to 7.1.1.... and my iPod is not stuck in "do Not disconnect" and not recognized by iTunes.
    I have tried the Toshiba "Safely Remove Hardware" -- and selecting the iPOD -- but, notice comes back "cannot disconnect now because a program is accessing the device."
    Anyone know where I can go from here??? Thanks very much.

    the same thing happened to me yesterday after downloading the new itunes 7.1.1 the do not dissconnect would'nt go off and computer and itunes would'nt reconize my ipod video.
    so i left it alone overnight to empty battery completely.
    the do not disconnect was gone in the morning then i recharged it and plugged it back in to computer and everything is fine. i don't know why it froze on me.
    my husbands ipod mini had a similar problem awhile back and i did the same and it also was fine.

  • Is there a way to BULK COLLECT with FOR UPDATE and not lock ALL the rows?

    Currently, we fetch a cursor on a few million rows using BULK COLLECT.
    In a FORALL loop, we update the rows.
    What is happening now, is that we run this procedure at the same time, and there is another session running a MERGE statement on the same table, and a DEADLOCK is created between them.
    I'd like to add to the cursor the FOR UPDATE clause, but from what i've read,
    it seems that this will cause ALL the rows in the cursor to become locked.
    This is a problem, as the other session is running MERGE statements on the table every few seconds, and I don't want it to fail with ORA-0054 (resource busy).
    What I would like to know is if there is a way, that only the rows in the
    current bulk will be locked, and all the other rows will be free for updates.
    To reproduce this problem:
    1. Create test table:
    create table TEST_TAB
    ID1 VARCHAR2(20),
    ID2 VARCHAR2(30),
    LAST_MODIFIED DATE
    2. Add rows to test table:
    insert into TEST_TAB (ID1, ID2, LAST_MODIFIED)
    values ('416208000770698', '336015000385349', to_date('15-11-2009 07:14:56', 'dd-mm-yyyy hh24:mi:ss'));
    insert into TEST_TAB (ID1, ID2, LAST_MODIFIED)
    values ('208104922058401', '336015000385349', to_date('15-11-2009 07:11:15', 'dd-mm-yyyy hh24:mi:ss'));
    insert into TEST_TAB (ID1, ID2, LAST_MODIFIED)
    values ('208104000385349', '336015000385349', to_date('15-11-2009 07:15:13', 'dd-mm-yyyy hh24:mi:ss'));
    3. Create test procedure:
    CREATE OR REPLACE PROCEDURE TEST_PROC IS
    TYPE id1_typ is table of TEST_TAB.ID1%TYPE;
    TYPE id2_typ is table of TEST_TAB.ID2%TYPE;
    id1_arr id1_typ;
    id2_arr id2_typ;
    CURSOR My_Crs IS
    SELECT ID1, ID2
    FROM TEST_TAB
    WHERE ID2 = '336015000385349'
    FOR UPDATE;
    BEGIN
    OPEN My_Crs;
    LOOP
    FETCH My_Crs bulk collect
    INTO id1_arr, id2_arr LIMIT 1;
    Forall i in 1 .. id1_arr.COUNT
    UPDATE TEST_TAB
    SET LAST_MODIFIED = SYSDATE
    where ID2 = id2_arr(i)
    and ID1 = id1_arr(i);
    dbms_lock.sleep(15);
    EXIT WHEN My_Crs%NOTFOUND;
    END LOOP;
    CLOSE My_Crs;
    COMMIT;
    EXCEPTION
    WHEN OTHERS THEN
    RAISE_APPLICATION_ERROR(-20000,
    'Test Update ' || SQLCODE || ' ' || SQLERRM);
    END TEST_PROC;
    4. Create another procedure to check if table rows are locked:
    create or replace procedure check_record_locked(p_id in TEST_TAB.ID1%type) is
    cursor c is
    select 'dummy'
    from TEST_TAB
    WHERE ID2 = '336015000385349'
    and ID1 = p_id
    for update nowait;
    e_resource_busy exception;
    pragma exception_init(e_resource_busy, -54);
    begin
    open c;
    close c;
    dbms_output.put_line('Record ' || to_char(p_id) || ' is not locked.');
    rollback;
    exception
    when e_resource_busy then
    dbms_output.put_line('Record ' || to_char(p_id) || ' is locked.');
    end check_record_locked;
    5. in one session, run the procedure TEST_PROC.
    6. While it's running, in another session, run this block:
    begin
    check_record_locked('208104922058401');
    check_record_locked('416208000770698');
    check_record_locked('208104000385349');
    end;
    7. you will see that all records are identified as locked.
    Is there a way that only 1 row will be locked, and the other 2 will be unlocked?
    Thanks,
    Yoni.

    I don't have database access on weekends (look at it as a template)
    suppose you
    create table help_iot
    (bucket number,
    id1    varchar2(20),
    constraint help_iot_pk primary key (bucket,id1)
    organization index;not very sure about the create table syntax above.
    declare
      maximal_bucket number := 10000; -- will update few hundred rows at a time if you must update few million rows
      the_sysdate date := sysdate;
    begin
      truncate table help_iot;
      insert into help_iot
      select ntile(maximal_bucket) over (order by id1) bucket,id1
        from test_tab
       where id2 = '336015000385349';
      for i in 1 .. maximal_bucket
      loop
        select id1,id2,last_modified
          from test_tab
         where id2 = '336015000385349'
           and id1 in (select id1
                         from help_iot
                        where bucket = i
           for update of last_modified;
        update test_tab
           set last_modified = the_sysdate
         where id2 = '336015000385349'
           and id1 in (select id1
                         from help_iot
                        where bucket = i
        commit;
        dbms_lock.sleep(15);
      end loop;
    end;Regards
    Etbin
    introduced the_sysdate if last_modified must be the same for all updated rows
    Edited by: Etbin on 29.11.2009 16:48

  • Ipod stuck in do not disconnect and not showing in windows or itunes

    Hi
    when connecting the video ipod to my pc it goes into do not disconnect and dosnt get put in my computer or itunes
    I done the 5 R's and the only way i can transfer music is to assign a drive letter but that dosnt solve the my computer only itunes.
    ALso i cant restore cuase theres an error showing when i do and when i update my seetings the pod give a error 50 message so cant enable disk write.
    And it wont put album covers on the pod either
    Please help

    the same thing happened to me yesterday after downloading the new itunes 7.1.1 the do not dissconnect would'nt go off and computer and itunes would'nt reconize my ipod video.
    so i left it alone overnight to empty battery completely.
    the do not disconnect was gone in the morning then i recharged it and plugged it back in to computer and everything is fine. i don't know why it froze on me.
    my husbands ipod mini had a similar problem awhile back and i did the same and it also was fine.

  • Mail mac disconnected and not working when mac back sleeping

    I have a problem with my mail app on imac and Mountain Lion installed.
    when the mac goes  in sleep mode, if the mail app was open,, on wake up all the accounts are disconnected and clicking the "connect the accounts" not working.
    To fix it I have always to close and open again the mail app for connect the accounts.
    With Lion this not happen.
    Any help?
    Regards
    Michele

    I have one other totally off the wall thought. OK educated guess, based on the fact that my day job involves writing file systems for other operating systems.
    I have seen implementations where file timestamps are not written to disk until they absolutely need to be written. Until it is needed, the fact that the file has been touched is kept in memory.
    Now I have only seen situations where it is the *Access Time* that is treated this way, NOT the *Modification Time*. The touch command modifies the Modification time by default. However, I do not know how the Mac OS X HFS+ file system deals with updating the on-disk timestamp values.
    One thing you could try. Instead of using touch, use the date command redirected to a file on the target disk
    0-59/12 * * * * date >/Volumes/MyHardDrive/.nospin.txt
    This will give you verification of when the cron job last ran and do more than just touch the Modification Time on the file.
    Or if you want a record of every time the cron job ran, change the > to >>
    0-59/12 * * * * date >>/Volumes/MyHardDrive/.nospin.txt

  • "do not disconnect" and not recognized by iTunes

    I have read these discussios and I can see I am not the only one who has these same problems, but I have not gotten any answer that would have helped me.
    I just bought a new iPod Nano 4Gb, I had a 2Gb version and it worked just fine, not even one problem with it. But stupid of me I wanted a bigger one. When I plugged it in it wanted to update itself, but somehow in the middle of the process my computer booted itself. So when it had rebooted, iTunes did not recognize my Nano and updater kind of freezed.
    And now I have tried every single thing in the list that could help. But my Nano just shows this "do not disconnect" thing.
    I do not know what to do. Should I just return my lovely Nano to the shop I bought it from or is there some trick that could bring it back to life?
    Oh yes, I have not been able to restore the software because updater does not work, it just freezes everytime, I have reinstalled it a dozen of times, even with different languages but not even that helps. Nano's Icon shows in My computer but I can not touch it because it just goes "does not respond". If I take my Nano away from my comp it works just fine, even if there is no music or anything in it, but as soon as I connect it, it just does this "do not disconnect" thing.
    Help me, I don't know what to do
    iPod Nano 4Gb Windows XP Pro

    I answer to myself
    So I took my nano to the store and they gave me a new one, just saying that they had had a couple of those same problems with iPods. So I got the new one and wisely enough I reinstalled first iTunes and updater so that nothing would remind of the player that didn't work.
    But when I plugged it in the same text appeared "do not disconnect" I could have cried. I thought it would go away if I just waited. Well it didn't. But different from the last time I was able to use Updater and I did see what was inside my iPod in My Computer. So now I just cleaned my temp folder and used the Windows Install Clean Up and reinstalled iTunes.
    And after rebooting my comp a miracle happened, iTunes recognized my nano and I was able to transfer music to it. I am so happy!

  • Finder bug: copying locked and not-locked items

    At least, I think it's a bug:
    * Make two files. Lock one, leave the other unlocked.
    * Select both.
    * Drag both into a folder. The plus-sign-in-a-circle mouse cursor appears.
    * Drop them. The locked file is copied to the new folder, as I guess it should be. However -- the bug -- the unlocked file is also copied, not moved. I would think that only the locked file should be copied to the new location.
    Not a big deal, although I suppose it would be a bigger deal if I were moving around a bunch of 10 GB files and forgot that one of them was locked.
    Maybe somebody with an active Radar account for the Finder could file this? I think it's real...

    @gppixelworks - you turn off the alarm by sliding your finger across the options.
    If you find my post helpful please click the green star on the left under the avatar. Thanks.

  • do not disconnect and NOT CHARGING

    When i plug my NANO, I have this ''do not disconnect'' logo blinking and I don't see the charging logo. Why ? It does not want to charge. I did reset + restore. HELP !
    Merci,
    Jean

    When your iPod is displaying "Do Not Disconnect" it is charging.
    In the upper-right corner of your iPod's screen, you will see a slowly blicking battery symbol.
    Or, you will see a battery with a plug icon in the middle of it, indicating that your iPod is fully charged.
    When your iPod is displaying "Do Not Disconnect" when you connect it to your computer, and its been displaying this for more than a couple of minutes, you most likely have disk use enabled, or you are manually managing your iPods content.
    In both of those possibilities, you will have to manually eject your iPod before it is safe to disconnect.
    To eject your iPod, click on the little arrow that's next to its name in the iTunes Source List.
    Or go to the Safely Remove hardware program in the bottom-right corner of your screen, with the System Tray icons. Select "Apple iPod USB", and click on "Stop".
    -Kylene

  • My WIFI keeps on disconnecting and even after reporting and suggestion by support the phone hasnt been replaced or repaired under warranty

    I think I have had enough. So its been a long time back and forth between me and you. Since I am not getting any solution and same thing you guys are providing me again and again.
    I want to take a step back and list down a few things which have happened so far :-  
    I started chatting with the apple support on this issue starting September - please refer back to your chats on this Serial Number.
    I have factory reset my phone like 20 times since then as each time they asked me to follow few steps which made me loose my data as your icloud doesn't work properly as stated by your customer care support people itself that sometimes the back up doesn't happen so please take back up at your laptop too.
    Send phone diagnostics by clicking on a link.
    reset your WIFI settings
    Call apple support after 24 hours of observation.
    Next day when same issue occurs then extreme Apology.
    Take Back up on computer and Icloud both and contact apple support once its done
    Call apple support again.
    Factory Reset by erase all contents and setting options. Once one call back again.
    wait and analyse for a whole day after setting up apple ID and data.
    Wifi Issue stil exists.
    Call apple support again
    Between all this I had to explain the issue each time to a new representative. This above process I have gone through at least 7-8 times. Please go and refer your call notes.
    So finally i got to know after escalating it several times and one of your supervisors told me that the issue is a hardware issue and it can only be replaced as they have tried it all.
    Supervisor assured me that he has recommended it to be replaced in notes and asked me to visit a center.
    I called in local distributor and set up an appointment, unfortunately couldnt make it. So call them to reschedule as I am working women so i dont have all the time in life to keep interacting with associate after associate so thought of walking in to an apple store near by and lodge a complaint. The supervisor updated me that I have warranty left and it will be replaced without any cost and also if i report and issue in warranty and if apple is not able to resolve it so the warranty stands true until its completely resolved after customer's consent.
    I went in to give my phone to the tech support and they kept it for analysis and came back saying the issue doesnt exist. I was getting a disconnection in my WIFI every now and then. My Data plan was always used and i fortunately have a proof of that.
    Customer rep told me talk to apple support and if they say we will replace it. One more place added where customer has to go.
    Now and back to square one - They say phone is damaged - we cant replace it. First of all the phone is not damaged and you guys are just finding reasons to not replace a faulty phone.
    It randomly disconnects and its listed as a known issue on your website too. had this not been listed i would have never thought its the phone. Then I started to observe that its the phone that makes a disconnection and not the WIFI connections as it was everywhere home, office and at friends place.
    Best i can do is call you guys when this happens if you guys promise me that the tech employee of apple can come to whatever location i suggest at that point and do not be surprised if the phone behaves normal when the person arrives as its random.
    Now you want pictures of my phone and you want to analyse further.

    After making an appointment and waiting over a week I was a few minutes late for my appointment I was told by apple I would have to make a new appointment. The shop was Chatswood in Sydney and the manager Mathew was very pathetic. I travelled 1 hour each way and was treated very poorly I must comment and say this was my first Apple devices and I will never understand how come people are buying these devices. The apps seem really good if only the hardware and the support could match. I really wish this manager all his best to Matthew in his next position somewhere else he obviously should not be in the position of managing an Apple store.

  • I plugged my ipod into my computer to load up new tunes and it froaze on the time I dad connected it with the message 'do not disconnect' on the screen.Despite disconnecting and reconnecting it and ensuring it was charged up it will not operate. The 'lock

    I plugged my ipod into my computer to load up new tunes and it froaze on the time I dad connected it with the message 'do not disconnect' on the screen. Despite disconnecting and reconnecting it and ensuring it was charged up it will not operate. The 'lock' symbol is showing at the top of the screen even when I have moved the lock switch. I have been using my ipod for several years with no similar fault. What is the problem/solution?

    I would first try resetting the iPod:
    Reset iPod touch:  Press and hold the On/Off Sleep/Wake button and the Home
    button at the same time for at least ten seconds, until the Apple logo appears.
    Next would be to restore the iPod from backup

  • Wifi sudden disconnection and lock button not working properly on my iphone 4s.......    It is under warranty

    When using wifi on my iphone,sometimes it disconnects automatically...... And my lock button is not working properly.....
    What should i do, my iphone is under warranty....

    The Sleep/Wake button is a hardware issue and that's covered by the warranty. I would take it to the Apple Store and see what they can do.
    Hope that helps

  • Ipod frozen on Do Not Disconnect and Lock symbol is on screen

    I didn't realize that my IPOD was in the "hold/lock" position when I plugged into my computer. I got a message when Itunes opened that said I had to reset my ipod, but i can't do anything. Its frozen on the Do Not Disconnect screen and the "lock" symbol is in the upper lefthand corner. I have tried to reset with the Menu & scroll button but NOTHING. It's just frozen.
    Help.
    Fith Generation IPOD 60GB   Windows XP  

    Your issue sounds almost exactly like what happened to my iPod. Have you disconnected your iPod from the computer and the image still remains frozen? Or is it still connected? If it is still connected, reset your iPod from iTunes. When it's plugged in, iPod should appear under devices and there should be an option to "Restore iPod".

  • RDP Disconnected sessions Azure VM's

    Support Case MS Azure
    Case:
    User s are disconnected from RDS. The session is disconnected, and reconnected. This happens ca.
    15 times during a workday. (per user)
    Case details:
    Last year we started to use VM’s at the MS Azure environment. We created a W2008r2 domain controller,
    and 2 Terminal servers (W2012). This worked properly. We only experienced disconnections when a session was minimalized. But then we created a new environment because we had a new azure subscription. Since then we are suffering from disconnected sessions.
    We tried to tweak our environment, by optimizing the keep-alive settings and the tcp-ip settings.
    This improved slightly the experience, but the problem remains. Further research came up with a number of errors in the event viewer.  
    This is the main error:
    Log
    Name: Microsoft-Windows-TerminalServices-RemoteConnectionManager/Operational Source: Microsoft-Windows-TerminalServices-RemoteConnectionManager Date: 22-01-2013 16:28:11 Event ID: 1152 Task Category: None Level: Error Keywords:  User:
    SYSTEM Computer: TS01.companycloud.local Description: Failed to create KVP sessions string. Error Code 0x8007007A Event Xml: <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event"> <System> <Provider Name="Microsoft-Windows-TerminalServices-RemoteConnectionManager"
    Guid="{C76BAA63-AE81-421C-B425-340B4B24157F}" /> <EventID>1152</EventID> <Version>0</Version> <Level>2</Level> <Task>0</Task> <Opcode>0</Opcode> <Keywords>0x1000000000000000</Keywords>
    <TimeCreated SystemTime="2013-01-22T15:28:11.970697100Z" /> <EventRecordID>55796</EventRecordID> <Correlation /> <Execution ProcessID="1004" ThreadID="1008" /> <Channel>Microsoft-Windows-TerminalServices-RemoteConnectionManager/Operational</Channel>
    <Computer>TS01.companycloud.local</Computer> <Security UserID="S-1-5-18" /> </System> <UserData> <EventXML xmlns="Event_NS"> <Param1>2147942522</Param1> </EventXML> </UserData>
    </Event>
    Then we see a user disconnected, en then we see in the event viewer that the session has been
    rebuild. The user experience a ‘freeze’, black screen and then the message that the session is disconnected. The session automatically reconnect and the user can work further from the point where the session has been frozen.
    After more research, we found more errors, and we pointed to a Hyper-V problem. Foregoing error
    is a error that reports a problem between the Hyper-V host and the guest.
    We also created a Windows 2008 server in the same network. And the problems are appear also. The
    main error on the W2008 server is:
    Log
    Name:      System
    Source:       
    TermDD
    Date:         
    24-01-2013 08:38:19
    Event
    ID:      50
    Task
    Category: None
    Level:        
    Error
    Keywords:     
    Classic
    User:         
    N/A
    Computer:     
    COMPANY-TS03.companycloud.local
    Description:
    The
    RDP protocol component X.224 detected an error in the protocol stream and has disconnected the client.
    Event
    Xml:
    <Event
    xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
    <System>
    <Provider Name="TermDD" />
    <EventID Qualifiers="49162">50</EventID>
    <Level>2</Level>
    <Task>0</Task>
    <Keywords>0x80000000000000</Keywords>
    <TimeCreated SystemTime="2013-01-24T08:38:19.410777900Z" />
    <EventRecordID>6049</EventRecordID>
    <Channel>System</Channel>
    <Computer>COMPANY-TS03.companycloud.local</Computer>
    <Security />
    </System>
    <EventData>
    <Data>\Device\Termdd</Data>
    <Data>X.224</Data>
    <Binary>00050800020030000000000032000AC00000000032000AC0000000000000000000000000000000002200000000000000</Binary>
    </EventData>
    </Event>
    Together with a partner of us, we tried to find the cause of this errors. We created on another
    Azure subscription a similar environment. The fact is that the problems not exist on the other environment. We also concluded, that when we stay within the Virtual Network of Azure, the connection remains!
    Our conclusion is that our problems can be ascribed to a defect in the Windows Azure Virtual Network,
    or in the Hyper-V solution from Windows Azure.  We think that, when we rebuild our complete environment ( approximately 4 days of work) and create a new network (or even a new subscription) the problem is solved.
    An resume of our environment:
    Company-dc01 (Windows Server 2012)
    Primary Domain Controller
    Fileserver
    Company-dc02 (Windows Server 2012)
    Secondary  domain controller
    Company-ws01 (Windows Server 2012)
    RD Gateway
    RD Web Access
    RD Licensing
    RD connection broker
    Company-ts01 (Windows Server 2012)
    RD Session host
    Company-ts02 (Windows Server 2012)
    RD Session host
    Company-ts03 (Windows Server 2008)
    RD Session host

    Additional information:
    This error shows up in other VM's (in the same subscription, not in the same network or affinity group) and in the main hosts.
    Log Name:      System
    Source:        Microsoft-Windows-Hyper-V-Netvsc
    Date:          23-01-2013 07:44:51
    Event ID:      2
    Task Category: (1001)
    Level:         Error
    Keywords:      
    User:          SYSTEM
    Computer:      company-TS01.companycloud.local
    Description:
    The VM and host networking components failed to negotiate protocol version '4.0'
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Microsoft-Windows-Hyper-V-Netvsc" Guid="{152FBE4B-C7AD-4F68-BADA-A4FCC1464F6C}" />
        <EventID>2</EventID>
        <Version>0</Version>
        <Level>2</Level>
        <Task>1001</Task>
        <Opcode>0</Opcode>
        <Keywords>0x8000000000000000</Keywords>
        <TimeCreated SystemTime="2013-01-23T06:44:51.036165500Z" />
        <EventRecordID>51108</EventRecordID>
        <Correlation />
        <Execution ProcessID="4" ThreadID="108" />
        <Channel>System</Channel>
        <Computer>company-TS01.companycloud.local</Computer>
        <Security UserID="S-1-5-18" />
      </System>
      <EventData>
        <Data Name="VersionLen">3</Data>
        <Data Name="Version">4.0</Data>
        <Data Name="Status">3221225473</Data>
      </EventData>
    </Event>

  • Why my iPad 4 become very lag after upgrade to iOS 8.0.2 and not sensitive anymore when press the keyboard and programs it didn't respond when I type the word using the keyboard  fast it lag until I cannot locked or switch off the phone

    Why my iPad 4 become very lag after upgrade to iOS 8.0.2 and not sensitive anymore when press the keyboard and programs it didn't respond when I type the word using the keyboard  fast it lag until I cannot locked or switch off the phone

    Same issue here both with my iphone 5S as well as my iPad2. THe sync to my macbook air does not complete and it shows a large overcapacity level when connected, but once I disconnect there is plenty of room (4 GB) available, not a 20 GB overage. 

Maybe you are looking for

  • Can I use a new macbook pro as an exclusively windows machine?

    I use a Dell XPS M1710 right now for hard core numerical analysis.  Finite-element solving and the like.  I have had this machine for 4 years and it is showing its age finally.  So I am in the market for a new power laptop.  I think the 17 inch Macbo

  • Time Machine no longer working with 10.5.5

    Hello all, I have a 500GB Time Capsule and my MacBook had previously backed up quite happily to it. Since installing 10.5.5, however, it just won't work. The disk image mounts, but Time Machine just hangs on "preparing for backup". I checked with Con

  • FM for uploading data into internal table from Excel sheet

    Hi, I have a slight problem in one of the function modules that I have created. Actually it has been copied from a standard SAP function module “KCD_EXCEL_OLE_TO_INT_CONVERT”. Now my created function module is throwing me a dump suggesting “Data obje

  • India cash/bank book report is not matching with GL balance

    We have Changed one segment in cash account and cash clearing account for internal petty cash account. After changing the segment, Closing balance of India cash/bank book report is not matching with GL balance. Please help. Regards Suresh

  • Stock not updating after STO?

    There are two plants 5000 and 7000.Plant 5000 transfer material to plant 7000 with STO process. But after STO process stok of plant 7000 is updating (addition) but stok of plant 5000 is not reducing..Both  material document is showing right quantitie