Questions tagged [windowsdomainaccount]

A Windows domain account is an account in a Windows domain, which includes accounts of users, computers, printers and other security principals registered with a central database (called Active Directory Service) located on domain controllers.

From the Microsoft Developer Network.

A Windows domain account is an account in a Windows domain, which includes accounts of users, computers, printers and other security principals registered with a central database (called Active Directory Service) located on domain controllers.

48 questions
0
votes
2 answers

Problems running vb.net program on superuser-type user

I have written a program in vb.net for in house use that connects to a Progress OpenEdge database. Now I'm having a really weird runtime problem. I have a .exe file that runs on my local C: drive, the C: drive of the servers, from a certain network…
PsychoData
  • 1,198
  • 16
  • 32
0
votes
1 answer

Can several domain users svn update a network folder on a Windows Domain

We have a network folder on the Windows domain in which we would like to keep the release source codes. We would like to be able to build the code on the machine of a random developer of our team. So I created a network folder and checked out the…
Liezzzje
  • 430
  • 2
  • 6
  • 17
-1
votes
1 answer

How to use python to check if a computer is in a domain or is in workgroup

I want to check if a computer is in a domain or in a workgroup using python for example: def run_check(): # code here result = run_check() if result == "Domain": print("Domain") elif result == "Workgroup": print("Workgroup") else: …
1 2 3
4