Jump to content

CGameDev

Member
  • Posts

    458
  • Joined

  • Last visited

Everything posted by CGameDev

  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
  11. I am searching for memory options for my Synology DS1621+ NAS. Can anyone provide me with some options of what memory modules I can use?
  12. The NAS doesn't support transcoding so I cant move the server to the NAS.
  13. I would like to hear inputs and solution from the following please, that does not require me getting any additional hardware. I want to use the DS1621+ with SHR-2 that i got as a gift just to store the files i need for my Plex Server. I have a mini-ITX pc running i5 6500 with a P2000 with plex server on it. The files are accessed via map drive from the DS1621+ via 10GB LAN. Is this setup ok? Originally it was just the mini-itx with 4 drives with the P2000, not in raid or redundancy.
  14. Hello guys, I was wondering if anyone can point me in the right direction? I have a Linux/Ubuntu pc on my network. Is there a way to reboot or restart then from my surface pro using power shell?
  15. This is the case even if i do a fresh install of Windows with new the new driver, it max out at a lower res with an exclamation sign beside the gpu in device manager. if i DDU wipe and put the 385.69 on everything works flawlessly I just cant play new titles that requires newer driver because new drivers just dont work
  16. I have a Maxwell EVGA Titan X GPU and whenever I upgrade pass 385.69 my resolution max out at 1280 x 1024. Other than that my max resolution is 3840 x 2160. For new game titles like Doom Eternal i need current drivers. Any thoughts? This have been my issue over a year now.
  17. Hey guys I just need your feedback and thoughts about the GPU market and where its heading. Every so often a new set of GPUs launches at times more that few times per year. I notice that they have all these features and fancy marketing. Is it really worth it? or its just to target enthuse computer builders who love to benchmark? I recently build a mini itx Ryzen 3600 gaming pc with 32GB ram 3600 speed and for the GPU my old EVGA SC Titan X Maxwell architecture. I still get crazy FPS when i set games like RE2 Remake to max or any current games. I am not saying someone should go out and buy an old card cause i do see Titan x going for $400, may be better to buy a current gen. My point is I think all these GPUs that keep getting pushed out with fancy names and features are just marketing and for a topical gamer I don't think its mandatory to always upgrade once every 2 or 3 years if you have a good card. I welcome your feedback whether its supporting my point or against it!
  18. System up and running and plays games real good, i even tired on my 4k and no frame drop.
×