Satellite A50-532: Synchronization / Offline-files

Hi,
I am using a Satellite A50-532 and I want to make files available locally / offline that are stored on a server. I used to use the XP build-in Offline-files functionality with my old laptop which worked without any problems. Unfortunatley it does not work with the Toshiba as I can't see the data on the server in the tree-structure in the "Synchronization"-window. Right click menu item "Make available offline" is not offered by XP. I already disabled the "Quick user change" as suggested by MS. Firewall and Network problems can also be excluded.
Can anyone help?
Thanks in advance,
tobi77

Hi
Did you configure your Toshiba notebook to use Offline files?
If not you can configure it on this way:
Click Start, and then click My Computer.
On the Tools menu, click Folder Options.
On the Tools menu, click Folder Options.
Select the Enable Offline Files check box, and then click OK.
I hope it will help you. Useful article about this issue you can find under http://support.microsoft.com/kb/307853/en-us
Bye

Similar Messages

  • Satellite A50-532: battery does not charge

    hello,
    I cant load the battery of my laptop since yesterday.
    The LEDs which shine while loading doesnt shine...
    What happened? Whats wrong?
    Is it the charger or the battery? or something else?...
    thx

    Nothing will happen. I've called the service point in holland, and they told me to check the power supply. I think the power supply is dead.
    Maybe u can check yours. Just connect it with power. And if the power supply won't get hot. Then it is dead....

  • Offline Files Synchronization

    When running a "Sync All" on offline files, it runs for an hour or so and then just stops and says Sync Failed with 1 error.  The error message says "The Handle is Invalid."  That is the extent of the message.  I currently have offline files
    to use 200GB on my 1TB hard drive and am only using 154GB of that space.  The files are also set up to be encrypted.  
    The offline files have run fine without any issues for several weeks, and then I added 132MB of files this past weekend.  Ever since then I have not been able to get a full sync to run.  Not sure if this is a coincidence or something else is happening.
     Any suggestions would be appreciated as I have not found anything of value online.
    Michael A. Burrows

    Hi,
    I am also facing the same issue, when i say "Sync All" it runs
    for some time and then just stops and says Sync Failed with  error. The error message is "The Handle is Invalid." If i see the files which gives cross mark and it will not allow to open the files, any suggestions or solution...?
    Regards,
    Premadhas M

  • Satellite A50-543 - What is correct BIOS?

    hi
    My friend has a a Satellite laptop and the internal CD drive is broken and as her Windows had a virus and has been exhibiting strange behaviour I'd like to clean install XP. The current BIOS ver 1.2 doesn't support booting from USB CD-ROM drives. In the support section I found a bios ver 1.4 which says in the description 'This Bios Update adds increased functionality to your system.', not very helpful.
    The bios file is called bios-20070808112012.zip for Satellite model:A50, short model no.:PSA50E.
    I know this is probably a redundant question but just to be sure can I be sure this is the correct BIOS as I'm not overly familiar with Toshiba's naming scheme.
    cheers
    damole

    Hey damole,
    If you did find this BIOS on the Toshiba website for your notebook model its the correct version. I mean why should Toshiba release a wrong BIOS that doesnt work?
    But I have a little bit searched using Google and I think its not possible to boot from USB also with new BIOS version. This is only possible on new notebooks and Satellite A50 is pretty old so I think in this case you have to replace the CD/DVD drive. Maybe you can get a second hand one from eBay that is cheap.
    But if you install XP from a Microsoft disk a CD/DVD drive isnt necessary. Copy the whole i386 folder on the HDD and start the WINNT.exe file.

  • Windows 7 and Offline Files - Sync at logoff

    All,
    I have set up folder redirection in my organisation (testing purposes) The problem I am facing is Windows 7 will not automatically sync offline files back to the share.
    There is a gpo for Windows XP to do this when a user is either is logging off on on. I am trying to accomplish the same when a user logs off and a script can be run to initiate a sync.
    Please help.
    This is the VBS script I am using, but does nothing when I run it. IS there something missing? A better solution?
    ' THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
    ' ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
    ' THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
    ' PARTICULAR PURPOSE.
    ' Copyright (c) Microsoft Corporation. All rights reserved.
    ' Usage: CscSyncAll.vbs [/Direction:in|out|inout] [/PinNewFiles:1:0] [/Conflicts:local|remote|latest] [/Machine:value] [/User:value] [/Password:value]
    ' Demonstrates how to sync the entire Offline Files cache.
    const cComputerName = "LocalHost"
    const cWMINamespace = "root\cimv2"
    ' Process commandline arguments
    strComputerName = WScript.Arguments.Named("Machine")
    If Len(strComputerName) = 0 Then strComputerName = cComputerName
    strUserID = WScript.Arguments.Named("User")
    If Len(strUserID) = 0 Then strUserID = ""
    strPassword = WScript.Arguments.Named("Password")
    If Len(strPassword) = 0 Then strPassword = ""
    ' Sync control flags from Win32_OfflineFilesCache.Synchronize
    const fFillSparse = &H00000001
    const fSyncIn = &H00000002
    const fSyncOut = &H00000004
    const fPinNewFiles = &H00000008
    const fPinLinkTargets = &H00000010
    const fPinForUser = &H00000020
    const fPinForUser_Policy = &H00000040
    const fPinForAll = &H00000080
    const fLowPriority = &H00000200
    const fAsyncProgress = &H00000400
    const fInteractive = &H00000800
    const fConsole = &H00001000
    const fSkipSuspendedDirs = &H00002000
    const fBackground = &H00010000
    const fCrKeepLocal = &H10000000
    const fCrKeepRemote = &H20000000
    const fCrKeepLatest = &H30000000
    const wbemFlagSendStatus = &H00000080
    SyncControlFlags = fSyncIn + _
    fSyncOut + _
    fPinNewFiles + _
    fPinForUser + _
    fConsole + _
    fInteractive
    strDirection = WScript.Arguments.Named("Direction")
    If Len(strDirection) <> 0 Then
    if LCase(strDirection) = "in" Then
    SyncControlFlags = SyncControlFlags - fSyncOut
    Elseif LCase(strDirection) = "out" Then
    SyncControlFlags = SyncControlFlags - fSyncIn
    Elseif LCase(strDirection) = "inout" Then
    ' Do nothing. Flags already indicate in/out
    Else
    Wscript.Echo "Invalid direction value [" & strDirection & "]"
    Err.Raise 507 ' "an exception occured" error
    End if
    End if
    strPinNewFiles = WScript.Arguments.Named("PinNewFiles")
    If Len(strPinNewFiles) <> 0 And strPinNewFiles = "0" Then
    SyncControlFlags = SyncControlFlags - fPinNewFiles
    End if
    strConflicts = WScript.Arguments.Named("Conflicts")
    If Len(strConflicts) <> 0 Then
    If LCase(strConflicts) = "local" Then
    SyncControlflags = SyncControlFlags + fCrKeepLocal
    Elseif LCase(strConflicts) = "remote" Then
    SyncControlFlags = SyncControlFlags + fCrKeepRemote
    Elseif LCase(strConflicts) = "latest" Then
    SyncControlFlags = SyncControlFlags + fCrKeepLatest
    End if
    End if
    Set objWMILocator = WScript.CreateObject("WbemScripting.SWbemLocator")
    Set objWMIServices = objWMILocator.ConnectServer(strComputerName, _
    cWMINameSpace, _
    strUserID, _
    strPassword)
    Set objCache = objWMIServices.Get("Win32_OfflineFilesCache=@")
    Set objParams = objCache.Methods_("Synchronize").InParameters.SpawnInstance_
    Set objSink = WScript.CreateObject("WbemScripting.SWbemSink", "SINK_")
    Set objItemInstances = objWMIServices.InstancesOf("Win32_OfflineFilesItem")
    ' Set up the API arguments
    Dim ItemPaths(0)
    objParams.Paths = ItemPaths
    objParams.Flags = SyncControlFlags
    ' Constants for cache item types
    const cFile = 0
    const cDirectory = 1
    const cShare = 2
    const cServer = 3
    ' Execute the sync action on each share in the Offline Files cache.
    For Each objItem in objItemInstances
    If cShare = objItem.ItemType Then
    ItemPaths(0) = objItem.ItemPath
    objParams.Paths = ItemPaths
    objWMIServices.ExecMethodAsync objSink, "Win32_OfflineFilesCache", "Synchronize", objParams, wbemFlagSendStatus
    End If
    Next
    ' Loop until we receive an OnCompleted event
    bDone = False
    While Not bDone
    wscript.sleep 1000
    Wend
    Sub SINK_OnProgress(UpperBound, Current, Message, objContext)
    DIM PART_REASON, PART_RESULT, PART_RESULTMSG, PART_PATH
    DIM REASON_BEGIN, REASON_END, REASON_ITEMBEGIN, REASON_ITEMRESULT
    DIM Reasons(3)
    ' The message is composed as follows:
    ' <reason>:<result>:<result msg>:<path>
    ' <reason>
    ' Integer indicates reason for progress callback.
    ' Values are:
    ' 0 - "Begin" overall operation
    ' 1 - "End" overall operation
    ' 2 - "Begin Item" operation
    ' 3 - "Item result"
    ' <result>
    ' Integer result code; HRESULT.
    ' <result msg>
    ' Text describing the result. In most cases this is translated using
    ' the Win32 function FormatMessage. In some cases a more descriptive
    ' message is provided that is better aligned with Offline Files.
    ' <path>
    ' UNC path string associated with the progress notifcation. This is
    ' empty for the "Begin" and "End" notifications.
    ' Define indexes of the various parts in the message.
    PART_REASON = 0
    PART_RESULT = 1
    PART_RESULTMSG = 2
    PART_PATH = 3
    ' The reason codes present in the <reason> part.
    REASON_BEGIN = 0
    REASON_END = 1
    REASON_ITEMBEGIN = 2
    REASON_ITEMRESULT = 3
    ' split the message into the 4 parts and extract those parts.
    Parts = Split(Message, ":", -1, 1)
    Reason = CInt(Parts(PART_REASON))
    Path = Parts(PART_PATH)
    Result = CLng(Parts(PART_RESULT))
    ResultMsg = Parts(PART_RESULTMSG)
    Select Case Reason
    Case REASON_ITEMRESULT
    WScript.Echo Path
    if 0 <> Result then
    Wscript.Echo " Error: " & Hex(Result) & " " & ResultMsg
    end if
    Case REASON_END
    if 0 <> Result then
    Wscript.Echo "Error: " & Hex(Result) & " " & ResultMsg
    end if
    End Select
    End Sub
    ' Called when the operation is complete.
    Sub SINK_OnCompleted(HResult, objLastError, objContext)
    bDone = True
    End Sub
    *This code was pulled from: http://blogs.technet.com/b/filecab/archive/2007/04/26/cscsyncall-vbs-sync-the-entire-offline-files-cache.aspx

    Hi,
    Please know that Offline Files in Windows 7 uses Bitmap Differential Transfer. Bitmap Differential Transfer tracks which blocks of a file in the local cache are modified while you are working offline and then sends only those blocks to the server. In Windows
    XP, Offline Files copies the entire file from the local cache to the server, even if only a small part of the file was modified while offline.
    How the synchronization in Windows 7 Offline Files works
    http://blogs.technet.com/b/netro/archive/2010/04/09/how-the-synchronization-in-windows-7-offline-files-works.aspx
    That should be the cause of the issue that your script didn't work.
    Considering that the issue should be related to the script, I suggest to post the question on Script Center forum for further help.
    Script Center forum:
    http://social.technet.microsoft.com/Forums/scriptcenter/en-US/home
    The reason why we recommend posting appropriately is you will get the most qualified pool of respondents, and other partners who read the forums regularly can either share their knowledge or learn from your interaction with us. 
    Thanks for understanding.
    Kate Li
    TechNet Community Support

  • Dreamweaver 8 and Microsoft's Offline Files – Code Problem

    I'm using Dreamweaver 8 in conjunction with Microsoft Offline
    files (part of their server synchronization setup) and when I'm
    offline (not connected to the remote server) I get the message:
    This file has been modified outside of Dreamweaver. Do you want
    to reload it?
    At this point whether I select 'Yes' or 'No' Dreamweaver
    duplicates a portion of the bottom of the HTML code and tacks it on
    to the end. This usually happens after I save a change.
    I can't seem to find this discussed any where.

    If the local root folder is truly pointed to your wife's
    computer, it cannot
    possibly pull up a file from some other location. Are you
    sure you set the
    site up with the macbook as the local root, and not the
    remote site?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "preachrchet" <[email protected]> wrote in
    message
    news:g3j7be$7b2$[email protected]..
    >I am trying to use Dreamweaver 8 on my mac-mini to update
    files for our
    >website
    > that are stored on my wife's macbook. When I go into
    "Manage Sites," I can
    > point the Local Root Folder to the folder on the
    Macbook, and it will then
    > go
    > through the "Updating Site Cache." However, when I try
    to bring up the
    > file to
    > do some work, it pulls off of an older copy on my
    mac-mini.
    >
    > Any ideas how to go about doing this?
    >

  • File server migration with Offline files involved

    Hi,
    We are planning a file server migration in following weeks.
    This morning, our customer came with the good old "Ow, and I just thought about something else"
    Here's the scenario :
    -They are using 1 network drive
    -That network drive is made offline available for all laptop users
    -Those users are spread out in several country's. No VPN connection
    -They are working for months on their offline network drive, right in the middle of the wood, no internet connection, it was already short for them to find power supply for their laptop ...
    ...nevermind
    -The day they come back to the office, the file server to which points the network drives will be offline.
    Now the 1 Million question : What happens with their "dirty" files ?
    yep exactly. those they changed 6 months ago, have no clue about if you ask them but certainly will the day I will clear the damn cache.
    My first analysis :
    -The new file server will have another name, no alias or re-using the old name is possible (the customer don't want to)
    -I can't tell to those laptops "hey for that offline cache, please use this new network drive"
    So :
    >> Those users have to identify manually files they changed while being offline, copy them locally on their machine and work that way the time they come back to the main office.
    >> When they finally show up, clear the cache, offline the new network drive and replace file copied locally
    >> If no internet connexion available in the branch office, let them work locally, it's still better than this hybrid-non-sense 6month offline folder "solution". If internet connexion is mainly available remotely, propose some Citrix/View/RDS
    Setup which is, for me, a more professional looking solution
    Someone has another (better?) idea/solution ?

    Hi, 
    I suggest you ask users to collect their laptop to internet, then start offline files synchronization on the old file server. After that, use
    Robocopy to copy the date from the old server to the new server. As the offline files cache cannot be recognized by the new file server, so we need to synchronize data first.
    If the older server cannot be enabled, as you mentioned, you might need to ask users to copy their changed files to the new file servers.
    Regards, 
    Mandy
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • "Windows could not start the offline files service on local computer. Error 3: The system cannot find the path specified"

    Using Windows 8.1 Pro on Toshiba Satellite i7 Laptop with 8Gb Ram
    After upgrade from Windows 8 Pro to 8.1 Pro, the Offline Files/CSC service refuses to start and gives the error message:
    "Windows could not start the offline files service on local computer. Error 3: The system cannot find the path specified"
    Before the upgrade, offline files worked fine... how do I re-enable offline files?

      I had a similar issue -  couldn't make any files available offline.
    I found that the offline folder service would not start
    This was because the CSC permission were totally screwed.  I had to take ownership of each folder and file, one by one, then grant everyone full access.
    then delete the full contents of the CSC folder
    format the CSC database using the registry fix then reboot
    in control panel, disable the offline files,  reboot, then re-enable.  and now its working :)
    2hrs to resolve this, with grateful thanks to this thread and some others.
    damn windows8

  • Satellite A50: warning prompt on screen

    when i boot up my laptop Satellite A50, running on win/xp/home/ 512 RAM i get a warning promt on screen saying:
    SMART BRIDGE ALERTS POINT NOT FOUND.
    THE PROCEDURE ENTRY POINT GET PROCESS IMAGE FILE NAME W , COULD NOT BE BE LOCATED IN THE DYNAMIC LINK LIBARAY PSAPI.DLL.
    With this I just cklick OK on the prompt, EVERY THING SEEMS FINE BUT I KNOW ITS NOT QUITE RIGHT.
    I'm new user. Please can anyone on this FORUM HELP me with this prob?

    Hi
    Try this:
    1. Navigate to the installation location for SmartBridge via My Computer (\Program Files\Sprint...\Smart...)
    2. Find PSAPI.DLL and rename it to something like PSAPIOLD.DLL
    3. Reboot the system
    Bye

  • Offline Files Sync Schedule

    Hello Everyone,
    I cannot find any clear documentation on this. 
    We have Windows 7 Machines connecting to Windows Server 2012 R2 Shares with redirected Desktop/Documents/Pictures shares with Offline Files enabled on a LAN.
    Do we need to schedule a sync, or will Offline Files 'just work' and sort itself out?
    To note, we initially had problems with clients filling up the cache, so we increased the cache via group policy - will Offline Files then cope fine and keep syncing or do we need to poke and prod it.
    I have read a lot of stuff regarding slow link settings but that doesn't seem to be us as we are on a gigabit LAN with good ping times. 

    Hi,
    You can configure the policy to synchronize during log on or log off. But in Windows 7, synchronization can happen automatically and in the background, without requiring the user to choose between online and offline modes.
    Alex Zhao
    TechNet Community Support

  • Windows 7 Offline files behaviour - automatically making 'shortcutted' files available

    I am a sysadmin with a few Windows 7 Professional machines in our network.
    The current setup for our users is folder-redirection, with offline files enabled for users with laptops (some of which are said Win7 users).
    This works fine, just, any shortcut files that are in the users profile (that are made available offline) make the target of the shortcut available offline aswell. Though I see the benefit of this, it is not a behaviour we want.
    For example if user 'dave' has a shortcut on \\server1\users\dave\desktop, that points to \\server2\files\shortcut_target.doc (i.e. a directory we don't want to have offline file behaviour with) - it will make both files available offline.
    I'm positive it is related to shortcuts, as the files are always shortcutted somewhere in the users profile and the majority of these files come from word's recent documents folder, and other similar folders for different program.
    If theres anyway to change this behaviour please let me know, even if it is just a registry edit.
    Thanks Dan

    Hi,
    “For example if user 'dave' has a shortcut on
    \\server1\users\dave\desktop, that points to
    \\server2\files\shortcut_target.doc (i.e. a
    directory we don't want to have offline file behaviour with) - it will make both files available offline.”
    Based on my knowledge, Windows only synchronous the shortcut in this offline folder. What do you mean “it will make both files available offline.”
    For further research, I suggest you may enable sync log and try to repro this problem. Then move to Event Viewer -> Applications and Service Logs ->
    Microsoft -> Windows -> OfflineFiles, right click SyncLog and chose “Save all event as…” to export these event log.  Here is my e-mail:
    [email protected].  You could contact me, then
    I would assist you for this problem.
    Please refer following to enable SyncLog:
    How to enable the "SyncLog Channel"
    ===========================================
    Offline Files defines four event channels through the Windows Event Viewer.
    The channels are listed under the following hierarchy in the left-most pane of the viewer,
    Event Viewer -> Applications and Service Logs -> Microsoft -> Windows -> OfflineFiles
    If you see only one channel in the event viewer it will be the "Operational" channel. The remaining channels are known as Analytic or Debug
    channels. The Windows Event Viewer does not display these additional channels by default. They must first be enabled.
    To enable Analytic and Debug logs, highlight the "OfflineFiles" entry in the Event Viewer left pane. Select the "View" menu and check the
    option titled "Show Analytic and Debug Logs".
    While four channels are defined, only two are currently in use in Windows 7.
    SyncLog Channel
    ================
    This channel is of the "Analytic" type as defined by the Windows Event viewer. Because this is an "Analytic" channel, you must enable the
    channel before events are generated to the associated log. To enable this channel, right click on the "SyncLog" entry in the left pane of the Event Viewer. Select the "Enable Log"
    option.
    This may also be configured using the channel’s Properties page, also accessible through the Event Viewer. When you no longer want
    to collect SyncLog events, disable the channel using the same method ("Disable Log" option).
    The purpose of this channel is to generate events specific to synchronization activities within the Offline Files service.
    This may be helpful when questions arise about why a particular item is or is not being synchronized or questions about why a particular
    sync operation is failing.
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread. ”

  • Offline Files Do Not Sync Correctly or Show Error

    I have a problem with files not syncing correctly and not showing errors.  The client station is running Windows 7 Professional Version 6.1 Build 7601: Service Pack 1).  A clear example of the problem is listed below:
    On January 9 the laptop was connected to the server with the shared folder.  Three files in that folder were open (in Notepad) on another computer running Windows XP.  That computer does not have offline access setup for any folders.
    After the files were closed on the Windows XP computer, the Windows 7 computer was shut down and physically disconnected from the network.
    On January 10 I was working offline with the Windows 7 computer and noticed that the files did not include the changes made on January 9.  Since the changes were minor, I was not concerned and continued working offline for several days.
    When I returned to the office on January 20, I reconnected to the network and opened the Sync Center expecting to see sync errors for the files in question, instead the conflict Window showed "There are currently no sync conflicts."
    When I attempted to open the files, I found they were the version saved from the Windows XP computer on January 9.  I quickly disconnected the Windows 7 computer from the network and was able to find the offline version of the files in the \Windows\CSC
    directory and copied them to another location.
    What causes this error and what steps can I take to ensure all sync problems are displayed, instead of having the system revert to out of date files without warning me?
    Thanks for your help

    Hi,
    I noticed that when the files finished on Windows XP PC, Windows 7 PC is not connected to the network, and Windows 7 PC was stayed offline(No connection to the network folder) until January 20,
    right?
    If I understand correctly, the files on Windows 7 PC have no connections to perform a sync. On Windows 7,
    Background Sync runs at regular intervals as a background task to automatically synchronize and reconcile changes between the client computer and the server. IT administrators can configure synchronization intervals and block out times. With
    this feature, users no longer must worry about manually synchronizing their data with the server when working offline.
    More details, please check the below MS articles:
    What's New in Offline Files
    How the synchronization in Windows 7 Offline Files works
    How to schedule Synchronizations in Windows 7
    If any further assistance needed, please feel free to contact us.
    Best regards
    Michael
    If you have any feedback on our support, please click
    here.
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • Satellite A50: Cannot boot from the Recovery CD

    I have a toshiba satellite a50 when i try and recover back to factory settings but my computer doesnt recognise the cd and it doesnt boot from the recoverey cd can someone help i explored the cd there is is a file with extension .gho i really need to format my pc

    Insert the CD into you drive.
    Then press the power button and start the notebook.
    For booting from the CD you have to press the C button immediately after notebook starting.

  • Removing redirected {{My Documents}} and offline files

    We have a situation where several of our laptop users, about 100, have their {{My Documents}} folder redirected to a network share and that share is made available offline to them.  I have three things I need to do:
    1. redirect their {{My Documents}} folder back to the default location
    2. Turn off the available offline for these folders on the network share
    3. Move the data that is in the network share to the local PC in the default location for {{My Documents}}
    For #1 I can change the registry to point back to the default locations.
    For #2 I think I can use the group policy under Computer Configuration > policies > Administrative Template > Network > Offline Files. But I'm not sure which setting(s) to use
    For #3 I think I can use the group policy under Computer Configuration > policies > Administrative Template > Network > Offline Files with settings for synchronize all offline files when logging on or off.
    Does anyone have any ideas how to accomplish these tasks?

    > For #1 I can change the registry to point back to the default locations.
    Only if you have a way to copy the data... Unless you use FR to redirect
    back, you have to take care of copying existing data on your own.
    Why not creating a GPO that simply redirects to the local profile?
    > For #2 I think I can use the group policy under Computer Configuration >
    > policies > Administrative Template > Network > Offline Files. But I'm
    > not sure which setting(s) to use
    You can disable offline availability on the server side (in the share
    settings). Simple manual task :)
    Or "do not make redirected folders automatically available offline" -
    but this won't help since they ARE already available offline.
    > For #3 I think I can use the group policy under Computer Configuration >
    > policies > Administrative Template > Network > Offline Files with
    > settings for synchronize all offline files when logging on or off.
    If it works, yes. But this is only supported up to XP, not since Vista
    and above...
    The best solution I think is a script that leverages the
    win32_offlinefiles provider to check for items that are not in sync,
    then triggers a sync and reports success/failure to a log or a database.
    But that's way out of the scope of a GP forum.
    Martin
    Mal ein
    GUTES Buch über GPOs lesen?
    NO THEY ARE NOT EVIL, if you know what you are doing:
    Good or bad GPOs?
    And if IT bothers me - coke bottle design refreshment :))

  • Memory upgrade on Satellite A50-104

    I NEED TO FIND A 512MB MEMORY UPGRADE FOR MY A50/104 ANYONE NO THE CORRECT ONE TO BUY, I WAS TOLD ON EBAY THAT 512 DDR SODIMM IS THIS RIGHT. ALSO HOW DO I CHECK ON MY LAPTOP FOR THESE DETAILS IF THERE ARE ANY AND ANY OTHER SPEC BATTERY ,HARDDRIVE ETC

    Hi
    You have several ways to find out what memory module is compatible and supported.
    You can use a diagnostic too like Everest, you will check the user manual or the Toshiba website for details or you will contact the service in your country for supported modules.
    I will try to answer the question: The Satellite A50 should support PC2700 DDR-RAM like these parts:
    PC2700 256MB (PA3311U-1M25)
    PC2700 512MB (PA3312U-1M51)
    PC2700 1024MB (PA3313U-1M1G)
    Now its your choice. You can also google for the offers
    By the way: Visit the Toshiba Options & accessories site. There you will find compatible parts

Maybe you are looking for