Remove the secondary controller and tertiary high availability for each access point

I want to remove secondary and tertiary sector controller of high availability for each access point. I have more than 900 APs associated with a Version of the WLC 8510 8.0.121.0 software. What is the best/better way to remove secondary and tertiary controller?
Or I can create a model first. We use version 2.2

Hello

Easiest way:

Yes you can do this by using the first Cisco Infrastructure, you can create a Setup AP Lightweight model to specify the name of the PDC and the IP address and specify an empty value (choose the first empty option in the drop-down list) and 0.0.0.0 for the secondary and tertiary sector controllers.  Then you can apply this model to the AP, and she must remove (virgins all) values for these fields.

Long way:

Yes there is no clean way to remove it from the CLI. you need to manually remove each on the AP.

Concerning

Remember messages useful rates

Tags: Cisco Support

Similar Questions

  • How can I remove the microsoft account and use the address as one alias on another?

    So I have two microsoft accounts using gmail addresses, the first is the one who has all my data (throughout the onedrive, Skype, xbox, windows, etc.) and the second has nothing. I want to do is delete the second so that I can use the address as primary on the first alias (as is my most used gmail account). Is this possible?

    account 1: * e-mail address is removed from the privacy *.

    account 2: * e-mail address is removed from the privacy *.

    Hi Dan,.

    Thanks for posting in the Microsoft Community.

    From the description, it seems that you want to remove one of the two Microsoft accounts.

    Once you remove the secondary account from Microsoft, you can use the primary address, but you can go as an alias. 

    To remove a Microsoft account, you can see the Microsoft article and check if that helps:

    http://Windows.Microsoft.com/en-us/Windows-8/remove-account

    Note: Before deleting an account Microsoft make a backup of data.

    You can also consult the Microsoft account and check if it helps:

    http://Windows.Microsoft.com/en-us/Windows-Live/account-close-account

    To remove the Gmail account, you can green light, making the Gmail Web site.

    Just reply to the State of the question.

    Thank you.

  • I currently store my pictures on and an external hard drive.  Lightroom 6 was not able to find the picture momentarily files.  I inserted an external Flash DRIVE after removing the hard drive and the computer renamed the stick with the same drive letter t

    Redesign existing external hard disks and still 6 Lightroom able to find existing photos.

    I currently store my pictures on and an external hard drive.  Lightroom 6 was not able to find the picture momentarily files.  I inserted an external Flash DRIVE after removing the hard drive and the computer renamed the stick with the same drive letter that has been designated by Lightroom to store my photos.  I could go into my Windows 10 and reset the player to the letter that Lightroom has given at the beginning of the external hard drive.   However, I know this can happen again, if I connect any stick USD or another device, while the external hard drive is not connected to my laptop.   I found the information that I can do the new designation of the final drive by choosing a letter it is 1/2 way or higher in the alphabet.   I would like to turn an external hard drive on a strong letter, warns we hope this previous problem.   My question is, if I already have a lot of pictures on this external hardrive with the designation of the current drive, how it becomes a higher letter and have 6 Lightroom recognizes files, now under the new designation of drive letter without having to go to each photo individually and manually force Lightroom 6 find each photo.  It would take more time than I'd like to lose.  Is there a way to get just 6 Lightroom to recognize the new disk designation has changed and is able to find all of the existing files?

    I have read the ADOBE LightRoom 6 manual and seem not to be able to find anything on how to do it.

    Any help would be welcome.

    Thank you!

    So in Windows, you can select a drive like q letter (or any other letter you want only towards the end of the alphabet)

    Then in Lightroom, you can reconnect to the photos on q: the following instructions (see specifically 4 Figure and related text)

    Adobe Lightroom - find moved or missing folders and files

  • Need to remove the name clause and the storage of schema DDL script.

    Try to remove the clause name and storage schema of the DDL script.


    Example:

    "
    CREATE TABLE 'CPDFP '. "" PS_PT_LN_TA_SRVC_BRANCH_DTLS ".
    (ACTIVATE THE "SL_NO" NUMBER NOT NULL,)
    ACTIVATE THE "SESSION_ID" NUMBER NOT NULL,
    ACTIVATE THE "COMPANY_CODE" VARCHAR2 (15) NOT NULL,
    ACTIVATE THE "SRVC_BRANCH_CODE" VARCHAR2 (6) NOT NULL,
    ENABLE 'DEALER_CODE' VARCHAR2 (15) NOT NULL
    ) CREATION OF IMMEDIATE SEGMENT
    PCTFREE, PCTUSED, INITRANS 40 10 1 MAXTRANS 255
    REGISTRATION OF NOCOMPRESS
    STORAGE (INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645)
    PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1
    USER_TABLES FLASH_CACHE, CELL_FLASH_CACHE DEFAULT DEFAULT)
    "TABLESPACE"CPDFP"


    On top of the query, I have to delete the name and storage schema clause...


    Can anyone suggest pls as how to do it...

    I used script below to get the ddl of the tables and I have to remove the schema name and terms of storage so pls help...

    SELECT DBMS_METADATA. GET_DDL ('TABLE', u.table_name)
    FROM USER_TABLES;


    Rgds,
    Nitesh.
    DROP TABLE t;
    create table t as select * from all_objects where 1=0;
    
    begin
    dbms_metadata.set_transform_param( DBMS_METADATA.SESSION_TRANSFORM, 'SEGMENT_ATTRIBUTES', false );
    dbms_metadata.set_transform_param( DBMS_METADATA.SESSION_TRANSFORM, 'SQLTERMINATOR', TRUE );
    end;
    /
    
    SELECT REPLACE(
      DBMS_METADATA.GET_DDL( 'TABLE', 'T'),
      '"'||USER||'".',
      ''
    )
    from dual;
    
     CREATE TABLE "T"
       (     "OWNER" VARCHAR2(30) NOT NULL ENABLE,
         "OBJECT_NAME" VARCHAR2(30) NOT NULL ENABLE,
         "SUBOBJECT_NAME" VARCHAR2(30),
         "OBJECT_ID" NUMBER NOT NULL ENABLE,
         "DATA_OBJECT_ID" NUMBER,
         "OBJECT_TYPE" VARCHAR2(19),
         "CREATED" DATE NOT NULL ENABLE,
         "LAST_DDL_TIME" DATE NOT NULL ENABLE,
         "TIMESTAMP" VARCHAR2(19),
         "STATUS" VARCHAR2(7),
         "TEMPORARY" VARCHAR2(1),
         "GENERATED" VARCHAR2(1),
         "SECONDARY" VARCHAR2(1),
         "NAMESPACE" NUMBER NOT NULL ENABLE,
         "EDITION_NAME" VARCHAR2(30)
       ) ;
    

    For instructions CREATE TABLE for all the tables in your schema:

    begin
    dbms_metadata.set_transform_param( DBMS_METADATA.SESSION_TRANSFORM, 'SEGMENT_ATTRIBUTES', false );
    dbms_metadata.set_transform_param( DBMS_METADATA.SESSION_TRANSFORM, 'SQLTERMINATOR', TRUE );
    end;
    /
    SELECT REPLACE(
      EXTRACTVALUE(
        XMLTYPE(
          DBMS_XMLGEN.GETXML(
            'SELECT DBMS_METADATA.GET_DDL( ''TABLE'', '''||TABLE_NAME||''' ) SCR FROM DUAL'
          )
        )
        , '/ROWSET/ROW/SCR'
      ),
      '"'||USER||'".',
      ''
    )
    OBJECT_SCRIPT
    FROM USER_TABLES;
    

    I post out ;)

    Published by: Ashton stew on March 7, 2013 11:47

  • Remove the SCSI controller change question of VMWare

    Hello

    I used PowerCLI for create a virtual machine and replace it with instead of buslogic SCSI LSILogic controller. I did it by using the following code:

    function updateSCSIController ($vmName, $ctrlName)

    {

    $vm = get - VM $vmName | Get-View

    1. Get the controller and devices on

    $vm. Config.Hardware.Device | where {$_.} DeviceInfo.Label - eq $ctrlName} | % {

    $oldCtrl = $_

    $ctrlKey = $_. Key

    $devs = @)

    $_. Device | % {

    $devKey = $_

    $vm. Config.Hardware.Device | where {$_.} Key - eq $devKey} | % {

    $devs += $_

    }

    }

    }

    1. Create the specification for the device changes

    $bootDelay = 10000

    $spec = new-Object VMware.Vim.VirtualMachineConfigSpec

    $spec. BootOptions = New-Object VMware.Vim.VirtualMachineBootOptions

    $spec. BootOptions.BootDelay = $bootDelay

    1. Remove the old controller

    $old = new-Object VMware.Vim.VirtualDeviceConfigSpec

    $old.device = $oldCtrl

    $old.operation = 'delete '.

    $spec. DeviceChange += $old

    1. Update the devices connected to the controller

    $devs | % {

    $dev = new-Object VMware.Vim.VirtualDeviceConfigSpec

    $dev.device = $_

    $dev.device.ControllerKey = - 100

    $dev.operation = "Edit."

    $spec. DeviceChange += $dev

    }

    1. Add the new controller

    $new = new-Object VMware.Vim.VirtualDeviceConfigSpec

    $new. Device = New-Object VMware.Vim.VirtualLsiLogicController

    $new. Device.Key = - 100

    $new. Device.ControllerKey = $oldCtrl.ControllerKey

    $new. Device.UnitNumber = $oldCtrl.UnitNumber

    $new.operation = 'Add '.

    $spec. DeviceChange += $new

    $vm. ReconfigVM ($spec)

    }

    However when I try to start the virtual machine Via code, it gives me an error saying that the virtual machine has questions to be decided.

    This is the question asked by VMWare:

    sg.disk.AdapterMismatch: the disk attached to the node SCSI0:0 has been created for the Buslogic SCSI adapter but SCSI0 Virtual Machine device is a SCSI LSI Logic card.

    VMware ESX Server can change the free disc adapter type. Attention of the user, if a guest operating system is installed on the drive, it is perhaps not able to start.

    Do you think Vmware ESX Server to change the type of adapter for SCSI0:0 disk

    This issue can be removed through PowerCLI?

    This is the part of code that fails

    updateSCSIController - vmName $name - ctrlName "SCSI controller 0.

    Start-VM - $vm VM - confirm: $false

    $vm | Get-CDDrive. Game-CDDrive-connected: $true - confirm: $false

    I don't know if you can remove the question, but you can respond with the Set-VMQuestion cmdlet.

    ____________

    Blog: LucD notes

    Twitter: lucd22

  • I downloaded Firefox 5 and discovered that it disabled my McAfee SiteAdvisor of incompatibility becauce. How do I remove the Firefox 5 and reload my old Firefox 4, so I can reactivate the SiteAdvisor.

    I downloaded Firefox 5 and discovered that it disabled my McAfee SiteAdvisor as inconsistent. No compatible version of the SiteAdvisor has been found. How do I remove the Firefox-5 and reload my old Firefox 4 so I can reactivate the SiteAdvisor?

                          Thank you
    

    McAfee Site Advisor 3.3.1 expansion was the number 2 cause accidents in one of the versions beta Firefox 5.0 and Mozilla Blocklisted it. This extension is disabled in Firefox 5, Firefox 6.0beta and Firefox 7.0alpha versions. McAfee is working on a new version of re-written extension of the Site Advisor to solve their problems - ETA is mid to late July.

    https://Bugzilla.Mozilla.org/show_bug.cgi?id=660111

    Thanks to the-edmeister

  • Problems with the Ethernet controller and PCI Satellite L30-10 X device driver

    HelloW!

    Sorry for my bad English, I'm from the Russia.
    A few days ago, I bought Satellite L30 - 10 X with W Vista on board. In my opinion, that this OS does ' t very good on this computer, so I install W XP.

    I have some problems with drivers. At first, I don't know which model I have: PSL30 or PSL33? I have download all the drivers for the two models. But after installation, computer doen't find the drivers for the Ethernet controller and PCI device...

    Hello

    Satellite L30-10 X belongs to the series of PSL33E. This number located on the label on the bottom of the device!

    You must choose this number in the form of driver download for XP compatible drivers.
    I put t know why you are not able to install the LAN driver. I have the same laptop with Vista and I've install the XP and all the drivers will work perfectly.

    I assume that you have installed the drivers in the wrong order. Please take look in the Toshiba installation instructions txt file. In this order, install the driver! This is important.

    I think that you should install XP again to ensure that the registry clean, then download and install the XP drivers compatible as mentioned in the installation instructions file.

    Good luck

  • Satellite A30 - 504 - how to remove the old HDD and new mount?

    Hello

    I have problem with my laptop satellite. After the turn on I've got Announces s.m.a.r.t. disk is damaged.

    I do not have it is why I do not know how to remove the old HDD and replace the new statement.
    I will be grateful for the help.

    Hello

    Looking first for similar discussions in this forum? I guess that you didn t ;)
    The advanced search option is very useful and you can search for single yarn that could help you.

    I found this:
    http://forums.computers.Toshiba-Europe.com/forums/thread.jspa?threadID=12526&MessageID=45688

    and this

    http://forums.computers.Toshiba-Europe.com/forums/thread.jspa?threadID=12547&MessageID=45752

    It seems that the hard drive on your A30 is in the optical drive, and you must remove all first the STRANGE before you get access to the HARD drive.

    Best regards

  • When I select emails in Windows Live Hotmail, I want to remove the delete button and all the other buttons in the same row do not work.

    When I select emails I want to remove the delete button and all the other buttons in the same row do not work. This not only with hotmail, it seems to be with other applications, including on this page at the top where you have "Home, office, int explore" etc...  It happens to be in this part of the page, which can make? I ran anti mailware, anti-spyware and Windows Security Essentials found nothing and they all date please help

    original title: send probs

    Hi cooljae,

     
     
    The question you have posted is related to Windows Live hotmail and would be better suited to the Windows Live community. Please visit the link below to find a community that will provide the best support.
  • I have more than 5000 messages in my windows mail inbox. Is there a faster way to remove several emails then hold down the ctrl key and click on individually on each e-mail?

    removal of several emails

    I have more than 5000 messages in my windows mail inbox.  Y at - it a faster way to delete several emails then hold the ctrl key and click on individually on each e-mail

    Yes.  Click on the email at the top of the page and highlight the bottom and shift, click.  Then delete the whole thing.

  • How can I remove the user name and the image of Windows XP new Start Menu

    Two questions:

    1. How can I delete the user name and the image of Windows XP new start; and

    2. my computer keeps asking me to press the F1 key to start Windows.  How to skip this part?

    Thank you.

    Hello

    The image of user account can be removed by disabling the Welcome screen. Or, by opting for the classic Windows theme. Follow the method described in this article, if you want to remove the user name and the picture in the Start Menu, without disabling the Welcome screen and Windows XP theme.

    For those who want to delete the user name and the image of user account from the Start Menu, in order to have a blue white Panel at the top, try this:

    Registry warning
    Important: This section, method, or task contains steps that tell you how to modify the registry. However, serious problems can occur if you modify the registry incorrectly. Therefore, make sure that you proceed with caution. For added protection, back up the registry before you edit it. Then you can restore the registry if a problem occurs. For more information about how to back up and restore the registry, click on the number below to view the article in the Microsoft Knowledge Base:

    How to back up and restore the registry in Windows
    http://support.Microsoft.com/kb/322756/

    Step 1:

    a. start Windows Explorer and go to this folder:
     
    C:\Documents and Settings\All Users\Application Data\Microsoft account images

    b. in this folder, rename the BMP file that corresponds to your user account.
     
    (For example, if your user name is Robert, rename Robert.bmp to old_Robert.bmp)

    c. then rename the following folder:

    C:\Documents and Settings\All Users\Application Data\Microsoft account Pictures\Default pictures
     
    to something else, for example,.
     
    C:\Documents and Settings\All Users\Application Data\Microsoft account Pictures\No_Default images.

    Step 2:
     
    To remove the user name, follow these steps

    a. Click Start, click "RUN" and type "regedit.exe" and navigate to this key:
     
    HKEY_CURRENT_USER-Software-Windows Microsoft\------CurrentVersion-policies-Explorer

    b. in the right pane, the value NoUserNameInStartMenu-value data 1.

    c. close Regedit.exe and restart Windows.

    You'll find yourself with a blue area at the top of the Start Menu.

    Regarding the pressing 'F1' to start Windows, you have made no changes or was there a system crash after which the problem started?

    You may need to change the boot sequence in the BIOS to the default settings. I recommend you contact your PC vendor for this.

    Warning of the BIOS:
    BIOS change / semiconductor (CMOS) to complementary metal oxide settings can cause serious problems that may prevent your computer from starting properly. Microsoft cannot guarantee that problems resulting from the configuration of the BIOS/CMOS settings can be solved. Changes to settings are at your own risk.

  • How to restore the multimedia controller and multimedia video controller to the system?

    How to restore the multimedia controller and multimedia video controller to the system? These items are indicated with yellow exclamation point in the conflict. How to solve these elements to correct the situation?

    Scan your computer with Speccy, Pc Wizart or SIW software and download the driver from manifacturied of the material.

  • XP Pro\XP Setup dual boot - want to remove the configuration option and go straight to the Pro

    Used my laptop (Fujitsu Simens Amilo Pi 1505/XP Pro) to install XP Home on a USB connected the SATA drive.
    SFSG.
    Now, my laptop keeps asking me if I want to boot into either Pro or Setup, with the installer has highlighted.

    Q. How can I remove the Configuration option and leave Pro as default boot?

    Thanks in advance.

    Open your boot.ini file (root partition C :), you should see something like the following:)

    [boot loader]
    timeout = 30
    default = multi (0) disk (0) rdisk (0) partition (1) \WINDOWS
    [operating systems]
    "multi (0) disk (0) rdisk (0) partition (1) \WINDOWS="Windows XP "/ fastdetect
    "multi (0) disk (0) rdisk (1) partition (1) \WINDOWS="Setup "/ fastdetect

    Remove the entry (the entire line) that has the word "Setup" in it, then you now have the following text:

    [boot loader]
    Timeout = 0
    default = multi (0) disk (0) rdisk (0) partition (1) \WINDOWS
    [operating systems]
    "multi (0) disk (0) rdisk (0) partition (1) \WINDOWS="Windowq XP "/ fastdetect

    -Alternative-

    Start/Run/msconfig (this open the System Configuration utility.
    Select the BOOT. INI tab
    Click on the button "check all boot paths".

    If Msconfig detects a path not valid (you have stated that you have two)
    you will be asked to remove the invalid path.

    J W Stuart: http://www.pagestart.com

  • remove the administrator name and password

    cannot update or download programs. pop up States 'type admin name'... but the area type in 'GRAYED OUT' help!

    If you had only an administrative user account and it is him that you damaged, all is not lost. You want to allow the built-in Administrator and create a new administrative user by general recommendations for the establishment of user accounts in Vista that I will give you at the end of this post.

    All this requires a certain level of computer skills. You know better and that take the machine to a competent local computer tech (not a type of BigComputerStore/GeekSquad place) is the best solution for you.

    If you have an installation of Vista DVD (not a recovery DVDs), you can start the system with it. Select the default language, then select "repair your computer". Then select "Command Prompt". At the command prompt, type:

    NET user administrator / Active: Yes [press Enter]

    [Note: do not enter the brackets!]

    Remove the installation DVD and restart the computer. Now, you will be able to log on to the built-in Administrator account.

    If you do not have a Vista installation DVD (only have a recovery disk), the computer mftr. may have given you the option to repair Vista (not a system recovery!) system in the diagnostic menu. This menu of diagnosis is the same one where you can choose Safe Mode. Get to this menu by repeatedly pressing the F8 key as the computer starts. If you do not have this option, you can make a bootable Vista file repair DVD in this link:

    http://NeoSmart.net/blog/2008/Windows-Vista-recovery-disc-download/

    Note: All the Neosmart recovery disk downloads are torrent files. There is a good explanation of the torrent on the site Web of Neosmart files. You will need a torrent as muTorrent client to get the files. Torrent client will download the .iso file with which to create the bootable DVD. You will need to use third-party burning software such as Nero, Roxio or the free ImgBurn (http://www.imgburn.com ) to burn the image .iso image file, not in the form of data.

    Once you have fixed things, log on to the additional administrative account you will be made by the suggestions below and disable the administrator account integrated yet for security reasons:

    Start Orb > Search box > type: cmd
    When cmd appears in the above results, right-click and choose "Run as Administrator" [OK]. Now, you will get the command prompt. At the command prompt, type:

    NET user administrator / active: No. [Enter]

    Exit the command prompt.

    General recommendations for creating users in Vista:

    You absolutely don't want to have only one user account. As XP and all the other modern operating systems, Vista is a multi-user system with integrated system of accounts as default Administrator and comments. These accounts should be left alone because they are part of the structure of the operating system.

    In particular, you do not want one account user with administrative privileges on Vista because the administrator account integrated (normally only used in emergencies) is disabled by default. If you use as an administrator for your daily work, and this account is corrupt, things will be difficult.  It is not impossible to activate the built-in administrator to rescue things, but there may be more that you want to do. Better not to put you in a bad situation at first.

    The user account that is for your daily work must be a Standard user, with the extra administrative user (call it something like 'CompAdmin' or 'Tech' or similar) only it for elevation purposes. As a user Standard is recommended for security reasons and will help protect your computer against infections. After you have created "CompAdmin", connect to it and change your normal user account Standard. Then log on to your regular account.

    If you want to go directly to the desktop and ignore the Welcome screen with the icons of the user accounts, you can do this:

    Start Orb > Search box > type: netplwiz [Enter]
    Click continue (or provide an administrator password) when you are prompted by UAC

    Uncheck "users must enter a user name and password to use this computer". Select a user account to connect automatically by clicking on the account you want to highlight and press OK. Enter the password for this user account (when it exists) when you are prompted. Leave blank if there is no password (null). MS - MVP - Elephant Boy computers - don't panic!

  • I would like to know if there is any way I can remove the 32-bit and keep the 64-bit without harming my computer

    I ran windows 7 installation on my computer using DVD who had 32 and 64-bit data and for that I currently have 32-bit and 64-bit installed in my computer. So I would like to know if there is any way I can remove the 32 bit and keep the 64 bits without harming my computer or stored data because now both bits is eating space on my C drive/partition!

    OT:

    Windows

    Why do you think you have "32-bit and 64-bit" versions of Windows 7 installed?

    If you installed the 64-bit version (which you will need if your computer has more than 4 GB of RAM and you want to use all of this RAM), you can see a few references to 32-bit architecture.  The 64 bit version of Windows needs these files in order to run software that is designed for 32-bit architecture.

    Perhaps the most obvious instance is the presence of the following two directories:

    C:\Program Files and C:\Program Files (x 86).  It is normal for both of these directories present in a 64-bit system.

    Maybe this will help--> 32-bit and 64-bit Windows: frequently asked questions

Maybe you are looking for