Pc model only based OS installation wds/ mdt

Hello everybody,
Searched on the net but still confused about WDS/MDT and TS. Well, we have in our organization many hardware pc-types and many manufactures. I want WDS/ MDT to start the installation
of the Windows 7 x64 OS ONLY on Toshiba and HP models pc's and STOPs (Quits)
 the installation directly if the pc-model is different (= Dell or Fujitsu or Samsung or Acer for example) .
I want this condition to be on the start of the installation so that nothing changes on the "wrong models" (= The Dell or Fujitsu or Samsung or Acer).
My question is how and where, in which TS, can I accomplish this goal?
I have a WMI vbs file that checks the model type. But I do not know how and where to use it.
Thanks in advance!

When you perform a PXE boot on a computer and select a discover image, the Windows Deployment Services client performs the following actions:
The client downloads the boot image from the server and the image boots. At boot time, Setup.exe is invoked and it parses any command-line options that were passed to it. Setup sees that it is in Windows Deployment Services discovery mode and connects to
the specified server to download the install image.
Setup.exe (Autorun) is launched automatically by Windows PE (through the commands specified in WinPEshl.ini).
Setup.exe (Autorun) parses the command lines passed to it (at a minimum,
setup.exe /WDS /WDSDiscover, and optionally, setup.exe /WDS /WDSDiscover /WDSServer:MyWDSServer). Setup realizes that it should be in Windows Deployment Services mode. Autorun continues to run in the background (never showing UI) and
invokes regular Setup.exe with the command-line arguments as they are passed in.
Setup.exe detects that it is in Windows Deployment Services discovery mode. One of the following occurs:
If a server name was specified using the /WDSServer option, the Windows Deployment Services client contacts that server directly. (Skip to step 7.)
If /WDSServer was not specified, the client will initiate a PXE request by broadcasting a Dynamic Host Control Protocol (DHCP) discover packet with the PXE option (option tag 60 set to the string PXEClient) to destination port UDP 67. The
client waits for a response from a valid PXE server. The emulated PXE request sent by the Windows Deployment Services client adheres to the standards specified by the PXE specification (including using the specified response delay settings).
When a valid Windows Deployment Services server is located, the client sends a DHCP request packet to UDP port 4011 of the responding PXE server (in the case of static mode, the client sends the packet to the server specified with
/WDSServer). The client expects a valid response (DHCP acknowledgment signal, or ACK) from the PXE server.
The client connects to the Windows Deployment Services server by using the specified communication channel, and the normal installation steps continue.

