Jump to content

CGameDev

Member
  • Posts

    458
  • Joined

  • Last visited

Awards

This user doesn't have any awards

Contact Methods

Profile Information

  • Gender
    Male
  • Location
    Kitchener, Canada
  • Interests
    Computer gaming and game development using Unity
  • Occupation
    Software Engineering Game Developer

System

  • CPU
    i7 6700K
  • Motherboard
    Asus Maximus VIII Formula
  • RAM
    32 GB 2400MHZ
  • GPU
    EVGA NVIDIA Titan X SC
  • Case
    Corsair 540
  • Storage
    256 M.2, 4x1TB in Raid10, 500Gb SSHD
  • PSU
    850Watt 80Gold
  • Display(s)
    Acer 27" 1440p @ 144Hz
  • Cooling
    Custom water loop
  • Keyboard
    Thermaltake Ttesport
  • Mouse
    Thermaltake Ttesport
  • Sound
    Samsung 5.1 DTS system
  • Operating System
    Windows 10 Enterprise 64 Bit

Recent Profile Visitors

2,482 profile views
  1. I coded an application to create Active Directory Users and wanted to add a section that adds their Exchange mailbox. I keep getting the following error. I have tried doing some search on how to resolve it, none of the solution work so far. Is there an alternate way to add a mailbox or is there a known solution to this issue, Please! I am using the following code public Boolean CreateUserMailbox(string FirstName, string LastName, string Alias, string PassWord, string DomainName, string OrganizationalUnit) { string Name = FirstName + " " + LastName; string PrincipalName = Alias + "@" + DomainName; Boolean success = false; RunspaceConfiguration rsConfig = RunspaceConfiguration.Create(); SecureString spassword = new SecureString(); spassword.Clear(); foreach (char c in PassWord) { spassword.AppendChar(c); } PSSnapInException snapInException = null; PSSnapInInfo info = rsConfig.AddPSSnapIn("Microsoft.Exchange.Management.PowerShell.E2010", out snapInException); Runspace myRunSpace = RunspaceFactory.CreateRunspace(); myRunSpace.Open(); Pipeline pipeLine = myRunSpace.CreatePipeline(); Command myCommand = new Command("New-MailBox"); myCommand.Parameters.Add("Name", Name); myCommand.Parameters.Add("Alias", Alias); myCommand.Parameters.Add("UserPrincipalName", PrincipalName); myCommand.Parameters.Add("Confirm", false); myCommand.Parameters.Add("SamAccountName", Alias); myCommand.Parameters.Add("FirstName", FirstName); myCommand.Parameters.Add("LastName", LastName); myCommand.Parameters.Add("Password", spassword); myCommand.Parameters.Add("ResetPasswordOnNextLogon", false); myCommand.Parameters.Add("OrganizationalUnit", OrganizationalUnit); pipeLine.Commands.Add(myCommand); pipeLine.Commands.Add(myCommand); try { pipeLine.Invoke(); } catch (Exception ex) { MessageBox.Show(ex.Message); } finally { myRunSpace.Dispose(); success = true; } return success; }
  2. Well, I need the bandwidth for when an updating my Plex TV-Shows and Movies and more while others are streaming from Plex. I constantly ran into issues managing files on the NAS whiles its doing something else.
  3. Hello Guys, so i setup Link Aggregation on my Synology NAS and I got that error message under network status, can anyone tell my why, or did i configure something incorrectly? BEFORE AFTER
  4. Hello Guys, I recently acquired a NVIDIA Shield P2571 that have a micro sd card slot. I have seen reviews where it is compatible with the Samsung Class 10 512GB cards. I am inquiring if the "SanDisk 1TB Ultra microSDXC UHS-I Memory Card with Adapter - 120MB/s, C10, U1, Full HD, A1, Micro SD Card - SDSQUA4-1T00-GN6MA" from the Scandisk store or Newegg website will work in the Shield as well?
  5. That I do not know if NordVPN allows client-to-client. Is it trivial to setup your own?
  6. yes, all the traffic are set to go through the VPN service that i setup. I am routing that port through the VPN.
  7. I am running DD-WRT, an i am using NordVpn in the openVPN option. The VPN is up and running put for some reason the port forwarding is not working for my Plex Server for remote access. Have anyone experience this issue or have any idea of a work around?
  8. I have the new Ryzen CPU synology NAS and i cant get the PLEX app to work on it from the store. It keep saying unable to start app. Does anyone that have these new versions , Series 21 of synology NAS know what version of plex runs on it?
  9. I have a drive failed in my Synology, when i try to install a replacement drive its only giving me the hot swat option. The add drive option is greyed out, any reason why that is?
  10. OK cause i was confused and thought it had to be Synology RAM. Cause the prices are ridiculous VS
×