Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
M

miahrugger

@miahrugger
About
Posts
5
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • First Sci-Fi...
    M miahrugger

    Jesse Evans wrote: Referring to this[^], what was the first SciFi book you read? If I can remember correctly, it was Rendezvous with Rama by Arthur C Clarke.....great book....and series.... Cheers, Miah

    The Lounge swift html com question learning

  • Worst films ever
    M miahrugger

    It had a very surprise ending....I mean, who knew that the ship was actually going to sink...;P Miahrugger

    The Lounge csharp com game-dev question

  • Add a Computer Domain
    M miahrugger

    Try something like the following:

    string domain = ...;
    string newComputer = ...;
    string groupName = ...;

    // Connect to AD and get the computer container object
    DirectoryEntry deDomain = new DirectoryEntry("WinNT://" + domain);
    DirectoryEntry deNewComputer = new DirectoryEntry("WinNT://" + domain + "/" + newComputer + ", computer");

    // Connect to the group container and add the computer object
    DirectoryEntry deGrp = deDomain.Children.Find(groupName, "Group");
    if (deGrp.Name != null)
    deGrp.Invoke("Add", new Object[]{deNewComputer.Path.ToString()});
    deGrp.CommitChanges();

    C# csharp help tutorial

  • reading remote machine registry
    M miahrugger

    You can read from a remote registry using the following static method: Microsoft.Win32.RegistryKey.OpenRemoteBaseKey(...) However, according to the MSDN documentation, the following must be ensured: In order for a key to be opened remotely, both machines (the service, and client) must be running the remote registry service, and have remote administration enabled. Cheers, Miahrugger

    C# csharp windows-admin

  • Which is your favorite programming language? And which is your least favorite?
    M miahrugger

    Favorites: Perl, C++, C# (I actually like this as an interpreted language :) ) Dislikes: FORTRAN (College class, and I hated every minute of it), Java (easy to program, but to dang slow!!) Cheers, Miahrugger

    The Lounge csharp c++ question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups