Search results for query: *

  1. A

    Question [VS 2010] Creating Registry View

    Sadly yes. But I will recode the recursion. Can you give me a sample of code of what you said if it is okay? Or if you can help me to recode this one.
  2. A

    Question [VS 2010] Creating Registry View

    Hello, All. Can someone help me to speed up the loading of application. I'm creating a program like a Registry Editor but for viewing purposes only. The program loads too slow because of my Try-catch for the security issues. Here's the code. Imports Microsoft.Win32 Imports System.Security...
  3. A

    Populate treeview with registry

    How about if the registry is user input? Hello, All. I find this very very useful. But I'm doing modification of this codes but I can't get my wanted output. What if there are user inputs of registries they wanted to show not all under HKLM/HKCU/HKCR/HKCC etc. Example: HKLM\Software\Adobe...
  4. A

    Question Registry Permission

    Just a follow. I hope you can reply guys. user input HKLM\Software\TestKey System - Full Control - This key and subkeys Adminstrator -Full Control - This key and subkeys User - Special - This key Power Users - Special - This key Here's what I started but seems it did not worked Const...
  5. A

    Question Registry Permission

    Hello, Everyone. Could you help me on this. I can't start to program on getting the registry security permission of a given registry path. I attached the screenshot of what I wanted to get on a certain registry hive. Permission entries in the box to be exact. I hope you could give me some...
  6. A

    Question How to determine permission/s given to a file, folder, and registries?

    Hello, JohnH. Hmmm... seems its hard for me to understand. I attached a notepad containing some of the codes. I can get the InheritanceFlags and PropagationFlags properties but I dont know how to use or code it on my program. Kindly help me on this. Just teach mo where should I put the codes...
  7. A

    Question How to determine permission/s given to a file, folder, and registries?

    Hello, JohnH. I'm in the mid of creating a program that will get the security permissions of a certain folder/s but some properties of the security permissions of a certain folder I can't query or get the values. I'm using VB.NET 2010. I tried GetAccessControl method but no luck. This what I...
  8. A

    Question Help me to simulate: Checking security permissions set in a File and Folder

    Hi, Everyone! I have this code that will get the group permissions of a file and folders. Now my problem is that groups queried in the system are redundant. Here's output of the code. BUILTIN\Users - Modify, Synchronize NT SERVICE\TrustedInstaller - FullControl NT SERVICE\TrustedInstaller -...
  9. A

    TreeView for Specified Folder and its contained files

    Hi, everyone. I would like to ask how can I code a TreeView if a user specify the Path of directory. Ex. User input a two directories C:\Folder1\Folder2\ C:\Program Files\Folder1\Folder2\ The output will be C:\Folder1\Folder2\+Folder3 File1 File2 File3 +Folder4 File4 File5 File6 +Folder5...
  10. A

    Question How to determine permission/s given to a file, folder, and registries?

    I cannot write the rigth code for this. I'm just new to VB.Net.
  11. A

    Question How to determine permission/s given to a file, folder, and registries?

    Hi, John. Yes, I already research the RegistryKey Class. But I can't still query the permissions for the registries. :( Regards, Jeff
  12. A

    Question How to determine permission/s given to a file, folder, and registries?

    Query the Registry Permissions set into a Key Hello, Everyone! I'm new in VB.Net Programming. I have this code for File/Folders to get the query all permissions given in a File and Folder. ImportsSystem.Security.AccessControl Dim File As New IO.FileInfo("C:\example_file.txt") For Each...
  13. A

    Question How to determine permission/s given to a file, folder, and registries?

    I need to create a program that will determine permission/s given to a files, folders, and registries. Example: If the user will input the ff: Folder: C:\Program Files\Adobe File: C:\Program Files\Adobe\ReadMe.htm Registry: HKLM\SOFTWARE\Microsoft\Adobe The output will be for the 4 groups...
Back
Top