How to get icloud to open in chrome instead of IE on windows 8

Hi,
     i have windows 8 and in my apps i have - icloud, contacts and calender which clicking on them opens icloud on internet explorer is there a way to get them to open up on google chrome instead
Thanks intelligent community =D
Chrisdion Altoft

Hi,
This is server side code , you should write in your C# code behind method for Click event of Link Button .
- Use 1st part code in your button event handler method. (Replace <username> with current user name), best way is to find the crome.exe location at your dev machine , and paste the path here -
process.StartInfo.FileName = @""; , default location is in user's appdata folder. Test the code.
- If the above code works , and if your crome.exe is in user's appdata folder , then you will need to find dynamic location of AppData folder for every user. That means the path should not be hard coded. The 2nd part of the code is an hint for how you can
find the appdata path in C#. Something like this
//var cromePath = @"C:\Users\<UserName>\AppData\Local\Google\Chrome\chrome.exe";
var cromePath = Path.Combine(Environment.GetFolderPath(
Environment.SpecialFolder.ApplicationData), "\Local\Google\Chrome\chrome.exe");
using (var process = new Process())
process.StartInfo.FileName = cromePath;
process.StartInfo.Arguments = "your url";
process.Start();
So the step will be
- First try a direct call to crome,
var cromePath = @"crome.exe";
- if it not works , then try with hardcoded path of crome.exe from your dev machine for current user -
var cromePath = @"C:\Users\<currentUserName>\AppData\Local\Google\Chrome\chrome.exe";
- And if this work , then try it with dynamic path for any user, find appdata folder location through code 
var cromePath = Path.Combine(Environment.GetFolderPath(
Environment.SpecialFolder.ApplicationData), "\Local\Google\Chrome\chrome.exe");
Hope this will help, if you are a C# developer then you can easily understand  the concept.
Thanks
Ganesh Jat [My Blog |
LinkedIn | Twitter ]
Please click 'Mark As Answer' if a post solves your problem or 'Vote As Helpful' if it was useful.

Similar Messages

Maybe you are looking for

  • Unable to upload the updated/modified Report template (rtf file) in siebel

    Hi, I am unable to upload the updated/modified Report template (rtf file) if already exists in the local database. Initially I have uploaded a rtf template, generated xliff, registered it and can view the report from the registered view. Later I have

  • Adobe Photo Downloader not auto running in W7 64bit

    Hi I'm having a problem on machine using Windows 7 64bit & Photoshop 9 Elements First time I connect any device it asks what I want to do, I click Organise & edit in photoshop & tick use everytime. Click OK but photoshop doesn't launch. Next time I c

  • C:\windows\system32\deploytk.dll

    Greetings all. Is this file only found within https://jdk6.dev.java.net/6uNea.html Thank you. -Dennis Edited by: AlfredTheGrey on Nov 2, 2007 12:04 PM

  • Web pages without file extensions

    Hi All I have Mac OS X Server 10.5 running on a mac mini, i have set up my own single web page through server admin and i am able to access it perfectly by typing in safari http://intranet. but the question i have is whenever i click on any link's on

  • Rescheduling of Production Orders using COHV

    Hi, My Client Requirement is:- There are more production orders . I have to reschedule that production order one after the other. When I change 1st production order by 2 days in future then all the production orders are reschedule after 1st productio