windows: disable registering of protocol handler for now as it requires admin rights

This commit is contained in:
Hylke Bons 2012-03-08 23:35:47 +00:00
parent aba1c4a24b
commit 128c72a2f2

View file

@ -125,6 +125,8 @@ namespace SparkleShare {
public override void InstallProtocolHandler() public override void InstallProtocolHandler()
{ {
/* FIXME: Need to find a way to do this without administrator privilidges (or move to the installer)
// Get assembly location // Get assembly location
string location = System.Reflection.Assembly.GetExecutingAssembly ().Location; string location = System.Reflection.Assembly.GetExecutingAssembly ().Location;
string folder = Path.GetDirectoryName (location); string folder = Path.GetDirectoryName (location);
@ -141,6 +143,7 @@ namespace SparkleShare {
string action_key = "HKEY_CLASSES_ROOT\\sparkleshare\\shell\\open\\command"; string action_key = "HKEY_CLASSES_ROOT\\sparkleshare\\shell\\open\\command";
Registry.SetValue (action_key, "", "\"" + invite_exe + "\" \"%1\""); Registry.SetValue (action_key, "", "\"" + invite_exe + "\" \"%1\"");
*/
} }