Similar Messages

  • WDS & MDT 2012 Integration Questions: Do I need an install image on WDS if I'm multicasting from MDT

    I'm running WDS & MDT 2012 on Server 2012 for my deployment solution.  I have a few questions about what happens when you integrate WDS & MDT.
    Perhaps this is a simple question, but if WDS multicasts the installation image from MDT, do I need to have an image in the installation folder of WDS?  I have the "Enable multicasting" box checked whenever I update my deployment share
    Also, my server is running X64 architecture, so I have the x64 WAIK installed.  but I'm having issues editing the unattend.xml on my server because my images are all X86.  Keeping in mind that I already have the X64 WAIK installed, can i install
    the X86 WAIK tools on my server?

    Sorry, that's two questions you only get one... Just kidding...
    FOr MDT, you don't import the images into the WDS console, you just need to add a Multicast namespace.
    http://keithga.wordpress.com/2014/04/23/multicasting-with-mdt/
    AS for the unattend.xml edit issue, that is known:
    http://blogs.technet.com/b/deploymentguys/archive/2009/08/27/windows-7-waik-and-custom-images.aspx
    Keith Garner - Principal Consultant [owner] -
    http://DeploymentLive.com

  • Automate USER BASED PACKAGE installations in SCCM 2012

    Hi All,
    I want to automate the installation of software(in my case a user based package) from the Application Catalog.
    Here is just some general information:
    1. All software(Applications and Packages) deployed to Device Colllections will be published in Software Center
    2. All software(Applications and Packages) deployed to User Based Collections will be published in the Application Catalog
    3. Once software has been deployed from the Application Catalog, it is also available/visible in Software Centre .. this could be confusing for (scripted) test purposes!
    To Automate installations i tested the following (Powershell) methods:
    Methode 1 - Install Device Based Packages (This works)
    $SoftwareCenter = New-Object -ComObject UIResource.UIResourceMgr
    # to show applications
    $Application = $SoftwareCenter.GetAvailableApplications() | where {$_.name -like $APPNAME}
    # to install an application
    $SoftwareCenter.ExecuteProgram($Application.id, $Application.PackageId, $true)
    (once an User Based Package has been installed from the Application Catalog, it will be shown in the results of this method .. but initially it don't!!)
    Method 2 - Install Device based Applications (This works)
    Invoke-WmiMethod -Namespace root\ccm\clientsdk -Class CCM_Application -Name Install -ArgumentList 0,"xxAPP scope IDxx",$True,$False,1,1
    Method 3 - Install User based Applications
    Invoke-WmiMethod -Namespace root\ccm\clientsdk -Class CCM_Application -Name Install -ArgumentList 0,"xxAPP scope IDxx",$False,$False,1,1
    (once an User Based Application has been installed from the Application Catalog, this method can be used .. but initially it can't!!)
    Method 4 - Install User Based Packages (NOT WORKING)
    This solution is based on an (scripted) installation from the Application Catalog. Information can be found on the following sites:
    http://blogs.technet.com/b/configmgrteam/archive/2012/09/19/extending-the-application-catalog-in-system-center-2012-configuration-manager.aspx
    http://allthingsconfigmgr.wordpress.com/2012/10/02/application-catalog-uncovered/#more-284
    You can see the usable operations/methodes, by using the following URL in your SCCM 2012 environment:
    http://YOURSITE/CMApplicationCatalog/ApplicationViewService.asmx
    The method i tried for an installation part is 'installapplication', see example below:
    $service.Installapplication($appid, $deviceid, $null)
    This syntax is correct because it's giving a result that indicates the my command was correct(when i change the variables it produces an error), but that's it ... no application is installed.
    For the record: the operations/methods 'RequestApplicationForUser and GetApplications' are working fine.
    There is also log file 'ServicePortalWebService.log' on the Application Catalog Server in
    C:\Program Files\SMS_CCM\CMApplicationCatalogSvc\Logs, where i can see that Installation call is (correctly) be done.
    To be short:
    Is there anybody who can tell me how to automate (with Powershell) an USER BASED PACKAGE installation?
    With kind regards,
    Hayo Veenstra

    Thanks for your reaction.
    What i want is creating shortcuts in the startmenu of a user, that initiates a SCCM software installation. We also use this method for our SCCM 2007 environment by initating advertisments. I do not want a required user deployments, because when that user
    logs on on another machine (for a short time) .. all his/her software will be deployed. So i do not want to install unnescessary software .. only what a user initiates.
    Do you have other suggestions?
    I'm not sure about the shortcuts.  But, as for required deployments to users installing on all machines they log onto:  Not if you have User Device Affinity running for you.  You can set a requirement in the application to only install on a user's
    primary device.  Another option that we often deploy is to use App-V to deploy a virtual version of that app if the device they logged onto is not their primary.  When they log off, it goes away.  This is all done using User Device Affinity. 
    This is new in 2012. 

  • Will WDS MDT WDS keep everything?

    If I import a custom wim into WDS, then export to MDT, then export to a ZTI ISO...if I import the ISO into WDS will it keep everything that was customized and remain ZTI?
    Thanks

    Hi nthnu,
    "if I import the ISO into WDS will it keep everything that was customized and remain ZTI?"
    What is the main question here ?
    As far as I know ,the MDT is based on the WDS server.We can configured the iso image from the MDT and then import Boot WIM to WDS to deploy it through the WDS server .
    Here is a link for reference :
    Deploy Windows 7 The Easy Way: Using WDS, MDT and AIK - Step-By-Step Video
    http://blogs.technet.com/b/danstolts/archive/2010/03/11/deploy-windows-7-the-easy-way-using-wds-mdt-and-aik-step-by-step-video.aspx
    Best regards
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • 8.1 PXE via WDS, MDT, and ADK

    Hi, all:
    Looking for some help troubleshooting a PXE issue. Thus far, I have set up WDS, MDT 2013, and ADK 8.1 and can successfully capture/deploy a Windows 8.1 image by running the Lite Touch.vbs script from my deployment share. While deploying in this method isn't
    terrible, the goal is to ensure that it can be done via PXE. I had previously been able to successfully PXE boot Windows 7 machines with WDS, MDT 2012 Update 1, and ADK 8.0, but recently had to upgrade to roll out 8.1 images. Now I can't get the new 8.1 machines
    to boot via PXE. System in the example is prestaged in ADDS. Options 60 and 67 are unchecked on WDS server as DHCP and DNS are on another server.
    I've enabled logging in WDS in an effort to figure out where the PXE is failing, but it doesn't tell me much. Events only indicate that wdsnbp.com was downloaded via TFTP successfully. The machines attempting to boot say the same thing. I receive the following
    when booting:
    >> Start PXE over IPv4.
    Station IP address is 10.1.50.129
    Server IP address is 10.1.1.216
    NBP filename is boot\x64\wdsnbp.com
    NBP filesize is 30832 Bytes.
    Downloading NBP file...
    Succeed to download NBP file.
    System automatically reboots and goes straight into existing deployment of Windows. It's almost as if there's no boot image being referenced in the NBP file, but I've checked my Boot Images in WDS to ensure that an 8.1 image exists. I replaced the 8.1
    boot image just in case and the issue is the same.
    Any thoughts?  Your help is appreciated!

    Try a Win7 boot image.  Then choose the Win8.1 Install image you want when you get to that point.  The boot image only gets the machine running so you can choose the install image,...it doesn't have to be a 8.1 boot image to install 8.1  AFAIK

  • I just bought a new iMac and now I am trying to use it as a screen for my Macbook pro, but it don't have a Mini DisplayPort the new model only have Thunderbolt which my Macbook don't have. Is there any way to connect this two mac's anyway??

    I just bought a new iMac and now I amtrying to use it as a screen for my Macbook pro, but it don’t have a MiniDisplayPort the new model only have Thunderbolt which my Macbook don’t have. Isthere any way to connect this two mac’s anyway??

    Screen sharing setup in 10.5, 10.6 are described by the links by operating system.  10.7 is fairly similar to 10.6.
    And if both Macs have Firewire, you can setup a Firewire over IP network for fast communication between machines.  Note if you have two different Firewire ports a 6 pin to 9 pin Firewire cable does exist.  There are no Firewire to USB cables.

  • Field Read Only based on a value of another field

    Hello,
    In our project we´d like to have Field A made Read Only based on a value of Field B. Otherwise it should be R/W.
    Would this be possible in OnDemand ?
    Txs. a lot for any help.
    Antonio

    If your field is the key field that helps in dynamic layout then this is possible. If not try doing a validation on the field.

  • WDS/MDT - Drivers Inject

    Hi All,
    I have been using WDS/MDT/WSUS for a while now, and its in a good place apart from getting drivers to inject, the main problem being on-board LAN Drivers. In some of our builds we have add-in Intel NICs and these work perfect once you hit windows, but if you
    try and use the on-board drivers we always get a connection error:
    I have downloaded the drives required and tests it by installing the drivers separately, I used the same download to import into the out-of-box drivers. I updated the WIM image by regenerating it completely, and I also delete the old boot image from WDS
    and replaced it with the new one.
    I have even done comparisons on the FileRepository - with the drivers installed and without, and using the changes created from that to import the drivers/.inf files still without any luck.
    Information:
    Windows Server 2012
    MDT - 6.2.5019.0
    WDS - 6.2.9200.16384
    WSUS - 6.2.9200.16.384
    This is the last thing I really want to get working on this system/setup, any help would be much appreciated. To me it seems like the drivers are not importing correctly before windows is booted, which is then causing the TS to fail as it has no connection,
    has anyone else experienced this problem and actually fixed it?
    If you require anymore information, just ask and I will get them across asap - some items take longer than others due to removing Names as everything is under NDA. Please also when asking for more information state the location of files, will make life a
    lot easier and quicker for responses.
    Thanks

    Hi,
    this is the driver you need:
    Device Id
    Chip Description
    Vendor Id
    Vendor Name
    0x153B
    Intel Gigabit Ethernet Controller I217-V
    0x8086
    Intel Corporation
    This can be found by typing in the VEN_<ID> (which stands for Vendor) and DEV_<ID> (which stands for Device) at pcidatabase.com
    http://www.pcidatabase.com/search.php?device_search_str=153b&device_search.x=0&device_search.y=0&device_search=search+devices
    Cheers!
    If this post is helpful please click "Mark for answer", thanks! Kind regards

  • How Do I Save Then Import Cinema 4D MODELS ONLY Not Footage?

    The closest I've gotten is by highlighting all the things on Cinema 4D then clicking file>save selected objects.
    It saves as a c4d and when I insert it into After Effects its just a blank composition. I want the MODEL ONLY. NO FOOTAGE PLEASE.
    I have the plugins.
    Using After Effects cs6 and Cinema 4D R16,
    Please help!

    You are fundamentally not understanding how this works! The AEC import/ export does not deal with geometry, it merely deals with lights and Nulls because those have matching equivalents in AE. Geometry import only comes with Cineware in AE CC. As an alternative you can also use Element 3D. It supports Cinema 4D files.
    Mylenium

  • Make certain fields in the Account Detail Page Read-Only based on a Checkbo

    Hello
    We would like to make certain fields on the Account Detail Page Read-Only based on a checkbox that is on the Admin Account Detail Page. The fields we are looking to make read-only are Account Name, Primary Address, Phone Number.
    Thanks

    Brian,
    I think you'd need to use dynamic page layouts for this. Look at the Account type values, if you are already using it then replicate those values you have so if you have Business and Personal make it Business Read-only and Personal Read-only.
    When you are ready to lockdown those fields change the Account type from Business to Business Readonly and have the page layout for this screen with Account type, Name, Primary address and phone number as read only. You will a separate page layout for yourself so that Account Type stays as writable for you.
    You will need to check if you can have Account Name as read only as it is a required field.
    cheers
    Alex

  • BOM comparison based on Installation point of Subitems

    Hi All,
    Can I do a BOM comparison based on the installation position of the sub items?
    There is an option to select the installation point in "sort by install point" in the "further selection" screen. But it is not getting populated in when I execute CS14. Please advice. Thanks.

    Hi Mr.Pradeep Rao,
    Could you please give me your mail id.
    I will send you the screen shots, to compare the BOM's based on the sort by installation point.
    The system is not showing directly in CS14.
    <b><u>Procedure:</u></b> is once after doing the necessary settings under Further settings page,give the BOM details and VALID from date & click on Diff.Comparison.
    In the next page,I hope you must be knowing the BOM item for which sub item exists. and the item quantity must be same in both the BOM's.
    You will be able to see the symbol for that BOM item showing Similar component (Red Color Button).
    Just Double click on that symbol(Comparison result symbol) and the system pops upa new screen,there you brach out the node -Sub Items-Comparison By installation Point.Now you can see the items based on installation point.
    I hope in this way you will be able to see the items compared on installation point.
    <b>If this solves your problem ,Please reward maximum points and Close the thread as answered.</b>
    Thanks & Regards
    Mangal

  • ITunes to organize songs only based on 'Album'?

    I would like to organize my songs only based on 'Album' in iTunes. Right now, from preferences, it only organizing based on 'Artist & Album'.
    I would like to see iTunes copying all songs related to one Album even if Artist is same.
    I appreciate any tips on this?
    Thanks

    When you're in Cover Flow view, right click on the album cover, choose Change Sort, then select Album. That will put all your songs together by Album.
    I'd like to find out how to view only the songs in the Album on the window. I don't want to see all the songs in the library when I select a single album.
    Steve

  • Pacman only searches or installs from core

    Hi folks,
    I seem to have developed an odd problem. My pacman only searches or installs (or sees) packges from core. My pacman.conf has core, extra and community enabled, -Syu updates all 3 of these repositories but any searches or attempt to touch any packages other than core results in a not found error. E.g. extra/sdl was installed. I removed it using -Rd but now can't install it or find it in a search.
    [mongrol@scarce Downloads]$ sudo pacman -Ss sdl
    [mongrol@scarce Downloads]$ sudo pacman -S sdl
    sdl package not found, searching for group...
    error: 'sdl': not found in sync db
    [mongrol@scarce Downloads]$
    Any help much appreciated.

    Hmm, Tried that. It says it's done it but it hasn't really. Here's the debug output from a -Ss sdl.
    :: Synchronizing package databases...
    downloading core.db.tar.gz...
    downloading extra.db.tar.gz...
    downloading community.db.tar.gz...
    debug: config: attempting to read file /etc/pacman.conf
    debug: config: new section 'options'
    debug: config: HoldPkg: pacman
    debug: config: HoldPkg: glibc
    debug: config: SyncFirst: pacman
    debug: config: new section 'core'
    debug: setlibpaths() called
    debug: option 'cachedir' = /var/cache/pacman/pkg/
    debug: registering sync database 'core'
    debug: config: including /etc/pacman.d/mirrorlist
    debug: config: attempting to read file /etc/pacman.d/mirrorlist
    debug: adding new server URL to database 'core': ftp://mirror.aarnet.edu.au/pub/archlinux/core/os/i686
    debug: adding new server URL to database 'core': http://mirror.aarnet.edu.au/pub/archlinux/core/os/i686
    debug: adding new server URL to database 'core': ftp://ftp.iinet.net.au/pub/archlinux/core/os/i686
    debug: adding new server URL to database 'core': http://ftp.iinet.net.au/pub/archlinux/core/os/i686
    debug: adding new server URL to database 'core': ftp://mirror.internode.on.net/pub/archlinux/core/os/i686
    debug: adding new server URL to database 'core': http://mirror.internode.on.net/pub/archlinux/core/os/i686
    debug: adding new server URL to database 'core': ftp://mirror.pacific.net.au/linux/archlinux/core/os/i686
    debug: adding new server URL to database 'core': http://mirror.pacific.net.au/linux/archlinux/core/os/i686
    debug: config: finished parsing /etc/pacman.d/mirrorlist
    debug: config: new section 'extra'
    debug: registering sync database 'extra'
    debug: config: including /etc/pacman.d/mirrorlist
    debug: config: attempting to read file /etc/pacman.d/mirrorlist
    debug: adding new server URL to database 'extra': ftp://mirror.aarnet.edu.au/pub/archlinux/extra/os/i686
    debug: adding new server URL to database 'extra': http://mirror.aarnet.edu.au/pub/archlinux/extra/os/i686
    debug: adding new server URL to database 'extra': ftp://ftp.iinet.net.au/pub/archlinux/extra/os/i686
    debug: adding new server URL to database 'extra': http://ftp.iinet.net.au/pub/archlinux/extra/os/i686
    debug: adding new server URL to database 'extra': ftp://mirror.internode.on.net/pub/archlinux/extra/os/i686
    debug: adding new server URL to database 'extra': http://mirror.internode.on.net/pub/archlinux/extra/os/i686
    debug: adding new server URL to database 'extra': ftp://mirror.pacific.net.au/linux/archlinux/extra/os/i686
    debug: adding new server URL to database 'extra': http://mirror.pacific.net.au/linux/archlinux/extra/os/i686
    debug: config: finished parsing /etc/pacman.d/mirrorlist
    debug: config: new section 'community'
    debug: registering sync database 'community'
    debug: config: including /etc/pacman.d/mirrorlist
    debug: config: attempting to read file /etc/pacman.d/mirrorlist
    debug: adding new server URL to database 'community': ftp://mirror.aarnet.edu.au/pub/archlinux/community/os/i686
    debug: adding new server URL to database 'community': http://mirror.aarnet.edu.au/pub/archlinux/community/os/i686
    debug: adding new server URL to database 'community': ftp://ftp.iinet.net.au/pub/archlinux/community/os/i686
    debug: adding new server URL to database 'community': http://ftp.iinet.net.au/pub/archlinux/community/os/i686
    debug: adding new server URL to database 'community': ftp://mirror.internode.on.net/pub/archlinux/community/os/i686
    debug: adding new server URL to database 'community': http://mirror.internode.on.net/pub/archlinux/community/os/i686
    debug: adding new server URL to database 'community': ftp://mirror.pacific.net.au/linux/archlinux/community/os/i686
    debug: adding new server URL to database 'community': http://mirror.pacific.net.au/linux/archlinux/community/os/i686
    debug: config: finished parsing /etc/pacman.d/mirrorlist
    debug: config: finished parsing /etc/pacman.conf
    debug: registering local database
    debug: loading package cache for repository 'core'
    debug: warning: pkgcache is NULL for db 'core'
    debug: searching for target 'sdl'
    debug: loading package cache for repository 'extra'
    debug: warning: pkgcache is NULL for db 'extra'
    debug: searching for target 'sdl'
    debug: loading package cache for repository 'community'
    debug: warning: pkgcache is NULL for db 'community'
    debug: searching for target 'sdl'
    debug: unregistering database 'local'
    debug: unregistering database 'core'
    debug: freeing package cache for repository 'core'
    debug: unregistering database 'extra'
    debug: freeing package cache for repository 'extra'
    debug: unregistering database 'community'
    debug: freeing package cache for repository 'community'

  • Superdrive only read dvd installation

    Ok, Here is my problem.
    It started when the superdrive dont burn correctly the cd. I reinstall the Snow Leopard from the installation cd. And now only read the installation dvd. No more, no other dvds or cds, Sound its like cycled and never mount the cd. The dvds are clean and with really minor scratch. I have a macbook pro 15". Reinstalled, and the only dvd wants read is, the installation dvd. The dvds was original, (the other ones with try to read)

    Hi Nancy
    Open the System Preferences for CDs & DVDs and check to make sure that the When's are set to:
    When you insert a blank CD: Ask what to do
    When you insert a blank DVD: Ask what to do
    When you insert a music CD: Open iTunes
    When you insert a picture CD: Open iPhoto +(or other photo app.)+
    When you insert a Video DVD: Open DVD Player
    Dennis

  • Maximum number of PXE servers for WDS/MDT

    We have an imaging environment based on Windows Server 2012 R2 using WDS with MDT.
    For optimal speeds, each imaging station has a server dedicated to it, with its own Multicast address space.
    Due to the success and speed accomplished with 10 stations being served by 10 servers, we wanted to scale to 18 stations (so let's call it an even 20, as that was I was building for).
    We utilize the registry change to 
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\WDSServer\Providers\WDSPXE\Providers\BINLSVC]
    "AllowServerSelection"=dword:00000001
    as to allow us to choose which PXE server to boot to (as detailed here: http://www.stephan-schwarz.net/?p=58 )
    However, we have run into a problem- the menu to select a server caps out at 17 servers for older environments (Legacy BIOS) and 16 for UEFI. This was confirmed both within a BIOS and UEFI VMWare environment, as well as our primary deployment device (17
    for Legacy, 16 for UEFI). The devices are to be UEFI Secure Boot, so the cap for us is 16.
    Is there anywhere I can turn to increase this limit? I'm not going to be surprised if the answer is no.
    However, has anyone made a PXE loading page allowing a user to choose a particular server? I had built in the past such a menu using TFTP and Ghost, and I see this article on doing something similar for WDS, but I don't know if it can just point at any other
    PXE servers.
    Thanks for your time.

    Actually, with each WDS server with it's own Multicast IP range, we have seen great speeds from each server to each grouping of 30-ish machines, though of course "it could always be better!"
    As such, with 16 servers we can move 500+ machines an hour/hour-and-a-half. In fact, it's the drop to Unicast SMB that MDT does after the WIM transfer that slows down the process (as noted here as well as our own testing http://social.technet.microsoft.com/forums/windowsserver/en-US/73e398b5-75ab-4787-b230-6254de107084/wds-multicast-falls-back-to-unicast-after-copying-files-stage)
    We'll continue tweaking the technology and attempting to implement some segmentation via subnets/VLANs so we can have more capacity. Someday, I'll have to put it all together in a blog post.

Maybe you are looking for

  • No data in AWM Data Viewer

    Hi all, I am using Oracle 10G AWM for reporting purpose. I have created all required dimensions, measures. But when i view the data after maintaining it, it won't show any data but a blank Data Viewer. When I do view data for the respective dimension

  • Iphone 5 and my lighting charger is not connecting right

    I have tried different charger cords and they both don't work, if i wiggle it it will charge but if I move it a little it will not charge. Is there anything I can do or do I have to get a replacement?

  • Need to know which altec lansing speakers i have...

    Product name: HP Pavilion g6-1b54ca Notebook PC Serial number: 5CG1250FNX I blown off my speakers...i just need to know that which altec lasning speakers i have...that i can search on internet...please help...

  • Thumbnails don't refresh in Bridge afte change CS6

    I recently upgraded my camera and also upgraded camera RAW and since then having trouble and cannot locate fix anyone have this issue

  • Check-in: Communication Error

    Hi, the attached error message below happened when I checked in the activity in NWDI. "Activation failed: CBS Server Error: CBS failed to communicate with some other server( internal code: COMMUNICATION_ERROR)" Could anyone let me know the possible r