
Active Directory मशीन खातों को कस्टम पासवर्ड के साथ बनाता है, जो वैकल्पिक OU प्लेसमेंट, स्पष्ट क्रेडेंशियल और UAC फ़्लैग कॉन्फ़िगरेशन का समर्थन करता है।
NewMachineAccount.exe एक सरल स्टैंडअलोन exe टूल है, जो किसी निर्दिष्ट डोमेन में कस्टम पासवर्ड के साथ नए मशीन अकाउंट बनाने के लिए उपयोग किया जाता है।
NewMachineAccount.exe v1.0 by @decoder_it
-dc <DomainController>
-name <MachineAccount>
-domain <Domain>
-password <MachinePassword>
[-ou <OU>]
[-user <Username>]
[-pass <Password>]
[-uac <UAC Flags>]
-dc <DomainController>: उपयोग किए जाने वाले डोमेन कंट्रोलर को निर्दिष्ट करता है।-name <MachineAccount>: बनाए जाने वाले मशीन अकाउंट का नाम।-domain <Domain>: वह डोमेन जिसमें मशीन अकाउंट बनाया जाएगा।-password <MachinePassword>: नए मशीन अकाउंट के लिए पासवर्ड।[-ou <OU>] (वैकल्पिक): Organizational Unit (OU) जहाँ अकाउंट रखा जाना चाहिए।[-user <Username>] (वैकल्पिक): प्रमाणीकरण के लिए उपयोगकर्ता नाम।[-pass <Password>] (वैकल्पिक): प्रमाणीकरण के लिए पासवर्ड।[-uac <UAC Flags>] (वैकल्पिक): User Account Control (UAC) फ्लैग्स।NewMachineAccount.exe -dc DC01 -name NewMachine -domain example.com -password StrongPass123!
NewMachineAccount.exe -dc DC02 -name TestMachine -domain test.com -password Passw0rd! -ou "OU=Computers,DC=test,DC=com" -user admin -pass AdminPass
-user और -pass विकल्पों का उपयोग करें।-uac फ्लैग विशिष्ट UAC कॉन्फ़िगरेशन सेट करने की अनुमति देता है।@decoder_it