Skip to main content

AccessTr.neT


uzak bilgisayarda registryde kayıt değiştirmek

uzak bilgisayarda registryde kayıt değiştirmek

#1
Kod:
reg add \\pc1\hklm\system\currentcontrolset\services\usbstor /v start /t reg_dword /d 4 /f
@benbendedeilem
Cevapla
#2
Kod:
Dim RK As RegistryKey
   RK = RegistryKey.OpenRemoteBaseKey(RegistryHive.LocalMachine, "BilgisayarAdi")

   Dim mKey As RegistryKey
   mKey = RK.OpenSubKey("SYSTEM\CurrentControlSet\Services")
   mKey.SetValue("UPS", 3)


Kod:
Public Shared Function OpenRemoteBaseKey ( _
    hKey As RegistryHive, _
    machineName As String _
) As RegistryKey


Kod:
Imports Microsoft.VisualBasic
Imports System
Imports System.IO
Imports System.Security.Permissions
Imports Microsoft.Win32


Public Class RemoteKey

    Shared Sub Main(commandLineArgs As String())

        Dim environmentKey As RegistryKey

        ' Check that an argument was specified when the
        ' program was invoked.
        If commandLineArgs.Length = 0 Then
            Console.WriteLine("Error: The name of the remote " & _
                "computer must be specified as input on the " & _
                "command line.")
            Return
        End If

        Try
            ' Open HKEY_CURRENT_USER\Environment on a remote computer.
            environmentKey = RegistryKey.OpenRemoteBaseKey( _
                RegistryHive.CurrentUser, _
                commandLineArgs(0)).OpenSubKey("Environment")
        Catch ex As IOException
            Console.WriteLine("{0}: {1}", _
                ex.GetType().Name, ex.Message)
            Return
        End Try

        ' Print the values.
        Console.WriteLine("\nThere are {0} values For {1}.", _
            environmentKey.ValueCount.ToString(), environmentKey.Name)

        For Each valueName As String In environmentKey.GetValueNames()
            Console.WriteLine("{0,-20}: {1}", valueName, _
                environmentKey.GetValue(valueName).ToString())
        Next

        ' Close the registry key.
        environmentKey.Close()

    End Sub
End Class

@benbendedeilem
Son Düzenleme: 08/05/2012, 19:51, Düzenleyen: accessman.
Cevapla
#3
Ben bunun olabileceğini düşünmüyorum. Uzak pc deki reg kaydını değiştirebiliyorsak nerde kaldı güvenlik ?
Cevapla

Bir hesap oluşturun veya yorum yapmak için giriş yapın

Yorum yapmak için üye olmanız gerekiyor

ya da