How I rooted my Arc S and removed apps I don't need

WARNING: Here be dragons.  I don't work for SE but was surprised that my Arc S came with some apps that you cannot remove without rooting your device.  Seeing as internal memory space is already a bit limited I decided to root so I could run the wonderful Titanium Backup app and remove the stuff I had no interest in.  I'm posting this in case others wish to do the same but I accept no liability if you remove something important and your phone crashes or won't boot.  If you do screw it up then you should be able to use the PC Companion tool to restore the stock image.
FWIW I have an Xperia Arc S running the .42 firmware image.
Root your phone using the Xperia 2011 Easy Rooting Toolkit v3.0 (zergRush Exploit).  Full details can be found here: http://forum.xda-developers.com/showthread.php?t=1320350  It's very easy and happens so quickly you'll wonder if it did anything at all.
After restarting your device you can check it's rooted by seeing if you now have Superuser and Terminal Emulator apps in your app drawer.
Next download Titanium Backup from the Market.  There is a free version available.
Fire up Titanium Backup and tap the Backup/Restore button at the top of the screen.  You will be greeted with a long list of apps.  To remove an app simply tap it and choose Un-install but I urge you to use the Backup option first to back it up to your SD card!.  Here is the list of apps that I removed from my phone:
Adobe Flash (I don't bother with web sites that require Flash)
Adobe Reader (reading PDFs on my device isn't something I do)
Anonymous Usage Stats (I don't need to send stuff to SE)
Chinese Keyboard (I'm not Chinese)
Crash Monitor (phone is fine without it)
Data Monitor (I use a separate O2 UK app for monitoring data)
devicemonitor (phone is fine without it)
Email (I use gmail exclusively)
FOTA Kill (sounds like something the CIA want on your phone *cough*)
Friends games & applications (I'd really rather not know)
Friends music & videos (ack, a friend of mine posts a 100 YouTube videos on FaceBook a day - drives me nuts)
FUN&downloads (if you say so!)
Home screen tips (a widget that gives you Android tips)
Lets Golf (no, let's not)
Magic Smoke Wallpapers (goodbye battery)
Music Visualization Wallpapers (goodbye battery)
OfficeSuite (I use Google Docs instead)
POBox Touch (something to do with the Japanese keyboard)
QC SEMC Service (some quality control app?  Removing it hasn't done any harm)
R2R Client (Ready To Run - not sure what it is but phone is fine without it)
Retail Demo (I don't work in a phone shop)
Sakura (Chinese keyboard skin)
SecureClockService (this might be DRM related - which I avoid like the plague - and removing it has done me no harm)
Setup guide (I'm cool with not having this)
SIM Toolkit (I don't even have an icon for this anyway)
Sony Ericsson Sync (deprecated by Sony anyway)
Sony Ericsson Sync client wizard (ditto)
Street View (never use it)
Support (I use this forum!)
Talk (I hate Google Talk as it can drain your battery if you don't disable it)
TrackID (I use Shazam)
Update center (removing this will disable OTA updates but I use PC Companion for updates)
Wisepilot (I use Google Maps)
Woody (Chinese Keyboard skin)
Xperia Hot Shots (No thanks)
Your mileage may vary but I went from 320MB or storage to 420MB.  Any my device feels snappier and I bet my battery life is better without running extra services.
There is a more comprehensive list to be found here: http://forum.xda-developers.com/showthread.php?t=1089470
Exercise caution and if you're not sure then you can use the Freeze option in Titanium Backup to stop the app from running without deleting it.
REMEMBER TO BACK THESE APPS UP BEFORE YOU USE THE UN-INSTALL OPTION!

Hello
I rooted my Sony Ericsson Arc S by following your excellent and easy to understand instuctions in order to remove some of the unwanted crap that came preloaded on the phone and in order to install the rooted version of Avast antivirus/antitheft app.
Everything has worked perfectly well for the last few months since doing this however now I am unable to update the phone via the sony ericsson update service.
Please advise
Cheers
Ian

Similar Messages

  • How do I do to add and remove Shape3D objects dynamically from TransfGroup?

    Hi, everyone,
    How do I do to add and remove Shape3D objects dynamically from TransformGroup?
    I have added two Shape3D objects in the TransformGroup and I wanted to remove one of it to add another. But, the following exception occurs when I try to use �removeChild� :
    �Exception in thread "AWT-EventQueue-0" javax.media.j3d.RestrictedAccessException: Group: only a BranchGroup node may be removed at javax.media.j3d.Group.removeChild(Group.java:345)�.
    Why can I add Shape3D objects and I can�t remove them? Do I need to add Shape3D object in the BranchGroup and work only with the BranchGroup? If I do, I think this isn�t a good solution for the scene graph, because for each Shape3D object I will always have to use an associated BranchGroup.
    Below, following the code:
    // The constructor �
    Shape3D shapeA = new Shape3D(geometry, appearance);
    shapeA.setCapability(Shape3D.ALLOW_GEOMETRY_READ);
    shapeA.setCapability(Shape3D.ALLOW_GEOMETRY_WRITE);
    shapeA.setCapability(Shape3D.ALLOW_APPEARANCE_READ);
    shapeA.setCapability(Shape3D.ALLOW_APPEARANCE_WRITE);
    Shape3D shapeB = new Shape3D(geometry, appearance);
    shapeB.setCapability(Shape3D.ALLOW_GEOMETRY_READ);
    shapeB.setCapability(Shape3D.ALLOW_GEOMETRY_WRITE);
    shapeB.setCapability(Shape3D.ALLOW_APPEARANCE_READ);
    shapeB.setCapability(Shape3D.ALLOW_APPEARANCE_WRITE);
    BranchGroup bg = new BranchGroup();
    bg.setCapability(ALLOW_CHILDREN_READ);
    bg.setCapability(ALLOW_CHILDREN_WRITE);
    bg.setCapability(ALLOW_CHILDREN_EXTEND);
    TransformGroup tg = new TransformGroup();
    tg.setCapability(TransformGroup.ALLOW_TRANSFORM_WRITE);
    tg.setCapability(TransformGroup.ALLOW_TRANSFORM_READ);
    tg.setCapability(TransformGroup.ALLOW_CHILDREN_READ);
    tg.setCapability(TransformGroup.ALLOW_CHILDREN_WRITE);
    bg.addChild(tg);
    tg.addChild(shapeA);
    tg.addChild(shapeB);
    // The method that removes the shapeB and adds a new shapeC �
    Shape3D shapeC = new Shape3D(geometry, appearance);
    shapeC.setCapability(Shape3D.ALLOW_GEOMETRY_READ);
    shapeC.setCapability(Shape3D.ALLOW_GEOMETRY_WRITE);
    shapeC.setCapability(Shape3D.ALLOW_APPEARANCE_READ);
    shapeC.setCapability(Shape3D.ALLOW_APPEARANCE_WRITE);
    tg.removeChild(shapeB);
    tg.addChild(shapeC);Thanks a lot.
    aads

    �Exception in thread "AWT-EventQueue-0"
    javax.media.j3d.RestrictedAccessException: Group:
    only a BranchGroup node may be removed I would think that this would give you your answer -
    Put a branch group between the transform and the shape. Then it can be removed.
    Another thing you could try: This doesn't actually remove the shape, but at least causes it to hide. If you set the capabilities, I think you can write the appearance of the shapes. So, when you want to remove one of them, write an invisible appearance to it.

  • How am I able to add and remove people from a group message?

    How am I able to add and remove people from a group message?

    You'd need to start a new thread.

  • How can i uninstall Windows 7 and remove the partition?

    how can i uninstall Windows 7 and remove the partition?  white unibody late 2009.  i cannot seem to find bootcamp either :/

    Open the Boot Camp Assistant in the /Applications/Utilities/ folder and use it to restore the drive to a single partition setup. If it's not there, use Pacifist to extract it from your install DVD and run the combo updater for your OS version.
    (79308)

  • I can't figure out how to erase/remove apps I don't want anymore.

    I can't figure out how to erase/remove apps I don't want anymore.

    RyneS086 wrote:
    the IPhone does not come with a user manual.
    it's in the default Safari bookmarks and via simple Google search..
    http://support.apple.com/manuals/

  • My hotmail account was hacked, so the mail that I use to sign in in itunes also, it's the same. But if I create a new account how can I transfer the money and the apps purchased to the new account ?

    My hotmail account was hacked, so the mail that I use to sign in in itunes also, it's the same. But if I create a new account how can I transfer the money and the apps purchased to the new account ?
    I really need help ! I had around 30 $ in my account !

    Don't create a new iTunes account.
    Just update everything with new info/change password/ security questions.
    -> https://appleid.apple.com/

  • HT1918 How do I change my billing info so that I don't need a bank account to d/l or update apps. I deleted my bank account and now I can't download or update anything?

    How do I change my billing info so that I don't need a checking account? I don't have a banking account and now I can't download or update any apps because I have no checking account.

    In general, Apple does not provide refunds but you can try to contact them here: http://www.apple.com/support/itunes/contact/

  • I just updated to creative cloud cc, I need to backup my creative suite set( all cs5) and remove from my mac- i need the operating space what do i do

    I just updated to creative cloud cc, I need to backup my creative suite set( all cs5) and remove from my mac- i need the operating space what do i do
    i don't want to just back up my plug ins. i want to back up the whole suite can i do this?
    tks in advance

    Be sure to retain your serial number.  If you don't have it check your Adobe account online for it in your products section - I recommend keeping a copy of it on hand wherever you call home.  The installation files are currently available thru...
    CS5 - http://helpx.adobe.com/creative-suite/kb/cs5-product-downloads.html

  • How can I share my music and some apps with my children's devices, but not share iMessage

    How can I share my music and some apps with my children's devices, but not share iMessage

    Then only set up your account in "Settings > iTunes & App Stores" and don't give them your password .

  • My safari and my app store don't open in yosemite. Can you help me?

    my safari and my app store don't open in yosemite. Can you help me?...

    You probably ran a defective third-party "utility" such as "CleanMyMac" or "MacCleanse" that purports to "clean up" "junk" files. What it really does is to corrupt the operating system and many applications.   
    The first thing you need to do is remove that software according to the developer's instructions. Never install it, or anything like it, again. Then see below. If you use any iWork applications, you may need to delete them and redownload them from the App Store.
    If you don't already have a current backup, back up all data, then reinstall the OS.* You don't need to erase the startup volume, and you won't need the backup unless something goes wrong. If the system was upgraded from an older version of OS X, you may need the Apple ID and password you used.
    If you use FileVault 2, then before running the Installer you must launch Disk Utility and select the icon of the FileVault startup volume ("Macintosh HD," unless you gave it a different name.) It will be nested below another icon with the same name. Click the Unlock button in the toolbar and enter your login password when prompted. Then quit Disk Utility to be returned to the main Recovery screen.
    There are ways to back up a computer that isn't fully functional. Ask if you need guidance.
    If you installed the Java runtime distributed by Apple and still need it, you'll have to reinstall it. The same goes for Xcode. All other data will be preserved.
    *The linked support article refers to OS X 10.10 ("Yosemite"), but the procedure is the same for OS X 10.7 ("Lion") and later.

  • How do I uninstall anything running in background that I don't need?

    I am having problems (iMac OSX 10.6.8) with my searches being intercepted.
    Could this be caused by applications running in the background?
    If so, how do I uninstall anything running in background that I don't need?

    But whatever I search on Google, within moments my email box is crammed with spam on a related topic.
    If that's true, then it would seem you have put your email addrress out on the Internet somewhere.
    At the same time, it's possible that you have inadvertently got some malware on your system and that it is what is intercepting your web searching and then sending you email on that or related topics. I'm not suggestng this is likely, only that it's a possibility, however small.
    Who is your Internet provider? Some of them actively intercept searches and foist ads on you, especially when you try to go to a web site that doesn't exist or one that isn't cached in their DNS servers.

  • I have iphoto 7.1.5.  How can I update iphoto without buying ilife, which i don't need?

    i have iphoto 7.1.5.  How can I update iphoto without buying ilife, which i don't need?

    I'm not sure where you are seeing the "negative reviews" but I like it and many, many people posting here do even though this is a forum for people with problems
    No one knows when the next upgrade will be bu tit will require a purchase
    I'm sure that there will be a few more updated for iPhoto '11 but probably not many - it has had a lot and is approaching the end of its life cycle I would think
    And be sure to have a good backup prior to upgrading (as always) - I suggest in addition to your normal backup routine that you make one more copy of the iPhoto library on your main hard drive if you have space - remember that you need a minimum of 10 GB of free space jus tto run your Mac
    And prior to launching iPhoto '11 the first time be sure to run software update and be sure it is up to the latest version
    LN

  • Can I downgrade from Adobe CC Complete to Adobe CC Photoshop and Lightroom? I don't need the other CC apps at the moment. Will there be a penalty?

    Can I downgrade from Adobe CC complete to Adobe CC Photoshop and Lightroom? I don't need the other CC apps at the moment. Will there be a penalty?

    Moving this discussion to the Adobe Creative Cloud forum.
    LarryLilac please contact our support team directly at Contact Customer Care if you wish to modify your annual plan.  If you are on a month to month plan then you can cancel your current membership at any time.  You can find more details at Cancel your membership or subscription | Creative Cloud.

  • {GUIDE} How to Root Xperia Smartphones [2011 and 2012 Xperias]

    This thread is for 2011 and 2012 Xperias, for 2013 and 2014 Xperias, check this thread 
    New Update: Upon request from users, i've created a facebook page where you can get updates on whatever happens here, new firmwares, android versions, new rooting methods etc. You can also ask questions, post suggestions. Here's the link http://www.facebook.com/GuideToFlashRootXperiaNabeel
    Hi all
    Previous rooting thread got deleted along with Spam threads by mistake, here's the new one.
    Screenshots of Old thread
    Rooting your mobile may void the warranty and you're doing it at your own risk. Sony would be in no way responsible for any damage.
    For flashing firmwares, see the Guide > {GUIDE} Install ICS ( Ice Cream Sandwich) on Xperia™ Smartphones, Root and Downgrade to Gingerbread
    This post is for 2011 Xperias models, for 2012 /2013 Xperia see post below.
    2011 Xperia
    How to root Ice Cream Sandwich (4.0.3, 4.0.4) (4.1.B.0.587 4.1.B.0.431 4.1.A.0.562)
    This is the new method to root, for old method, see 3rd post ( Archived method )
    Supported phones = Xperia Arc S , Arc and Ray , Neo V, Neo, Live with walkman, Mini, Mini Pro, Active, Neo L, Xperia Pro
         Go to settings > Security > Mark  "Unknown sources"
         Settings > Developer options > Mark USB debugging
         Settings > Xperia > connectivity > USB connection mode > select MSC mode
         PC Companion installed on your PC
    After marking the settings above, connect your phone to PC ( Skip PC Companion installation on your phone ) and wait for the adb drivers to be installed.
    Download this rooting toolkit. Link > 1 / 2 and run it. If after running toolkit any download begins, cancel it by clicking on the green button. Don't let the eroot download anything. It should now detect your phone and show an option to "root". Just click on it, wait till it finishes.
    Rooting done ( For confirmation see if any Super User app has been installed on your phone )
    If it somehow fails for the first time, give it another go. Restart everything, your PC, phones etc. If it doesn't work at all, see the other method to root i;e Archived method to root 2011 Xperias below the animated Xperia Picture.
    Finally Created threads on XDA > http://forum.xda-developers.com/search.php?do=finduser&u=4575567&starteronly=1
    Follow this guide and latest updates on Facebook http://www.facebook.com/GuideToFlashRootXperiaNabeel :smileywink:
    How to root 2.3 ( Gingerbread )
         Go to settings > Security > Mark  "Unknown sources"
         Settings > Developer options > Mark USB debugging
         Settings > Xperia > connectivity > USB connection mode > select MSC mode
    Rooting 4.0.2.A.0.42 and .58
    Download this Rooting toolkit Link > 1 / 2 on your PC . Extract it, connect your phone to PC ( It should be on ) and wait for 2 minutes. After that run the rooting toolkit and root your phone.
    Rooting 4.0.2.A.0.62
         Go to settings > Security > Mark  "Unknown sources"
         Settings > Developer options > Mark USB debugging
         Settings > Xperia > connectivity > USB connection mode > select MSC mode
         PC Companion installed on your PC
    After marking the settings above, connect your phone to PC ( Skip PC Companion installation on your phone ) and wait for the adb drivers to be installed.
    Download this rooting toolkit. Link >  1 / 2 and run it. If after running toolkit any download begins, cancel it by clicking on the green button. Don't let the eroot download anything. It should now detect your phone and show an option to "root". Just click on it, wait till it finishes.
    Rooting done ( For confirmation see if any Super User app has been installed on your phone )
    If the method of doesn't work for you, then flash a 0.42 firmware from here >
    {GUIDE} How to Install ICS ( Ice Cream Sandwich) on Xperia™ Smartphones, Root and Downgrade to Ginge...
    And then use the method to root 4.0.2.A.0.42
    After rooting, update your phone to 0.62 via mobile's update center app and not using PC Companion or SUS or flashtool.
    Note: Using PC Companion and "Update Service" to update your phone would result in loss of root.
    Discussion guidelines.
    Message me or any other moderator to seek help regarding moderation.
    Solved!
    Go to Solution.

    How to Remove Bloatwares / Junk apps / Waste apps / System apps / Unusefull apps /  etc Apps on Xperias
    1) Download Root Explorer from google play ( Or any similar app ) .
    2) When you'll open this app Superuser would ask for permissions. Allow it
    3) Now using that app go to SYSTEM/ APP / Copy all the apps and paste them somewhere on memory card ( incase if you need in future)
    4) Now again go to SYSTEM/ APP / . On the top right corner you'll see Mount R/W , tap on it ( Now you should see it as Mount R/O )
    4) Now to delete an app tap and hold on the app you want to delete and press delete
    After deleting the necessary apps, restart your phone. ( You can also select the mark options and delete all the NECESSARY apps in one go )
    Be carefull with the procedure above. If you remove any usefull app, you may run into trouble ( I won't help you )
    Here's the list of apps that you could remove safely/ without harming your phone . Remove the ones you don't use at all
    List for 2011 Xperias
    For Xperia Sola, Xperia U , Xperia P
    FAQ's
    Q Do i need to unlock the bootloader prior to rooting ?
    A No
    Q My bootloader is unlocked, can i still root my phone ?
    A This method works for both, locked and unlocked bootloader.
    Q My bootloader unlocking allowed status is No, can i still root my phone ?
    A Yes
    Q Will rooting erase all data on phone memory ?
    A Nopes. But if anything goes wrong, you may need to repair your phone using PC Companion which would erase all data. So better backup important stuff
    I'll keep on adding stuff, please feel free to help me
    Archived Method to Root 2011 Xperias
    Thread Created on Feb 1, 2013
    New Update: Upon request from users, i've created a facebook page where you can get updates on whatever happens here, new firmwares, new android versions, new rooting methods etc. You can also ask questions, post suggestions. Here's the link http://www.facebook.com/GuideToFlashRootXperiaNabeel
    This Guide looks big because every detail has been included. It's very easy to root your phone.
    Hi all
    My previous rooting thread got deleted somehow, here's the new one.
    Screenshots of Old thread
    Rooting your mobile may void the warranty and you are doing it at your own risk. Sony would be in no way responsible for any damage.
    For flashing firmwares, see the Guide Below
    {GUIDE} Install ICS ( Ice Cream Sandwich) on Xperia™ Smartphones, Root and Downgrade to Gingerbread
    This post is for rooting 2011 Xperias. For 2012 Xperia See reply number 1 below
    How to root 4.0.4 (4.1.B.0.587 & 4.1.B.0.431)
    We cannot root 4.1.B.0.587 directly, so to root it we first flash 4.1.A.0.562 kernel, run the rooting toolkit and in the end flash 4.1.B.0.587 kernel.
    Few devices don't have their own 4.1.A.0.562 kernel, so we need to flash the 4.1.A.0.562 kernel of other devices just to root. However all devices have 4.1.B.0.587 kernel.
    Follow all the steps.
    Go to settings > Security > Mark  "Unknown sources"
    Settings > Developer options > Mark USB debugging
    Settings > Xperia > connectivity > USB connection mode > select MSC mode
    Download Flashtool
    Windows Users > Flashtool
    Linux Users > Flashtool ( From previous release tab, download 0.9.0.0 version)
    After installing flashtool, reboot your PC.
    1 ) Download the respective 4.1.A.0.562 kernel to flash
         Arc and Arc S  - Kernel
         Ray                -  Kernel
         Neo/Neo V      -  Kernel
         LwW, Mini       - Kernel
         Active             -  Kernel
         Neo L             -  Kernel
         All other users -  Kernel or even try the kernels for Arc S and Ray
    2) Go to C:/ Drive > flashtool > firmwares > delete everything present and put the downloaded kernel
    3)  Run Flashtool > click on the flashing icon ( left side below "file" option)
    Select flashmode > ok
    Setup should be like this > select OK
    Flashtool Setup Screenshot
    Follow the steps, connect your mobile and flash. Note: on devices with touch navigation keys, hold volume down key instead of back button while connecting your device.
    Flashtool may show error after flashing kernel, no worries. Even your build number and android version won't change. Everything would remain same so please don't visit phone's settings to check anything
    4) After flashing restart your device, It may not start completely, may remain at Sony logo or with blank/black screen.
    Whatever the status is, just restart your device and proceed with the rooting >
    Download Rooitng toolkit > 1 / 2 / 3 / 4 and extract it.
    ( Make sure you close flashtool before running the rooting toolkit )
    Now  connect your mobile to PC ( Mobile should be ON)  and wait for 2 minutes. Then run the rooting toolkit. When it says all done, close it. disconnect your phone and switch it off ( By pressing power button/ or by taking out the battery and reinserting it).
    5) Download Kerenls, If you are on 4.1.b.0.431 rom then download the respective kernel, same goes for 4.1.B.0.587
    For Neo L > Download the kernel version on which your phone is running 4.1.B.0.626 or  4.1.B.0.631
    Xperia
    4.1.B.0.431
    4.1.B.0.587
    Arc S
    Kernel
    Kernel
    Arc
    Kernel
    Kernel
    Ray
    Kernel
    Kernel
    Neo
    Kernel
    Kernel
    Neo V
    Kernel
    Kernel
    Mini
    Kernel
    Kernel
    Pro
    Kernel
    Kernel
    Live with walkman
    Kernel
    Kernel
    Active
    Kernel
    Kernel
    Mini Pro
    Kernel
    Kernel
    Now flash the kernel ( same procedure as step 2 and 3 above )
    Your mobile should now b rooted (See if any Superuser app has been installed on your phone ) and working fine again.
    Please let me know how did it go for you by posting below, it will be great if you like the guide as well here > http://www.facebook.com/GuideToFlashRootXperiaNabeel
    How to root 2.3 ( Gingerbread )
    Firmware 4.0.2.A.0.62 and 4.0.2.A.0.69 are difficult to root on a locked boootloader. So to root it, you need to flash 4.0.2.A.0.42
    To flash 4.0.2.A.0.42 or any firmware, follow this guide
    {GUIDE} How to Install ICS ( Ice Cream Sandwich) on Xperia™ Smartphones, Root and Downgrade to Ginge...
    Rooting 4.0.2.A.0.42 and .58
    1) Go to settings > Security > Mark  "Unknown sources"
         Settings > Developer options > Mark USB debugging
         Settings > Xperia > connectivity > USB connection mode > select MSC mode
    2) Download this Rooting Toolkit on your PC . Extract it, connect your phone to PC ( It should be on ) and wait for 2 minutes. After that run the rooting toolkit and root your phone.
    3) After rooting upgrade to 4.0.2.A.0.62 using the mobile's "Update Center" app
    Note: Using PC Companion and "Update Service" to update your phone would result in loss of root.
    Discussion guidelines.
    Message me or any other moderator to seek help regarding moderation.

  • How to uninstall Sharepoint Foundation 2010 and remove its databases

    Hello, 
    My company has Sharepoint Foundation 2010 installed on a Windows Server 2008 R2. I want to remove this server from our network. I'd like to know what are the steps to unsintall Sharepoint Foundation 2010 and remove its databases. The databases are located
    on a remote machine with SQL Server 2008 R2. I'm wondering if the Sharepoint uninstall process will remove its databases from the remote server or do the databases need to be removed manually. If the databases need to be removed manually, I'd like to know
    how to find out the name of the configuration, content, administration, search and user profile application databases that Sharepoint is using. 
    I appreciate any help that anybody can provide. Thanks!!

    Uninstall SharePoint via Programs and Features from the SharePoint server. Once that is done, drop/delete the databases from the SQL Server. Uninstalling SharePoint does not remove databases.
    Before you uninstall SharePoint, you can run:
    Get-SPDatabase | Select Name,Server
    That will list all database names and their associated SQL Server/instance.
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

Maybe you are looking for

  • How to get the histoical data for newly added field in the cube?

    Hi Experts, I have small doubt on remodeling the infocube. After adding the characteristic or keyfigure  to a cube by using remodeling concept, how can I get the historical data for that particular field. I have searched in SDN also but I didn't get

  • Multiple vlans configuration issue with RV016 router and SG 300-10MP witch

    Hi, I have to configure multiple vlans served with a unique DCHP server . As first step, I just will The DHCP server to serve 2 vlans. The following is the hardware and configuration that I implemented : Router (RV016 10/100 16-Port VPN Router) as ga

  • XI, BI and bank analyzer...

    Our landscape consists of lot of systems, including XI, ECC, BI AND BANK ANALYZER question is should we use XI to connect BI with BA? or it will be better to connect them directly?

  • Screen black after mountain lion install

    After install, the screen connected to the original video card is black, other 2 screens connected to evga gtx 285 are ok. do i need a new video card?

  • T400 & X201 wireless problem

    Hello, I have 2 Lenovo Laptops (a T400 and a X201, both with Vista) that can't get internet connection over wireless. I recently installed internet on my new flat. The router I'm using is a Netgear DGl1000. I have another computer that can connect