Windows Server 2008 R2 display "Network drives disconnect" with a red X

I wrote a script for using Group Policy to achieve a function where navigate to "Comupter Configuration"--"Windows Settings"--"Scripts (Startup/Shutdown)"--"Startup", then i put the script what is
for "network mapping" things into "Scripts", then i restart the target machines for updating policy, but it showed that there is a "red X" even though i can open this network path. how could the "red X" disappear?

Hi,
Thanks for your feedback.
Based on your description, I am not sure if it is due to the script. Maybe you can ask in the
MSDN forum to make sure that the script is correct.
In addition, I also suggest creating the mapped driver via Group Policy Preferences. For more detailed information, please refer to the links below:
Drive Maps Extension
Using Group Policy
Preferences to Map Drives Based on Group Membership
Best regards,
Susie

Similar Messages

  • HP Laserjet CP2025 Windows Server 2008 R2 Universal Printer Driver problem

    Is there support for Windows Server 2008 R2 for the CP2025n printer,  I've been trying to get it to work with a standard TCP port with the universal driver but no luck.
    Any ideas?

    I have Windows 2003 servers with the Universal PCL6 driver v5,4.  It printed slower then the previous version.  I manually changed the Device Settings, mainly the Monochrome / Color option.  This seemed to make the print process faster.

  • Windows Server 2008 - password protect network folders

    I was tasked to password protect a few folders that are being shared in the network.  The folders are stored in the server (that i have admin access) and anyone in the network have full access to the folders and the files inside those folders. The computers linked in the network have different OS - 3 running vista, 2 running xp and 1 windows server 2008.  Anybody in the office can use the computers without being prompted for a password (except the server) and the folders are accessible through any of those computers.
    The following are my questions:
    1. Is it possible to password protect folders shared in the network? If so, if someone wants to access those password protected folder through any of the computers connected to the network, will they be prompted to enter a password to be able to access it or the system will just say "access denied?" If so, please give detailed instructions on how to do it.
    2. If it is possible to password protect network folders, is it possible to put different passwords on each folders? If so please give detailed instructions on how to do it.
    3. If it is not possible to do any of the mentioned above through windows, is it possible with the use of a third-party software? If so, what are those third party software?

    Hi All,   First time on this forum and am finding it very interesting (sorry about the proposed as answer above.. hit the wrong key).
    I found this topic particularly interesting and am looking to do a similar thing but seemed to have gotten around it quite easily (if I am on the same lines as greggync777 that is).
    My problem is this I have a Home Theatre Network set up in my lounge to several locations around the house with around 8 gb of videos/music/pics etc, all works fine on connected pc's with WMC (all using Windows 7) and all is shared by family for entertainment.
    I also have a Seperate workstation where I do my work (video editing) which involves storing considerable amounts of footage and more importantly all the work files/folders all of which is confidential, at the moment is also on a seperate pc which also houses 8 hdd with around 6gb of ever growing video information.
    My point is that both these PC's ( HTPC and my WORKSTATION) are a bit too noisy despite having installed the best I can afford fans/Samsung eco green hdd's. My desire is to build a main super server running WHS 2008 (The size/Cooling/Noise etc is not a problem due to where it will be located). My main concern is Security with so many in the family having direct access to the Server so I want to restrict which files/folders they can subsequently access once there.  I want to be the only one to have access to my work from my PC and everyone else denied access.  I have set up a test rig running WHS08 and have set up access with several PC's using passwords for the server etc which was straightforward after creating a user account for them on whs08, therein laid the problem of then how to keep them from accessing my side of the server which is when I hit up on this thread after much searching. Following one of the suggestions above I went to the folder in question (in my case this will be a plus as all my work will be in one main folder with several thousand sub folders) to the security tab/permissions etc and firstly removed access to everyone except the server administrator. I then granted access only to one PC on the network - the one that is my workstation together with a password ( I meant to say upto this point everyone I had given access to the server could access my test folder), went back to my PC and was able to access as normal after entering the password. I then went to every other PC on the network (that has access to the Server) where I am pleased to say all denied me access to my folder. (my work pc by the way is running XPsp3). Not sure if it will work for Greggync777 or if it what he is looking to do but it did for me. I apologise also if I have rambled on a bit for my first thread.
    tks   Dave

  • Windows Server 2008 R2: Script create multi users with Windows Powershell

    Dear All,
    I have windows server 2008 R2 Active Directory Domain Service. I want to create multi users by using Windows PowerShell.
    Could you guide?
    BR,
    Khemarin Set
    [email protected]

    Dear Awinish,
    Your link very my solution. but i'm very basic with Powershell and I never have experience with it.
    This is the link original script that you are provide:
    function Select-FileDialog 
    param([string]$Title,[string]$Directory,[string]$Filter="CSV Files (*.csv)|*.csv")
    [System.Reflection.Assembly]::LoadWithPartialName("System.Windows.Forms") | Out-Null
    $objForm = New-Object System.Windows.Forms.OpenFileDialog
    $objForm.InitialDirectory = $Directory
    $objForm.Filter = $Filter
    $objForm.Title = $Title
    $objForm.ShowHelp = $true
    $Show = $objForm.ShowDialog()
    If ($Show -eq "OK")
    Return $objForm.FileName
    Else
    Exit
    $FileName = Select-FileDialog -Title "Import an CSV file" -Directory "C:"
    $ExchangeUsersOU = "OU=ExchangeUsers" # I don understand, I have all users are store in all-users ou
    $domain = [System.DirectoryServices.ActiveDirectory.Forest]::GetCurrentForest()
    $DomainDN = (([System.DirectoryServices.ActiveDirectory.Forest]::GetCurrentForest()).Domains | ? {$_.Name -eq $domain}).GetDirectoryEntry().distinguishedName
    $final = "LDAP://$DomainDN"
    $DomainPath = [ADSI]"$final"
    $cOU = $DomainPath.Create("OrganizationalUnit",$ExchangeUsersOU)
    $cOU.SetInfo()
    $UserInformation = Import-Csv $FileName
    $OUPath = "LDAP://$ExchangeUsersOU,$DomainDN" # I don understand
    $UserPath = [ADSI]"$OUPath"
    Write-Host "---------------------------------------------------------------"
    Write-Host "Creating LAB Users"
    Write-Host ""
    Write-Host "---------------------------------------------------------------"
    Foreach ($User in $UserInformation){
    $CN = $User.samAccountName
    $SN = $User.Surname
    $Given = $User.givenName
    $samAccountName = $User.samAccountName
    $Display = $User.DisplayName
    $LABUser = $UserPath.Create("User","CN=$CN")
    Write-Host "Creating User: $User.samAccountName"
    $LABUser.Put("samAccountName",$samAccountName)
    $LABUser.Put("sn",$SN)
    $LABUser.Put("givenName",$Given)
    $LABUser.Put("displayName",$Display)
    $LABUser.Put("mail","$samAccountName@$domain")
    $LABUser.Put("description", "Lab User - created via Script")
    $LABUser.Put("userPrincipalName","$samAccountName@$domain")
    $LABUser.SetInfo()
    $Pwrd = $User.Password
    $LABUser.psbase.invoke("setPassword",$Pwrd)
    $LABUser.psbase.invokeSet("AccountDisabled",$False)
    $LABUser.psbase.CommitChanges()
    Write-Host "Script Completed"
    If posible, could you help to correct script as: I have domain name: hello.net. All user are store in all-users ou.
    BR,
    Khemarin Set
    [email protected]

  • D20 Windows Server 2008 R2 Setup Problem / 1x SATA HD / 4x SATA SSD

    Hi all,
    I've got a D20 Mod. 4155 and want to use beside it's default SATA hard disk four SATA SSD disks for virtual machines. Windows Server 2008 R2 will be the OS with the use of it's Hyper-V functionality.
    I have aproblem with detecting the disks in OS setup. All 5 disks are visible in the BIOS setup of the Marvell Controller. it is possible to configure a RAID over the SSD etc., but I don't "see" any disk in OS setup. I tried to load additional drivers in the GUI part of the setup utility, but this didn't worked. I tried with the Marcell SAS driver and the Intel Matrix driver, both found at http://www-307.ibm.com/pc/support/site.wss/migr-72280.html.
    Any suggestions for PC BIOS / Marvell BIOS / OS setup configurations?
    Kind Regards, Chrischmi
    Lenovo ThinkStation D20 4155-D4G - 500 GB SATA HD - 4x G.Skill Phoenix Pro 2,5" 120 GB SATA SSD - Windows Server 2008 R2 Datacenter Hyper-V
    Lenovo ThinkPad T61p 6460-6YG - Windows 7 Ultimate x64
    Solved!
    Go to Solution.

    Hi all,
    I found the solution on myself. After detecting, that the default disk is a SATA disk (and not SAS), I had the idea to test it on the Intel SATA controller. It was possible to install the machine wit the disk attached to the Intel controller. After setup I went to Device Manager and installed the Marvell driver from Lenovo, switched the disk back to the Marvell controller and booted. Successful. Yeah!
    On my way to the solution i had another problem: In the GUI part of Windows setup, I got a 0x80300001 error with the Intel SATA driver from Lenovo. It was not possible to install windows Server on the SATA disk with reason0x80300001. very helpful message, Microsoft! ,-) I decided to use the default Microsoft driver for the Intel SATA controller after a reboot. Setup run well, but ended with a 0x80070017 error and problems copying some (unknown) files. The solution (found after some hours...) was to burn a new Windows Server setup DVD. I don't want to talk about this anymore...
    - Christoph
    Lenovo ThinkStation D20 4155-D4G - 500 GB SATA HD - 4x G.Skill Phoenix Pro 2,5" 120 GB SATA SSD - Windows Server 2008 R2 Datacenter Hyper-V
    Lenovo ThinkPad T61p 6460-6YG - Windows 7 Ultimate x64

  • You cannot shadow a session with multiple monitors enabled in Windows Server 2008 R2

    Searching through the forums (and according to KB2484290) it appears that there is no solution to this problem.  We are rolling out thin clients that are using dual monitors exclusively and we were very surprised to find out that we couldn't shadow
    sessions with dual monitors (which to us means that we can't shadow ANY sessions).  This now completely changes our approach to managing these devices. 
    We are running Windows Server 2008 R2 SP1 with Remote Desktop Services installed.  The thin clients are running Windows Embedded Standard 7 with the latest updates / RDP client. All steps have been followed to ensure that the apropriate settings and
    permissions have been set up to allow access into the session. 
    We tested by unchecking the RDP setting “use all my monitors for the remote session”, with that setting disabled shadowing worked
    Questions:
    1. KB2484290 is from Dec 2010 - It's now April 2012, is there a workaround / hotfix for this issue that will allow us to shadow sessions using the native Microsoft tools?
    2. Are there any recommended alternatives (software)?  Free/Paid - doesn't matter we just need something that will work.  I'm sure there are a few options out there but I am looking for suggestions for what people have used in the past that worked
    best for them to help us narrow down the choices.

    Hi,
    In my experience, so far, the workaround is Remote Assistance, Remote Assistance supports multiple monitors, and is the presently recommended solution if you need this functionality. Remote Assistance is a Windows Server Feature that must be explicitly installed
    on Windows Server 2008 R2; it is already installed with the client versions of the operating system.
    More information:
    Remote Assistance Overview
    http://technet.microsoft.com/en-us/library/cc753881.aspx
    Remote Assistance and Resulting Internet Communication in Windows Server 2008
    http://technet.microsoft.com/en-us/library/cc770456(v=ws.10).aspx
    As far as I know, there are some third-party tools can be used as the solution, such as Teamviewer, ISL Online, etc.
    Please Note: The third-party products discussed here are manufactured by companies that are independent of Microsoft. We make no warranty, implied or otherwise, regarding
    these products' performance or reliability.
    Regards,
    Dollar Wang
    Forum Support
    TechNet Subscriber Support
    If you are TechNet Subscription user and have any feedback on our support quality, please send your feedback
    here.
    Technology changes life……

  • Windows Server 2008 Standard: Multiple Concerns: Inconsistent group policy update on client PC's, frequent disconnections of map drives and remote connection

    Hi this is my first time to ask a question here in this community.
    I am a system administrator here at my work and we are having some issues on some servers that we handle. Network in our office is stable and we have determined it is not a problem on the connection.
    First issue - One of our domain controller consistently drops out on our Directory Server and saying it's unavailable.
    Second issue - Unable to ping hostname but IP address works fine. (Sometimes hostname is ok but very intermittent)
    Third issue - Since connection is unstable map drives causes to disconnect
    If someone can provide any assistance on this matter it would be a great help. If screenshots needed for proper assistance would be appreciative.
    Just to add that this only happen after a power failure last April of this month and a few weeks bluescreen started to show. It is a hazy version wasn't able to get any code that may lead to a hardware failure. 
    Now our main RDC.local is also affected so we are trying to isolate this issue and exhauted my brain since we cannot determine what causes it. Need external assistance just to give us a lead on where we can get this resolved.

    Hi Ryan,
    Before going further, would you please let me confirm something more? Thanks for your understanding.
    1. For first issue, would you please let me know OS edition information of the problematic DC? Was it Windows Server 2008 R2 or Windows Server 2012 or any other?
    à
    One of our domain controller consistently drops out on our Directory Server and saying it's unavailable.
    Would you please let me know the complete error message or provide a screenshot of it?
    (Please hide all protected or private information.) Meanwhile, please log on the problematic DC and check if find relevant events or errors in Event Viewer.
    2. For the second issue, it seems to be a DNS issue. Did you run
    ipconfig /flushdns and ipconfig /registerdns command? Any find? Meanwhile, please use
    ipconfig /all to display full TCP/IP configuration and check. Or you can post the
    ipconfig result here. It may help us to go further analyze. By the way, would you please let me know error message that you can get when be unable to ping via hostname?
    3.
    àSince connection is unstable map drives causes to disconnect
    May be a cause.
    If any update, please feel free to let me know.
    Hope this helps.
    Best regards,
    Justin Gu

  • Intermittant disconnection of Shared Drives on Windows 7 Client machines hosted in WIndows Server 2008 Standard Edition

    The environment - Windows Server 2008 Standard/Windows 7 32 bit Client machine.
    Share - It is not a DFS share.
    Antivirus - McAfee
    The issue - 1 user is unable to connect to a particular shared drive hosted from within the Windows Server 2008 Standard file server.  This drive is one of the multiple drives which are supposed to be connected to the user machine during logon using
    the logon script.  All the other drives mentioned in the logon script gets mapped fine but one particular drive does not.  The user uses a laptop and we have checked his connections while in LAN, Wireless, VPN.  Everything seems to be working
    fine apart from this one shared drive.  Rest of the users within that office gets the drive fine but just not this one user.  Since we are not domain admins so we do not have a visibility of the group policies linked to this particular drive and
    hence RSOP as well does not help.  We have not seen the user getting logged into the machine using a TEMP profile as well for us to ascertain that the issue may be with a TEMP profile logon. 
    Please note that the drive does get connected at times and at times the connection just drops off!  As an interim measure the local IT has created a batch file and given it to the user which maps the drive for the user. 
    Any help in resolving this long impending issue would be much appreciated!
    Suman

    Hi Suman,
    You could keep the session always active to workaround this issue. Please open Control Panel -> Administrative tools -> Local Security Policy -> Local Policy -> Security Options and set the value of the policy Microsoft Network Server:Amount
    of idle time required before suspending a session to 99999 and see how it works.
    This security setting determines the amount of continuous idle time that must pass in a Server Message Block (SMB) session before the session is suspended due to inactivity. Administrators can use this policy to control when a computer suspends an inactive
    SMB session. If client activity resumes, the session is automatically reestablished. For this policy setting, a value of 0 means to disconnect an idle session as quickly as is reasonably possible. The maximum value is 99999, which is 208 days; in effect, this
    value disables the policy.
    For more detailed information, please refer to the thread below:
    Loss of mapped drive, networked drive disconnects
    http://social.technet.microsoft.com/Forums/windows/en-US/c6da707b-5224-40f5-8d0e-e8985453221d/loss-of-mapped-drive-networked-drive-disconnects
    You could also refer to the article below to troubleshoot the issue:
    Mapped Drive Connection to Network Share May Be Lost
    http://support.microsoft.com/kb/297684
    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.

  • Unable to install lan realtek rtl8101 and network controller driver on windows server 2008

    Hi Guys,
    i am trying to install realtek rtl 8101 f amily driver and network controller driver on windows server 2008 but unable to install.
    Hp device Model.:- hp pavilion g4 1303au
    Model no.:- 5c03213jsh
    network controller Device ID: PCI\VEN_168C&DEV_0032&SUBSYS_1785103C&REV_01\4&211965BF&0&0020
    Name: PCI Device
    Device ID: PCI\VEN_10EC&DEV_5209&SUBSYS_3564103C&REV_01\4&34BC5A71&0&0030
    Name: SM Bus Controller
    Device ID: PCI\VEN_1022&DEV_780B&SUBSYS_3564103C&REV_13\3&2411E6FE&0&A0
    thanks,
    Amit Rai

    Hi:
    SMBus controller:
    Here is what I have done...I have zipped up and attached below under Attachments, the raw smbus controller driver files for you to unzip and manually install. 
    Download and unzip the file.
    Go to the device manager and click on the smbus controller needing drivers.  Click on the driver tab.  Click on Update Driver.
    Select the Browse my computer for driver software option and browse to the driver folder that you unzipped.
    Make sure the Include Subfolders box is checked and the driver should install.  Then reboot.
    Ethernet:  Download and install the 1st driver on the list.
    http://www.realtek.com.tw/downloads/downloadsView.aspx?Langid=1&PNid=14&PFid=7&Level=5&Conn=4&DownTy...
    Card reader (PCI dev.):  Download and install the first driver on the list.
    http://www.realtek.com.tw/downloads/downloadsView.aspx?Langid=1&PNid=15&PFid=25&Level=4&Conn=3&DownT...
    Wireless:  You will have to try the Vista driver for the Atheros wireless card...
    http://h20565.www2.hp.com/portal/site/hpsc/template.PAGE/public/psi/swdDetails/?sp4ts.oid=5060882&sp...
    Attachments:
    sp66185.zip ‏7 KB

  • Error Code 0x80070035 - The network path was not found, Windows Server 2008 SP2

    I have bee receiving following "error code 0x80070035 - The network path was not found" when trying to open file shares in both directions using Windows Server 2008 Standard SP2 at both ends. The issue is identical to the KB article KB958285, however the hotfix is only valid up to but not including SP2. One of the servers in question has moved several times between 2 subnets seperated by a VPN. I have tried changing settings in and around the local NIC/DNS Suffix and in the network connection sharing centre, but with no luck. Firewalls are turned off at both sites, and pings and AD queries are successful (one server is a DC). DNS is also working correctly at both sites. Any help/suggestions would be appreciated.
    Richard

    I thought I would add in another scenario, since this link came to the top of my list in the search engine.
    We are running 2008 R2 with SP1 (it happened without SP1 as well)
    We could not map using UNC (IP, FQDN, or netbios name).  We could ping access the other servers via other utils like event viewer and services.msc but just could not map.
    In our case it turned out to be a VMWARE issue but we still had to make a regedit change first
    You have to go to regedit HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\NetworkProvider\Order\
    And add LanmanWorkstation to Providerorder
    I found on a Citrix board that citrix has an issue with this as well
    If you're running VM  here is an additional step you should do as well
    When you upgrade VMware Tools installed with HGFS from ESX 3.x to ESX 4.x, the HGFS driver may not get uninstalled properly. In this case, the virtual machine's network Provider Order tab in Network Connections
    > Advanced > Advanced Settings displays incorrect information and the virtual machine may lose network connectivity.
    To avoid this issue, uninstall VMware Tools 3.x before installing VMware Tools 4.x.
    To workaround this issue, if you have already upgraded VMware Tools:
    Click Start >
    Run, type regedit, and click OK. The Registry Editor window opens.
    Navigate to
    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\NetworkProvider\Order\.
    Delete the reference to
    hgfs.
    Reboot the virtual machine.
    We found that if you strip out the HGFS, you do not have to reboot for the provider order tab to come back
    I hope that this saves people a lot of time.   I spent days researching this.
    This was the solution for me on 2008 R2 DC w/ Exchange.  I do not have VMWare installed but do have Hyper-V.  Thank you so much!

  • Windows 7 or Windows Server 2008 R2 domain join displays error "Changing the Primary Domain DNS name of this computer to "" failed...."

    Hi,
    Windows 7 or Windows Server 2008 R2 domain join displays error "Changing the Primary Domain DNS name of this computer to "" failed...."
    DC:windows Server 2008 R2
    Domain functional level:Windows Server 2003
    When Winxp join domain, have no this error message.
    I checked http://support.microsoft.com/kb/2018583?wa=wsignin1.0 does't work.
    There have 3 suggestion in this article:
    1.The "Disable NetBIOS over TCP/IP" checkbox has been disabled in the IPv4 properties of the computer being joined.
    Doesnt's work.
    2.Connectivity over UDP port 137 is blocked between client and the helper DC servicing the join operation in the target domain.
    On my DC, I run netstat -an, reslut as below:
     UDP    192.168.20.3:137       *:*
    3.The TCP/IPv4 protocol has been disabled so that the client being joined or the DC in the destination domain targeted by the LDAP BIND is running TCP/IPv6 only.
    We are not using IPV6.
    This server recently updated from Windows Server 2003 to Windows Server 2008 R2. Before upgrade, when Win7 and Win2008 join this domain, also have the same error message.
    Please help to check this issue.
    Thank you very much.
    BR
    Guo YingHui 

    Hi Guo Ying,
    I have faced this critical error which makes over-writes the host names in the domain when you join.
    For example: Already you had a host name called as PC.domain.com in the domain.com Domain.
    When you try to add the another host name called as PC in the domain.com Domain, it doesn't give you the duplicate name error on the network it does over-write the existing host name called as PC.domain.com & it will add the new host name into the domain.
    Host name which got over-written will get removed from the domain. I faced this issue in my project. My DPM host name got removed from the Domain & new host name got joined into the domain which halted my backups for one day.
    Final Resolution is as follows:
    You need to start the dns console on the DC & drop down the domain name.
    Select the _msdcs when you click on _msdcs it will show the Name Server's list on the right hand side.
    You need to add the Domain Naming Master under the _msdcs or add all the domain controllers which you had.
    After you add the Name server's try joining the PC OR Laptop to the domain which is successfully joins it.
    Regards
    Anand S
    Thanks & Regards Anand Sunka MCSA+CCNA+MCTS

  • Driver for Deskjet 1220c (Windows 7 x64 and Windows Server 2008 R2)

    Hi,
    I've got a Deskjet 1220c and have recently upgraded two machines; one to Windows 7 Ultimate x64 and the other to Windows Server 2008 R2.  Any idea where I can get printer drivers? 
    I'd like to try the Vista x64 drivers, though these were included on the Vista CD from MS, and not available as a separate download from HP (http://h10025.www1.hp.com/ewfrf/wc/document?lc=en&dlc=en&cc=us&docname=c00868762). 
    I'd be grateful for any suggestions.
    Thanks,
    Mt

    Hi
    I had this trobule too.  Below is the instructions to install driver.  Disconnect your printer. In printers select add printer.  Then click windows update (need internet) allow them to update and then select 1220c printer to install leaving as standard old port.  Once installed go into printer properites and update to USB port.
    Bingo it works!
    Refer to the below link for full instructions.
    http://h10025.www1.hp.com/ewfrf/wc/document?docname=c01796821&tmp_track_link=ot_recdoc/c01874792/en_...
    Good luck
    RB

  • Cannnot use 3TB hard drive to install Windows Server 2008 R2

    I am trying to install Windows 2008 R2 on a server with a 3TB HDD, but I can only create a 2TB partition on the hard drive, leaving around 800GB which I cannot even access. I can install Windows on the 2TB partition, but even after installation, I cannot
    physically access the remaining 800GB. When I right click on the 800GB unallocated partition in Storage\Disk Manager, I have no options to create a new partition. If I right-click on the existing 2TB partition, I have no option to extend it using the remaining
    800GB.
    Motherboard details:
    Asus Veriton S460
    Product Name: EG31M
    System BIOS: R01-C2
    BIOS Release Date: 11/27/08
    Can I do anything to use the remaining 800GB?
    Thanks.

    Link
    Known Issues/Limitations
    Because the transition to a single-disk capacity of greater than 2 TB has occurred fairly recently, Microsoft has investigated how
    Windows supports these large disks. The results reveal several issues that apply to all versions of Windows earlier than and including Windows 7 with Service Pack 1 and Windows Server 2008 R2 with Service Pack 1.
    To this point, the following incorrect behavior is known to occur when Windows handles single-disk storage capacity of greater than 2 TB:
    The numeric capacity beyond 2 TB overflows. This results in the system being able to address only the capacity beyond 2 TB. For example, on a 3 TB disk, the available capacity may be only 1 TB.
    The numeric capacity beyond 2 TB is truncated. This results in no more than 2 TB of addressable space. For example, on a 3 TB disk, the available capacity may be only 2 TB.
    The storage device is not detected correctly. In this case, it is not displayed in either the Device Manager or Disk Management windows.
    Many storage controller manufacturers offer updated drivers that provide support for storage capacities of more than 2 TB. Contact your
    storage controller manufacturer or OEM to determine what downloadable support is available for single-disk capacities that are greater than 2 TB.

  • Adobe Acrobat 9.41 Pro+ on Snow Leopard 10.6.5 + Network users (Windows server 2008) = CRASH!

    Adobe Acrobat 9.41 Pro will work “great” on the admin account, however through the active directory log on of network users, every user gets the long crash report upon opening the application.
    Permissions are set so “everyone” can gain access, however the crash issue is not a decent setting on the Mac environment.
    Will welcome any thoughts..comments… and suggestions.
    Thank you-

    OS: Snow Leopard 10.6.5
    Active Directory Setup: Windows Server 2008 - Log in for network users
    Adobe Acrobat: version crash 9.3 and 9.4.1
    Admin of the Mac computer can log in and use the Adobe Acrobat Professional software, however when a network user
    Tries to log on the computer and open the Adobe Acrobat 9.3 or 9.4 the software hangs....for 7-8 seconds then displays a crash report, and options are send to apple.
    Permissions on every Adobe Acrobat folder on the computer are set to read/write for every user of the program.
    Software Type: Using the DVD purchase with the Education program, and the serial number does accept, and download the software from the Adobe web page.
    Emma McFaul

  • T500 display adapter problem on Windows Server 2008

    Hello,
    I recently got T500 and if I understand this correctly, it comes with two display adapters,
    - ATI Mobility HD Radeon 3650
    - Intel Mobility 4 Series Express Chipset Family.
    I installed Windows Server 2008.
    Now my problem is that I can't install ATI Mobility HD Radeon 3650 driver but only able to installed Intel Mobility 4 series Express Chipset Family driver.  Funny thing is that I tried to install the ATI Catalyst Manager, but it's not installing.  I know it is not installing because when I right click on the desktop, I don't see an entry for "ATI Catalyst Manager" and if I go to C:\Program Files\ATI Technology folder, it is empty.
    My another problem (main) is the screen turns itself on/off several times and I get "display driver igfx stopped responding and has successfully recovered" error message, and then I see a "fuzzy screen" which requires me to forcefully shut the computer off (by pressing power button).
    I tried to install the driver manually on Device manager, but still no luck.
    Anyone had same problem and maybe have a solution?
    Thanks. 

    how did you install the drivers? lenovo-download drivers doesn't necessarily install themselves, but annoyingly merely extracts them to a folder.
    or, more simply, use system update to install all the drivers
    T400s - 2815RW1 + Win7 Ultimate
    Don't pm me for help! That's what the forum is for. Also, Google's nicer than me. Ask him.

Maybe you are looking for