silverlight 5 signing xap file

后端 未结 1 1306
小鲜肉
小鲜肉 2021-01-03 15:28

I\'m facing trouble with signing my Silverlight file (.xap) in a website. We\'re deploying this website in an intranet and, since we\'re accessing the usb port on the client

1条回答
  •  心在旅途
    2021-01-03 15:53

    Go to your Certificates and find the tab Trusted Publishers, your certificate should be there

    Every client should have the certificate there.

    Once you checked this and can confirm that everyone has this certificate, you should run this registry (64bit):

    Windows Registry Editor Version 5.00
    
    [HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Silverlight]
    "AllowElevatedTrustAppsInBrowser"=dword:00000001
    
    [HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Silverlight\Components]
    
    [HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Silverlight\Components\Debugging]
    

    (32bit)

    Windows Registry Editor Version 5.00
    
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Silverlight]
    "AllowElevatedTrustAppsInBrowser"=dword:00000001
    
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Silverlight\Components]
    
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Silverlight\Components\Debugging]
    

    Just save this into a .txt file and rename it to .reg and run it. This should fix your problem.

    0 讨论(0)
提交回复
热议问题