List processes of disconnected users

Here is a problem that I have. I work at a hospital. We have a certain application installed on a dozen Windows 7 machines. Doctors leave that application open and walk away from the machine.  The machine eventually locks due to inactivity and another
doctor will come up and log on.  They will attempt to launch the application but cannot open it because it's running in one of the other disconnected sessions.  They have been instructed to log off the machines, but that is obviously to difficult
so I need to identify a different way to address the issue.
Could I get some assistance with a powershell script?  What I would like to do is to have script that goes through the processes that are running under the disconnected users and kill the specific process for the application.  I would like to set
that script up to run every 5 minutes or so under task scheduler.  Is this possible?
I wanted to put a shortcut on the desktop of the machines that would kill the process, but the doctors are not administrators of the machines so I haven't been able to find a secure way of doing this.  Applications like encrypted runas are not secure
so putting the credentials for an administrative user into a script are not secure.
RG

Something like this could work to logoff users who are in a disconnected state.
$Computername = 'Server1'
(quser /SERVER:$Computername) -replace '\s{2,}',',' | ForEach {
If (($_ -split ',').count -ne 6) {
$_.insert($_.IndexOf(','),',')
} Else {$_}
} | ConvertFrom-CSV | Where {
$_.State -eq 'Disc'
} | ForEach {
logoff /SERVER:$Computername /SessionID $_.Id
This uses quser to find current logon sessions and does a little parsing to find out what sessions are in a disconnected state and then proceeds to log the users out.
Boe Prox
Blog |
Twitter
PoshWSUS |
PoshPAIG | PoshChat |
PoshEventUI
PowerShell Deep Dives Book

Similar Messages

  • Urgent:SUS PO not appearing in the PO list for vendor's user

    Hi experts,
                       I am working on SUS. SRM5.0 single box scenario. PO is created by the purchaser and is successfully transfered through XI. But this PO is not appearing in the PO list of vendor's user. Please let me know what can be the possible reason.
    following roles are given to the user:-
    SAP_EC_SUS_ADMIN_PURCHASER
    SAP_EC_SUS_ADMIN_VENDOR
    SAP_EC_SUS_BIDDER
    SAP_EC_SUS_DISPATCHER
    SAP_EC_SUS_INVOICER
    SAP_EC_SUS_ORDER_PROCESSOR
    SAP_EC_SUS_SERVICE_AGENT
    SAP_BBP_STAL_BIDDER
    SAP_EC_BBP_BIDDER
    Also checked vendor data. Communication method is selected as XML.
    After creating PO and transfering it - message comes-
    Information  Processing BBP_PO_SEND_XML Is Started  
    Information  Action successfully completed 
    Please help. It is very urgent.
    Thanks and Regards
    Kapil

    Hi Kapil,
    do you have the same result when deleting all roles and only using role SAP_EC_SUS_ORDER_PROCESSOR?
    Are vendors successfully replicated into SRM and a user created via Web
    Txn "Manage Business Partners"?
    Did you maintain table BBP_MARKETP_INFO?
    Did you replicate the company code using Txn BBP_SUS_BP_ADM?
    In any case there is also an inital replication of vendors
    from MM to SUS via BD14 necessary.
    Thanks,
    Claudia

  • Print List Processing Report to PDF

    hi all,
    i've read many forums about convert info into PDF. but i'm very new to understand those forums.
    In case I want to print list processing report as PDF (not hard copy thru printer). First, user types the data on the screen then click on 'Execute' button, then the system shows the result on screen. After that user asks system for print the screen on menu bar by List=>Print.
    So please advise me how to get the spool id, then export as pdf. As my opinion, i may use CONVERT_ABAPSPOOLJOB_2_PDF and GUI_DOWNLOAD. But where is the place I should put the methods on?
    Thanks in advance.
    Peerasit

    Hi,
    Go through The simple Anallise this program.
    report zabap_2_pdf.
    *-- Enhancements: only allow to be run with variant.  Then called
    *-- program will be transparent to users
    *-- TABLES
    tables:
      tsp01.
    *-- STRUCTURES
    data:
      mstr_print_parms like pri_params,
      mc_valid(1)      type c,
      mi_bytecount     type i,
      mi_length        type i,
      mi_rqident       like tsp01-rqident.
    *-- INTERNAL TABLES
    data:
      mtab_pdf    like tline occurs 0 with header line,
      mc_filename like rlgrap-filename.
    *-- SELECTION SCREEN
    parameters:
      p_repid like sy-repid, " Report to execute
      p_linsz like sy-linsz default 132, " Line size
      p_paart like sy-paart default 'X_65_132'.  " Paper Format
    start-of-selection.
    concatenate 'c:\'
                p_repid
                '.pdf'
      into mc_filename.
    *-- Setup the Print Parmaters
      call function 'GET_PRINT_PARAMETERS'
       exporting
         authority= space
         copies   = '1'
         cover_page                   = space
         data_set = space
         department                   = space
         destination                  = space
         expiration                   = '1'
         immediately                  = space
         in_archive_parameters        = space
         in_parameters                = space
         layout   = space
         mode     = space
         new_list_id                  = 'X'
         no_dialog= 'X'
         user     = sy-uname
       importing
         out_parameters               = mstr_print_parms
         valid    = mc_valid
       exceptions
         archive_info_not_found       = 1
         invalid_print_params         = 2
         invalid_archive_params       = 3
         others   = 4.
    *-- Make sure that a printer destination has been set up
    *-- If this is not done the PDF function module ABENDS
      if mstr_print_parms-pdest = space.
        mstr_print_parms-pdest = 'LOCL'.
      endif.
    *-- Explicitly set line width, and output format so that
    *-- the PDF conversion comes out OK
      mstr_print_parms-linsz = p_linsz.
      mstr_print_parms-paart = p_paart.
      submit (p_repid) to sap-spool without spool dynpro
                       spool parameters mstr_print_parms
                       via selection-screen
                       and return.
    *-- Find out what the spool number is that was just created
      perform get_spool_number using sy-repid
                 sy-uname
        changing mi_rqident.
    *-- Convert Spool to PDF
      call function 'CONVERT_ABAPSPOOLJOB_2_PDF'
        exporting
          src_spoolid= mi_rqident
          no_dialog  = space
          dst_device = mstr_print_parms-pdest
        importing
          pdf_bytecount                  = mi_bytecount
        tables
          pdf        = mtab_pdf
        exceptions
          err_no_abap_spooljob           = 1
          err_no_spooljob                = 2
          err_no_permission              = 3
          err_conv_not_possible          = 4
          err_bad_destdevice             = 5
          user_cancelled                 = 6
          err_spoolerror                 = 7
          err_temseerror                 = 8
          err_btcjob_open_failed         = 9
          err_btcjob_submit_failed       = 10
          err_btcjob_close_failed        = 11
          others     = 12.
    call function 'DOWNLOAD'
         exporting
              bin_filesize            = mi_bytecount
              filename                = mc_filename
              filetype                = 'BIN'
         importing
              act_filename            = mc_filename
         tables
              data_tab                = mtab_pdf.
          FORM get_spool_number *
          Get the most recent spool created by user/report              *
    -->  F_REPID               *
    -->  F_UNAME               *
    -->  F_RQIDENT             *
    form get_spool_number using f_repid
         f_uname
                    changing f_rqident.
      data:
        lc_rq2name like tsp01-rq2name.
      concatenate f_repid+0(8)
                  f_uname+0(3)
        into lc_rq2name separated by '_'.
      select * from tsp01 where  rq2name = lc_rq2name
      order by rqcretime descending.
        f_rqident = tsp01-rqident.
        exit.
      endselect.
      if sy-subrc ne 0.
        clear f_rqident.
      endif.
    endform." get_spool_number
    Regards
    swamy

  • Autorization of Sales District and Price List Creation to the User

    Dear Experts,
    At Present the end user (customer) is sending the request of New Sales District and Price List Creation to SAP SD Consultant and the consultant creates the same in Development Client SPRO through T code OVR0 etc. and then transports the same to Quality and Production Server. This Process takes a lot of time
    We want to provide the direct access of Sales district and Price List creation to the user in PRD.
    Kindly Let me know what is the best way in which we can handle this situation.
    Regards,
    Ranjan Singh

    Are you sure you want to do that? You will create inconsistencies between the systems which will jepardise future tests. I suggest you just train end-user to do the procedure him/her self. I don't think it costs so much time to transport a couple of requests.

  • List processing and PF status.

    Hi Team ABAP,
    i got a problem in List processing.
    I´m in a dypro with a table control on it. Users can mark one or more ALV lines and then e.G. press "process".
    Something gets done then (some forms get printed), and after that i want to display a protocol.
    First i tried to process a simple write list by using WRITE statement.
    Coding got processed, but it had no effect, no write list was generated, or at least not shown on my screen.
    So i tried to code a "LEAVE TO LIST PROCESSING" right before my first WRITE statement.
    Well, now it works my write list is on Screen. But here start the Problem. Like i got told in the ducomentation of the LEAVE TO LIST PROCESSING statement the WRITE list gets processed with the actual active PF status from the dynpro where i came from.
    1. This is quite uncool, since i do not need those Buttons in my List.
    2. Even if it was ok, those buttons are not working. Typing /h in OK_CODE field and pressing ENTER doesnt help it. When after that i click a button, nothing happens, such as if i didnt click them.
    I searched the forum, but i got drowned in thousands of "interactive list" threads and wasnt able to find my required info in an acceptable time of 30 minutes.
    Did i do a essential error? Someone got an Idea where i´m stuck or a proposal on how to improve?
    Any Help or tip will be welcome and rewared accordingly.
    regards

    Hi Florian,
    Try if you can display the list in ALV where you can maintain the pf-status.
    You can check the demo program  DEMO_LEAVE_TO_LIST_PROCESSING. In this, it is setting set pf-status to space.
    Hope it helps.
    Sujay

  • Short Dump During List processing

    Hi ,
    Problem Desc:
        A program when it runs in production has huge number of data to be displayed in the list .While doing the write statement the internal table(system assigned internal table for list processing '%_LIST') exceeds the memory limit and goes for dump.
    Please suggest for the following for finding a better solution, I am in 4.7 only
    1.Once the program reaches a maximum memory limit I have to clear the list from memory
    - so how to send the processed list to other persistent area like spool etc
    - How to clear the internal list memory allocation ( Any c functions , Class is available for it )
    - How to catch the memory used for the list process programmatically (for Internal table %_LIST)
    Thanks in advance
    Best regards,
    Raj

    Hi Raj,
    Why don't you go for prevention rather than cure?
    When the user selects the data ranges for the report, you could do a calculation to determine the size of the report and then ask them to restrict the criteria.  They could then run several reports rather than trying to do it all in one.
    I would guess that if you are running out of memory that the report must be HUGE.  Who is going to look at something that large?
    You could also increase the memory allocation to each work process (although this is a bit of a sledgehammer to crack a nut).
    As for your quesions:
    1. I'm not sure you can persist the spool yourself, and certainly not from within your program.  You could, however, spin off jobs from the main program which each had a portion of the overall data to process and thus each would generate a smaller spool (although collectively they would be the same size).
    2. As I don't think you can achieve 1, I don't think there is any point to 2.
    3. There was a thread discussing internal table memory consumption just today, with approaches for 6.20+ and 4.6-.  Heres the link: How to catch the Internal Table memory
    Cheers,
    Brad

  • AFP disconnects users, file opening problems, abnormal exits and bus errors

    Hi all
    Since a few weeks we have been having problems with AFP file sharing with OS X Server 10.5.5 (Simple config)
    Several times a day the server stops responding to save commands (especially with Adobe software) or abruptly disconnects users. The console error most frequently associated with these crashes is:
    "com.apple.launchd[1] (com.apple.AppleFileServer[3674]) Exited abnormally: Bus error"
    sometimes starting server preferences we get the following error (roughly translated from French):
    An Error has occured on the server while executing a command.
    the error "CANNOTFSGETVOLINFOERR" occured while executing a command of type "getVolumeList" in the module "servermgr_filebrowser"
    I'm past hoping for a quick fix but any pointers or ideas of what to look for would be greatly appreciated.
    Robin Lambell

    I just want to make sure I have the steps clear.
    disable the automounts in 'Filesharing' in Server Admin
    I disable the automounts in the File Sharing tab of Server Admin by clicking on each share point and clicking the Unshare button.
    then remove the sharepoints
    How? Isn't that automatic? I chose to unshare a share point and it disappeared from the list. Is that enough?
    Then in Terminal.app do:
    sudo rm /private/var/etc/AFP.conf
    Then:
    sudo rm /Library/Preferences/com.apple.AppleFileServer.plist
    Then in Server Admin, restore the sharepoints back and automounts. Then restart the AFP service.
    I restore the share points by manually choosing to share each of them again? I'll have to redefine each one, won't I?
    Thanks for the help. I haven't done this before and I want to make sure I'm doing it right.

  • Disconnect users in MaxL

    I get requests from my client in the form of spreadsheet asking me to disconnect users that are logged in for more than 1 hour.I know there are maxL statements to disconnect all users. I am looking at 10-20 users at a time.
    Is there a statement as I would like to put this in excel and automate it instead of going over the process through EAS.its take a lot of time and hurts my fingers.

    Hi rtk & 833738,
    Cameron and Glenn both make good points, and I think you should consider the KISS (Keep It Simple) route to an effective solution.
    To me it sounds like your cubes are getting excessively fragmented (typical during a heavy planning cycle). Are you doing nightly maintenance such as export-clear-load of your data to help control this? Additionally, a good review of your tuning, optimization, and settings in essbase may reveal some areas that can be improved on. Finally, I think you may need to review your hardware requirements. Hardware, faster disks, more memory etc, can have a significant positive impact on performance and stability with relatively very low cost, and short implementation time.
    If you still feel you need a utility to suit your unique requirements, this can certainly be created in fairly short order. Contact me at my email address and I can help you out with this. Also, consider Accelatis; a tool that can help manage this and more.
    Robb Salzmann

  • Problem with leave to list-processing and return to screen

    Hi all,
    I am designing a screen in which I have provided a pushbutton which will allow the user to upload (via BDC) the price list to VK11 transaction. And consequently, after upload the BDC message will be captured and displayed as an ALV list. for this, I am using leave to list-processing and return to screen 100 statement.
    My problem is, when I return from the alv list screen by pressing back/any button the called screen 100 is displayed as a dialog window. but actually the screen 100 is a normal screen.
    How can I rectify this problem?
    Thanks,
    Rajan

    rajan,
    i think the below link will clear your problem.
    [http://help.sap.com/saphelp_nw04/helpdata/en/9f/db9d2f35c111d1829f0000e829fbfe/frameset.htm]
    Regards,
    Venkat

  • Command leave to list processing

    Dear All,
    I have an executable program (execute via SE38) that need to call an additional screen for input before the actual output on sapscript.
    It is like this, user key in the input into selection screen, then program will extract data and display them into a pop up window. User will further select data from the pop up, and then sapcript will be printed out eventually.
    I'm now stuck at the pop up window. I created a new screen 9000 with screen type "Modal dialog box" and coding as follow:
    Executable program:
    CALL SCREEN 9000 STARTING AT 40 20
                       ENDING   AT 150 50.
    Flow Logic:
    PROCESS BEFORE OUTPUT.
    MODULE STATUS_9000.
    PROCESS AFTER INPUT.
    MODULE USER_COMMAND_9000.
    Coding:
    MODULE STATUS_9000 OUTPUT.
      SUPPRESS DIALOG.
      LEAVE TO LIST-PROCESSING AND RETURN TO SCREEN 9000.
      SET PF-STATUS 'STATUS_9000'.
      LOOP AT TAB INTO WA_TAB.
        WRITE:/1 WA_TAB-TYPE.
      ENDLOOP.
    ENDMODULE.                 " STATUS_9000  OUTPUT
    MODULE USER_COMMAND_9000 INPUT.
      OK_CODE = SY-UCOMM.
      CASE OK_CODE.
        WHEN 'OK'.
    ********  trigger output to sapscript
        WHEN 'CANCEL'.
          SET SCREEN 0.
          LEAVE SCREEN.
      ENDCASE.
    ENDMODULE.                 " USER_COMMAND_9000  INPUT
    With the above code, output is successfully displayed on screen 9000 with command "Leave to list-processing". But after the list displayed, those buttons that defined in Status_9000 are not working at all in screen 9000. There is no response from any buttons i clicked, even i tried in debugging mode it didn't go in debugger as well.
    Please comment which part i miss. Thanks.

    Hi,
    I think the problem is with your statement in the PBO module.
    Why not try and delete this part 'AND RETURN TO SCREEN 9000'.  Over here, if you want to use this addition RETURN TO SCREEN, then screen number should be other than your modal list screen. Currently you have changed the modal screen to behave as list, but at the same time, you want it to behave as the normal screen, after you come back from the list.
    If you really need that, then please create another screen, say 9100, and change it to AND RETURN TO SCREEN 9100, instead of AND RETURN TO SCREEN 9000.
    Regards,
    Lim...

  • Dialog Module and List Processing.

    Hi All,
    I am having a program in which after processing I get a basic list. Using PF-STATUS of the basic list a dialog module is called using 'CALL SCREEN'  which accepts date and has exectue and cancel buttons on it.
    What do I do to so that user when clicks on cancel button the dialog module disapperas and the original list processing is still seen.
    Thanks,
    DJ

    Hi,
    To pass control from the dialog processor to the list processor, you must include the following statement in one of the dialog modules:
    LEAVE TO LIST-PROCESSING [AND RETURN TO SCREEN <nnnn>].
    You can include this statement in either the PBO or the PAI event. Its effect is to start the list processor and display the basic list after the PAI processing of the current screen. The basic list contains any list output from all PBO and PAI modules that have been executed up to that point.
    regads,
    keerthi

  • Leave list processing

    hi to all sdn people
    i know the functionality of the leave list processing
    and leave to list processing . but tell how to use them in the screen programs ?pls give
    one sample screen program .

    LEAVE TO LIST-PROCESSING
    Basic form 5
    LEAVE TO LIST-PROCESSING.
    Addition:
    ... AND RETURN TO SCREEN scr.
    Effect
    Switches from "dialog processing" (module pool, screens) of the current transaction to "list processing". You can then use all the usual list layout commands (WRITE, SKIP, ...).
    After leaving the current screen, the list formatted in this way is displayed implicitly or explicitly by LEAVE SCREEN. Here, all list programming options are possible, e.g. line selection, F keys, windows.
    LEAVE LIST-PROCESSING continues with "Processing Before Output" (PBO) of the screen which controls the list processing.
    Note
    After switching to list processing mode with SET PF-STATUS ..., you are recommended to define a GUI (Graphical User Interface) of type List or List in dialog box.
    Please consult Data Area and Modularization Unit Organization documentation as well.
    Addition
    ... AND RETURN TO SCREEN scr.
    Effect
    LEAVE LIST-PROCESSING continues with "Processing Before Output" (PBO) of the screen scr.
    Note
    Using LEAVE LIST-PROCESSING to leave list processing explicitly is only necessary in exceptional cases; normally, the standard F keys ( F3=Back and F15=Exit) are sufficient.
    Refer the following code:
    REPORT demo_leave_to_list_processing .
    TABLES demo_conn.
    DATA: wa_spfli TYPE spfli,
          flightdate TYPE sflight-fldate.
    CALL SCREEN 100.
    MODULE status_0100 OUTPUT.
      SET PF-STATUS 'SCREEN_100'.
    ENDMODULE.
    MODULE cancel INPUT.
      LEAVE PROGRAM.
    ENDMODULE.
    MODULE user_command_0100.
      CALL SCREEN 500.
      SET SCREEN 100.
    ENDMODULE.
    MODULE call_list_500 OUTPUT.
      LEAVE TO LIST-PROCESSING AND RETURN TO SCREEN 0.
      SET PF-STATUS space.
      SUPPRESS DIALOG.
      SELECT  carrid connid cityfrom cityto
        FROM  spfli
        INTO  CORRESPONDING FIELDS OF wa_spfli
        WHERE carrid = demo_conn-carrid.
        WRITE: / wa_spfli-carrid, wa_spfli-connid,
                 wa_spfli-cityfrom, wa_spfli-cityto.
        HIDE: wa_spfli-carrid, wa_spfli-connid.
      ENDSELECT.
      CLEAR: wa_spfli-carrid.
    ENDMODULE.
    TOP-OF-PAGE.
      WRITE text-001 COLOR COL_HEADING.
      ULINE.
    TOP-OF-PAGE DURING LINE-SELECTION.
      WRITE sy-lisel COLOR COL_HEADING.
      ULINE.
    AT LINE-SELECTION.
      CHECK NOT wa_spfli-carrid IS INITIAL.
      SELECT  fldate
        FROM  sflight
        INTO  flightdate
        WHERE carrid = wa_spfli-carrid AND
              connid = wa_spfli-connid.
        WRITE / flightdate.
      ENDSELECT.
      CLEAR: wa_spfli-carrid.

  • Recursive list processing

    Hello all,
    I'm currently working on some homework involving recursive list processing using the "head+tail" method. All methods are private and have helped methods to get them started (i.e. public boolean add(Object obj){ return add(head);} ) I have written the following methods that work:
    size() -> returns the size of the list
    addFirst() -> adds a node at the start of the list
    add()-> adds and element to the list
    getLast(Node p) -> returns the value of the last element in the list
    getPos(int pos)-> returns the element at given position
    remove(object o) -> removes all occurances of this object from the list
    What I am having trouble with is a removeLast() method. I want to be able to use recursion to find the last element in the list and remove it. (i.e. i = "a", "b", "a", "c" i.removeLast("a") should return a, b, c). Problem is, I'm not quite sure how to do this with recursion. Any help would be greatly appreaiated.
    Thanks
    Tyler

    If you have written getLast(Node), you know how to get to the last node.
    Instead of going that far, stop in the previous node instead, and disconnect the last element.
    if (currentNode == null) // no list; no last element
    throw SomeException();
    else if (currentNode.tail == null) // only one element, can't remove last
    throw SomeException();
    else if (currentNode.tail.tail == null)
    currentNode.tail = null;
    }

  • Disconnect User From Forms6i

    Hi.
    I whish know. How disconnect users from aplication designing in (forms6i) wi2k oracle 8i. for update some .fmx. by example de main menu.

    Hi,
    you cannot disconnect users from the Forms runtime. If you kill the runtime process, then they are disconnected, but there is no way for you to disconnect users from external.
    Frank

  • How can I filter a Sharepoint 2007 libarry list based on current user login?

    Hi all.
    I would like to know how I can filter a SharePoint library list based on current user login.
    Suppose I have created the followings:
    1) A SharePoint form library containing bunch of uploaded InfoPath form data.
    2) The InfoPath form template contains a promoted text field called "TargetUser" to store user domain login (ex: DOMAIN\JOE) and every InfoPath form file in the library has a valid domain name stored in the "TargetUser" field.
    I have created a custom view for the form library and would like to filter this view so only items whose "TargetUser" field matches current user's login ID are displayed.
    I went to Edit View page to customize the view and tried to use the [Me] function but I got a "Filter value is not a valid text string" message instead when clicking OK. Apparently [Me] returns a Person/Group data type and the filter cannot compare its value
    to that of "TargetUser".
    I tried using text functions (ex: TEXT([Me],"") hoping to extract default string value from [Me]. The filter accepts the parameter without any error but the resulting fitlered list does not display any items at all.
    I have googled this subject for hours but I have not found any solution.
    It would be greatly appreciated if anyone can help me to create a functional filtered list.
    FYI, my SharePoint 2007 installation is just WSS 3.0 + Form Server. I do not have MOSS 2007 (so no MOSS 2007 web parts or web services).
    Thank you.
    Jason

    Here's what I usually do in order to accomplish this.  Ultimately you'll need to have 2 different fields.  There's the one you already have, with DOMAIN\username stored in it.  Then you'll need an additional field as a "person" column type. 
    Call it "TargetPerson" or something.
    Create a sharepoint designer workflow that runs each time an item is created or changed.  One action:
    Set FIELD to VALUE.
    The first FIELD is "TargetPerson", the VALUE is your "TargetUser" field. 
    Once this is done, then the person value is stored in the person field.  This is the field that you can filter by "TargetPerson" is equal to [Me]
    Laura Rogers, MCSE, MCTS
    SharePoint911: SharePoint Consulting
    Blog: http://www.sharepoint911.com/blogs/laura
    Twitter: WonderLaura

Maybe you are looking for

  • I need help with 'Documents & Data' taking up all the space on my iPhone

    Hello, I have searched for days on the internet for a way to solve my problem but nothing and I really mean NOTHING seems to work at all. I can't buy any software either. When I go into Settings>iCloud Documents &  Data are off and have been off all

  • Persistent Blocked Plug-In Dialog on MacOS 10.6.8 and Safari 5.1

    I went to adobe to download the flash player.  I am running mac version 10.6.8, Safari version 5.1, Adobe Flashplayer version is the newest available on your website.  I have cleaned cache, uninstalled an old version of flash and restarted the comput

  • HT204406 error code 1202

    I am having issues with iTunes on a Windows 7 box.  I can't get iTunes Match to work and when I try it from iTunes either from the browser line or from within the iTunes I get a screen that has nothing

  • Date description on Open dialogue shows Yesterday when it should be Today

    Running 10.5.6. Get Info on a file shows the correct date description, ie Today, 3:58 pm. However, when the file info on the Open file dialogue box says Yesterday, 3:58pm.

  • Backing up your important files

    Found this article on mac help and performed as instructed (items 1 ~ 3) for the document folder as well as preferences. Seemed to work, however, when I dragged the itunes icon on the far left to the burn folder on the desktop it deleted the itunes i