日韩无码专区无码一级三级片|91人人爱网站中日韩无码电影|厨房大战丰满熟妇|AV高清无码在线免费观看|另类AV日韩少妇熟女|中文日本大黄一级黄色片|色情在线视频免费|亚洲成人特黄a片|黄片wwwav色图欧美|欧亚乱色一区二区三区

RELATEED CONSULTING
相關咨詢
選擇下列產(chǎn)品馬上在線溝通
服務時間:8:30-17:00
你可能遇到了下面的問題
關閉右側工具欄

新聞中心

這里有您想知道的互聯(lián)網(wǎng)營銷解決方案
解決VB.NET注冊表權限經(jīng)驗總結

大家都知道權限的概念吧,在一個后臺你可能有的權限僅僅就一個,在這里我們來講講關于VB.NET注冊表權限的例子。

本實例需要項目引用:

 
 
 
  1. Imports Microsoft.Win32  '用途 : 注冊表操作  
  2. Imports System.Security.AccessControl'用途 : 訪問權限控制  

首先,對VB.NET注冊表權限增加,細分起來共有11種可選的權限類型,它們對應的參數(shù)如下:

 
 
 
  1. Select Case ComboBox1.Text  
  2. Case "完全控制"  
  3. ObjRegRight = RegistryRights.FullControl  
  4. Case "查詢數(shù)值"  
  5. ObjRegRight = RegistryRights.QueryValues  
  6. Case "設置數(shù)值"  
  7. ObjRegRight = RegistryRights.SetValue  
  8. Case "創(chuàng)建子項"  
  9. ObjRegRight = RegistryRights.CreateSubKey  
  10. Case "枚舉子項"  
  11. ObjRegRight = RegistryRights.EnumerateSubKeys  
  12. Case "通知"  
  13. ObjRegRight = RegistryRights.Notify  
  14. Case "創(chuàng)建鏈接"  
  15. ObjRegRight = RegistryRights.CreateLink  
  16. Case "刪除"  
  17. ObjRegRight = RegistryRights.Delete   
  18. Case "寫入DAC"  
  19. ObjRegRight = RegistryRights.WriteKey  
  20. Case "寫入所有者"  
  21. ObjRegRight = RegistryRights.TakeOwnership  
  22. Case "讀取控制"  
  23. ObjRegRight = RegistryRights.ReadPermissions  
  24. End Select 

而每個細分權限 又分"允許"和"拒絕"兩種訪問控制類型

 
 
 
  1. Select Case ComboBox2.Text  
  2. Case "允許"  
  3. ObjRegAccess = AccessControlType.Allow  
  4. Case "拒絕"  
  5. ObjRegAccess = AccessControlType.Deny  
  6. End Select 

以下為增加VB.NET注冊表權限的函數(shù)

以下兩函數(shù)中 Account代表系統(tǒng)nt帳戶  Rights和ControlType分別為上文提及的權限類型和訪問控制類型

 
 
 
  1. Private Sub AddRegistrySecurity(ByVal Str_FileName As String, ByVal Account As String, ByVal Rights As RegistryRights, ByVal ControlType As AccessControlType)  
  2. Dim RegKey As RegistryRegistryKey = Registry.CurrentUser.CreateSubKey("此處填寫具體鍵地址")  
  3. Dim RegkeyAcl As RegistrySecurity = RegKey.GetAccessControl()  
  4. Dim AccessRule As RegistryAccessRule = New RegistryAccessRule(Account, Rights, ControlType)  
  5. RegkeyAcl.AddAccessRule(AccessRule)  
  6. RegKey.SetAccessControl(RegkeyAcl)  
  7. RegKey.Close()  
  8. End Sub 

以下為移除注冊表鍵權限的函數(shù)

 
 
 
  1. Private Sub RemoveRegistrySecurity(ByVal Str_FileName As String, ByVal Account As String, ByVal Rights As RegistryRights, ByVal ControlType As AccessControlType)  
  2. Dim RegKey As RegistryRegistryKey = Registry.CurrentUser.CreateSubKey("此處填寫具體鍵地址")  
  3. Dim RegkeyAcl As RegistrySecurity = RegKey.GetAccessControl()  
  4. Dim AccessRule As RegistryAccessRule = New RegistryAccessRule(Account, Rights, ControlType)  
  5. RegkeyAcl.RemoveAccessRule(AccessRule)  
  6. RegKey.SetAccessControl(RegkeyAcl)  
  7. RegKey.Close()  
  8. End Sub  

分享名稱:解決VB.NET注冊表權限經(jīng)驗總結
URL鏈接:http://www.5511xx.com/article/cdossdp.html